memory.c 2.1 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;
D
David Teigland 已提交
19
static struct kmem_cache *rsb_cache;
20 21


22
int __init dlm_memory_init(void)
23 24
{
	lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
25
				__alignof__(struct dlm_lkb), 0, NULL);
26
	if (!lkb_cache)
27
		return -ENOMEM;
D
David Teigland 已提交
28 29 30 31 32

	rsb_cache = kmem_cache_create("dlm_rsb", sizeof(struct dlm_rsb),
				__alignof__(struct dlm_rsb), 0, NULL);
	if (!rsb_cache) {
		kmem_cache_destroy(lkb_cache);
33
		return -ENOMEM;
D
David Teigland 已提交
34 35
	}

36
	return 0;
37 38 39 40 41 42
}

void dlm_memory_exit(void)
{
	if (lkb_cache)
		kmem_cache_destroy(lkb_cache);
D
David Teigland 已提交
43 44
	if (rsb_cache)
		kmem_cache_destroy(rsb_cache);
45 46
}

47
char *dlm_allocate_lvb(struct dlm_ls *ls)
48 49 50
{
	char *p;

D
David Teigland 已提交
51
	p = kzalloc(ls->ls_lvblen, GFP_NOFS);
52 53 54
	return p;
}

55
void dlm_free_lvb(char *p)
56 57 58 59
{
	kfree(p);
}

D
David Teigland 已提交
60
struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls)
61 62 63
{
	struct dlm_rsb *r;

D
David Teigland 已提交
64
	r = kmem_cache_zalloc(rsb_cache, GFP_NOFS);
65 66 67
	return r;
}

68
void dlm_free_rsb(struct dlm_rsb *r)
69 70
{
	if (r->res_lvbptr)
71
		dlm_free_lvb(r->res_lvbptr);
D
David Teigland 已提交
72
	kmem_cache_free(rsb_cache, r);
73 74
}

75
struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls)
76 77 78
{
	struct dlm_lkb *lkb;

D
David Teigland 已提交
79
	lkb = kmem_cache_zalloc(lkb_cache, GFP_NOFS);
80 81 82
	return lkb;
}

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