Blame view

fs/dlm/memory.c 2.29 KB
e7fd41792   David Teigland   [DLM] The core of...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /******************************************************************************
  *******************************************************************************
  **
  **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
  **  Copyright (C) 2004-2005 Red Hat, Inc.  All rights reserved.
  **
  **  This copyrighted material is made available to anyone wishing to use,
  **  modify, copy, or redistribute it subject to the terms and conditions
  **  of the GNU General Public License v.2.
  **
  *******************************************************************************
  ******************************************************************************/
  
  #include "dlm_internal.h"
  #include "config.h"
  #include "memory.h"
e18b890bb   Christoph Lameter   [PATCH] slab: rem...
17
  static struct kmem_cache *lkb_cache;
e7fd41792   David Teigland   [DLM] The core of...
18
19
20
21
22
23
24
  
  
  int dlm_memory_init(void)
  {
  	int ret = 0;
  
  	lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
20c2df83d   Paul Mundt   mm: Remove slab d...
25
  				__alignof__(struct dlm_lkb), 0, NULL);
e7fd41792   David Teigland   [DLM] The core of...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  	if (!lkb_cache)
  		ret = -ENOMEM;
  	return ret;
  }
  
  void dlm_memory_exit(void)
  {
  	if (lkb_cache)
  		kmem_cache_destroy(lkb_cache);
  }
  
  char *allocate_lvb(struct dlm_ls *ls)
  {
  	char *p;
dd00cc486   Yoann Padioleau   some kmalloc/mems...
40
  	p = kzalloc(ls->ls_lvblen, GFP_KERNEL);
e7fd41792   David Teigland   [DLM] The core of...
41
42
43
44
45
46
47
  	return p;
  }
  
  void free_lvb(char *p)
  {
  	kfree(p);
  }
e7fd41792   David Teigland   [DLM] The core of...
48
49
50
51
52
53
54
55
  /* FIXME: have some minimal space built-in to rsb for the name and
     kmalloc a separate name if needed, like dentries are done */
  
  struct dlm_rsb *allocate_rsb(struct dlm_ls *ls, int namelen)
  {
  	struct dlm_rsb *r;
  
  	DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,);
dd00cc486   Yoann Padioleau   some kmalloc/mems...
56
  	r = kzalloc(sizeof(*r) + namelen, GFP_KERNEL);
e7fd41792   David Teigland   [DLM] The core of...
57
58
59
60
61
62
63
64
65
66
67
68
69
  	return r;
  }
  
  void free_rsb(struct dlm_rsb *r)
  {
  	if (r->res_lvbptr)
  		free_lvb(r->res_lvbptr);
  	kfree(r);
  }
  
  struct dlm_lkb *allocate_lkb(struct dlm_ls *ls)
  {
  	struct dlm_lkb *lkb;
c37622296   Robert P. J. Day   [PATCH] Transform...
70
  	lkb = kmem_cache_zalloc(lkb_cache, GFP_KERNEL);
e7fd41792   David Teigland   [DLM] The core of...
71
72
73
74
75
  	return lkb;
  }
  
  void free_lkb(struct dlm_lkb *lkb)
  {
597d0cae0   David Teigland   [DLM] dlm: user l...
76
77
78
79
80
81
82
83
84
  	if (lkb->lkb_flags & DLM_IFL_USER) {
  		struct dlm_user_args *ua;
  		ua = (struct dlm_user_args *)lkb->lkb_astparam;
  		if (ua) {
  			if (ua->lksb.sb_lvbptr)
  				kfree(ua->lksb.sb_lvbptr);
  			kfree(ua);
  		}
  	}
e7fd41792   David Teigland   [DLM] The core of...
85
86
87
88
89
90
  	kmem_cache_free(lkb_cache, lkb);
  }
  
  struct dlm_direntry *allocate_direntry(struct dlm_ls *ls, int namelen)
  {
  	struct dlm_direntry *de;
5ff519112   David Teigland   [DLM] print bad l...
91
92
93
  	DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,
  		   printk("namelen = %d
  ", namelen););
e7fd41792   David Teigland   [DLM] The core of...
94

dd00cc486   Yoann Padioleau   some kmalloc/mems...
95
  	de = kzalloc(sizeof(*de) + namelen, GFP_KERNEL);
e7fd41792   David Teigland   [DLM] The core of...
96
97
98
99
100
101
102
  	return de;
  }
  
  void free_direntry(struct dlm_direntry *de)
  {
  	kfree(de);
  }