Files
linux-apfs/fs/dlm/memory.c
T

97 lines
2.1 KiB
C
Raw Normal View History

2006-01-18 09:30:29 +00:00
/******************************************************************************
*******************************************************************************
**
** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
** Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
2006-01-18 09:30:29 +00:00
**
** 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"
2006-12-06 20:33:20 -08:00
static struct kmem_cache *lkb_cache;
2011-07-07 14:05:03 -05:00
static struct kmem_cache *rsb_cache;
2006-01-18 09:30:29 +00:00
int __init dlm_memory_init(void)
2006-01-18 09:30:29 +00:00
{
lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
__alignof__(struct dlm_lkb), 0, NULL);
2006-01-18 09:30:29 +00:00
if (!lkb_cache)
return -ENOMEM;
2011-07-07 14:05:03 -05:00
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);
return -ENOMEM;
2011-07-07 14:05:03 -05:00
}
return 0;
2006-01-18 09:30:29 +00:00
}
void dlm_memory_exit(void)
{
if (lkb_cache)
kmem_cache_destroy(lkb_cache);
2011-07-07 14:05:03 -05:00
if (rsb_cache)
kmem_cache_destroy(rsb_cache);
2006-01-18 09:30:29 +00:00
}
char *dlm_allocate_lvb(struct dlm_ls *ls)
2006-01-18 09:30:29 +00:00
{
char *p;
2009-11-30 16:34:43 -06:00
p = kzalloc(ls->ls_lvblen, GFP_NOFS);
2006-01-18 09:30:29 +00:00
return p;
}
void dlm_free_lvb(char *p)
2006-01-18 09:30:29 +00:00
{
kfree(p);
}
2011-07-07 14:05:03 -05:00
struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls)
2006-01-18 09:30:29 +00:00
{
struct dlm_rsb *r;
2011-07-07 14:05:03 -05:00
r = kmem_cache_zalloc(rsb_cache, GFP_NOFS);
2006-01-18 09:30:29 +00:00
return r;
}
void dlm_free_rsb(struct dlm_rsb *r)
2006-01-18 09:30:29 +00:00
{
if (r->res_lvbptr)
dlm_free_lvb(r->res_lvbptr);
2011-07-07 14:05:03 -05:00
kmem_cache_free(rsb_cache, r);
2006-01-18 09:30:29 +00:00
}
struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls)
2006-01-18 09:30:29 +00:00
{
struct dlm_lkb *lkb;
2009-11-30 16:34:43 -06:00
lkb = kmem_cache_zalloc(lkb_cache, GFP_NOFS);
2006-01-18 09:30:29 +00:00
return lkb;
}
void dlm_free_lkb(struct dlm_lkb *lkb)
2006-01-18 09:30:29 +00:00
{
2006-07-12 16:44:04 -05:00
if (lkb->lkb_flags & DLM_IFL_USER) {
struct dlm_user_args *ua;
2008-02-06 23:27:04 -06:00
ua = lkb->lkb_ua;
2006-07-12 16:44:04 -05:00
if (ua) {
if (ua->lksb.sb_lvbptr)
kfree(ua->lksb.sb_lvbptr);
kfree(ua);
}
}
2006-01-18 09:30:29 +00:00
kmem_cache_free(lkb_cache, lkb);
}