blob: f858fef6e41cf32167b3b5d6634458fc62e8d1e7 [file] [log] [blame]
David Teiglande7fd4172006-01-18 09:30:29 +00001/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
5** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
6**
7** This copyrighted material is made available to anyone wishing to use,
8** modify, copy, or redistribute it subject to the terms and conditions
9** of the GNU General Public License v.2.
10**
11*******************************************************************************
12******************************************************************************/
13
14#include "dlm_internal.h"
15#include "config.h"
16#include "memory.h"
17
Christoph Lametere18b8902006-12-06 20:33:20 -080018static struct kmem_cache *lkb_cache;
David Teiglande7fd4172006-01-18 09:30:29 +000019
20
21int dlm_memory_init(void)
22{
23 int ret = 0;
24
25 lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
26 __alignof__(struct dlm_lkb), 0, NULL, NULL);
27 if (!lkb_cache)
28 ret = -ENOMEM;
29 return ret;
30}
31
32void dlm_memory_exit(void)
33{
34 if (lkb_cache)
35 kmem_cache_destroy(lkb_cache);
36}
37
38char *allocate_lvb(struct dlm_ls *ls)
39{
40 char *p;
41
42 p = kmalloc(ls->ls_lvblen, GFP_KERNEL);
43 if (p)
44 memset(p, 0, ls->ls_lvblen);
45 return p;
46}
47
48void free_lvb(char *p)
49{
50 kfree(p);
51}
52
David Teiglande7fd4172006-01-18 09:30:29 +000053/* FIXME: have some minimal space built-in to rsb for the name and
54 kmalloc a separate name if needed, like dentries are done */
55
56struct dlm_rsb *allocate_rsb(struct dlm_ls *ls, int namelen)
57{
58 struct dlm_rsb *r;
59
60 DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,);
61
62 r = kmalloc(sizeof(*r) + namelen, GFP_KERNEL);
63 if (r)
64 memset(r, 0, sizeof(*r) + namelen);
65 return r;
66}
67
68void free_rsb(struct dlm_rsb *r)
69{
70 if (r->res_lvbptr)
71 free_lvb(r->res_lvbptr);
72 kfree(r);
73}
74
75struct dlm_lkb *allocate_lkb(struct dlm_ls *ls)
76{
77 struct dlm_lkb *lkb;
78
Robert P. J. Dayc3762222007-02-10 01:45:03 -080079 lkb = kmem_cache_zalloc(lkb_cache, GFP_KERNEL);
David Teiglande7fd4172006-01-18 09:30:29 +000080 return lkb;
81}
82
83void free_lkb(struct dlm_lkb *lkb)
84{
David Teigland597d0ca2006-07-12 16:44:04 -050085 if (lkb->lkb_flags & DLM_IFL_USER) {
86 struct dlm_user_args *ua;
87 ua = (struct dlm_user_args *)lkb->lkb_astparam;
88 if (ua) {
89 if (ua->lksb.sb_lvbptr)
90 kfree(ua->lksb.sb_lvbptr);
91 kfree(ua);
92 }
93 }
David Teiglande7fd4172006-01-18 09:30:29 +000094 kmem_cache_free(lkb_cache, lkb);
95}
96
97struct dlm_direntry *allocate_direntry(struct dlm_ls *ls, int namelen)
98{
99 struct dlm_direntry *de;
100
David Teigland5ff51912006-08-08 17:03:30 -0500101 DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,
102 printk("namelen = %d\n", namelen););
David Teiglande7fd4172006-01-18 09:30:29 +0000103
104 de = kmalloc(sizeof(*de) + namelen, GFP_KERNEL);
105 if (de)
106 memset(de, 0, sizeof(*de) + namelen);
107 return de;
108}
109
110void free_direntry(struct dlm_direntry *de)
111{
112 kfree(de);
113}
114