1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
3 *******************************************************************************
5 ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
6 ** Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
9 *******************************************************************************
10 ******************************************************************************/
12 #include "dlm_internal.h"
18 static struct kmem_cache *writequeue_cache;
19 static struct kmem_cache *mhandle_cache;
20 static struct kmem_cache *msg_cache;
21 static struct kmem_cache *lkb_cache;
22 static struct kmem_cache *rsb_cache;
25 int __init dlm_memory_init(void)
27 writequeue_cache = dlm_lowcomms_writequeue_cache_create();
28 if (!writequeue_cache)
31 mhandle_cache = dlm_midcomms_cache_create();
35 lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
36 __alignof__(struct dlm_lkb), 0, NULL);
40 msg_cache = dlm_lowcomms_msg_cache_create();
44 rsb_cache = kmem_cache_create("dlm_rsb", sizeof(struct dlm_rsb),
45 __alignof__(struct dlm_rsb), 0, NULL);
52 kmem_cache_destroy(msg_cache);
54 kmem_cache_destroy(lkb_cache);
56 kmem_cache_destroy(mhandle_cache);
58 kmem_cache_destroy(writequeue_cache);
63 void dlm_memory_exit(void)
65 kmem_cache_destroy(writequeue_cache);
66 kmem_cache_destroy(mhandle_cache);
67 kmem_cache_destroy(msg_cache);
68 kmem_cache_destroy(lkb_cache);
69 kmem_cache_destroy(rsb_cache);
72 char *dlm_allocate_lvb(struct dlm_ls *ls)
76 p = kzalloc(ls->ls_lvblen, GFP_NOFS);
80 void dlm_free_lvb(char *p)
85 struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls)
89 r = kmem_cache_zalloc(rsb_cache, GFP_NOFS);
93 void dlm_free_rsb(struct dlm_rsb *r)
96 dlm_free_lvb(r->res_lvbptr);
97 kmem_cache_free(rsb_cache, r);
100 struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls)
104 lkb = kmem_cache_zalloc(lkb_cache, GFP_NOFS);
108 void dlm_free_lkb(struct dlm_lkb *lkb)
110 if (lkb->lkb_flags & DLM_IFL_USER) {
111 struct dlm_user_args *ua;
114 kfree(ua->lksb.sb_lvbptr);
118 kmem_cache_free(lkb_cache, lkb);
121 struct dlm_mhandle *dlm_allocate_mhandle(void)
123 return kmem_cache_alloc(mhandle_cache, GFP_NOFS);
126 void dlm_free_mhandle(struct dlm_mhandle *mhandle)
128 kmem_cache_free(mhandle_cache, mhandle);
131 struct writequeue_entry *dlm_allocate_writequeue(void)
133 return kmem_cache_alloc(writequeue_cache, GFP_ATOMIC);
136 void dlm_free_writequeue(struct writequeue_entry *writequeue)
138 kmem_cache_free(writequeue_cache, writequeue);
141 struct dlm_msg *dlm_allocate_msg(gfp_t allocation)
143 return kmem_cache_alloc(msg_cache, allocation);
146 void dlm_free_msg(struct dlm_msg *msg)
148 kmem_cache_free(msg_cache, msg);