]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/dlm/memory.c
scm: lower SCM_MAX_FD
[net-next-2.6.git] / fs / dlm / memory.c
CommitLineData
e7fd4179
DT
1/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
52bda2b5 5** Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
e7fd4179
DT
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
e18b890b 18static struct kmem_cache *lkb_cache;
e7fd4179
DT
19
20
30727174 21int __init dlm_memory_init(void)
e7fd4179
DT
22{
23 int ret = 0;
24
25 lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
20c2df83 26 __alignof__(struct dlm_lkb), 0, NULL);
e7fd4179
DT
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
52bda2b5 38char *dlm_allocate_lvb(struct dlm_ls *ls)
e7fd4179
DT
39{
40 char *p;
41
573c24c4 42 p = kzalloc(ls->ls_lvblen, GFP_NOFS);
e7fd4179
DT
43 return p;
44}
45
52bda2b5 46void dlm_free_lvb(char *p)
e7fd4179
DT
47{
48 kfree(p);
49}
50
e7fd4179
DT
51/* FIXME: have some minimal space built-in to rsb for the name and
52 kmalloc a separate name if needed, like dentries are done */
53
52bda2b5 54struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls, int namelen)
e7fd4179
DT
55{
56 struct dlm_rsb *r;
57
58 DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,);
59
573c24c4 60 r = kzalloc(sizeof(*r) + namelen, GFP_NOFS);
e7fd4179
DT
61 return r;
62}
63
52bda2b5 64void dlm_free_rsb(struct dlm_rsb *r)
e7fd4179
DT
65{
66 if (r->res_lvbptr)
52bda2b5 67 dlm_free_lvb(r->res_lvbptr);
e7fd4179
DT
68 kfree(r);
69}
70
52bda2b5 71struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls)
e7fd4179
DT
72{
73 struct dlm_lkb *lkb;
74
573c24c4 75 lkb = kmem_cache_zalloc(lkb_cache, GFP_NOFS);
e7fd4179
DT
76 return lkb;
77}
78
52bda2b5 79void dlm_free_lkb(struct dlm_lkb *lkb)
e7fd4179 80{
597d0cae
DT
81 if (lkb->lkb_flags & DLM_IFL_USER) {
82 struct dlm_user_args *ua;
d292c0cc 83 ua = lkb->lkb_ua;
597d0cae
DT
84 if (ua) {
85 if (ua->lksb.sb_lvbptr)
86 kfree(ua->lksb.sb_lvbptr);
87 kfree(ua);
88 }
89 }
e7fd4179
DT
90 kmem_cache_free(lkb_cache, lkb);
91}
92