memory.c 2.0 KB
Newer Older
1 2 3 4
/******************************************************************************
*******************************************************************************
**
**  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
5
**  Copyright (C) 2004-2007 Red Hat, Inc.  All rights reserved.
6 7 8 9 10 11 12 13 14 15 16 17
**
**  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"

18
static struct kmem_cache *lkb_cache;
19 20


21
int __init dlm_memory_init(void)
22 23 24 25
{
	int ret = 0;

	lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
26
				__alignof__(struct dlm_lkb), 0, NULL);
27 28 29 30 31 32 33 34 35 36 37
	if (!lkb_cache)
		ret = -ENOMEM;
	return ret;
}

void dlm_memory_exit(void)
{
	if (lkb_cache)
		kmem_cache_destroy(lkb_cache);
}

38
char *dlm_allocate_lvb(struct dlm_ls *ls)
39 40 41
{
	char *p;

42
	p = kzalloc(ls->ls_lvblen, GFP_KERNEL);
43 44 45
	return p;
}

46
void dlm_free_lvb(char *p)
47 48 49 50 51 52 53
{
	kfree(p);
}

/* FIXME: have some minimal space built-in to rsb for the name and
   kmalloc a separate name if needed, like dentries are done */

54
struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls, int namelen)
55 56 57 58 59
{
	struct dlm_rsb *r;

	DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,);

60
	r = kzalloc(sizeof(*r) + namelen, GFP_KERNEL);
61 62 63
	return r;
}

64
void dlm_free_rsb(struct dlm_rsb *r)
65 66
{
	if (r->res_lvbptr)
67
		dlm_free_lvb(r->res_lvbptr);
68 69 70
	kfree(r);
}

71
struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls)
72 73 74
{
	struct dlm_lkb *lkb;

75
	lkb = kmem_cache_zalloc(lkb_cache, GFP_KERNEL);
76 77 78
	return lkb;
}

79
void dlm_free_lkb(struct dlm_lkb *lkb)
80
{
D
David Teigland 已提交
81 82
	if (lkb->lkb_flags & DLM_IFL_USER) {
		struct dlm_user_args *ua;
83
		ua = lkb->lkb_ua;
D
David Teigland 已提交
84 85 86 87 88 89
		if (ua) {
			if (ua->lksb.sb_lvbptr)
				kfree(ua->lksb.sb_lvbptr);
			kfree(ua);
		}
	}
90 91 92
	kmem_cache_free(lkb_cache, lkb);
}