summaryrefslogtreecommitdiff
path: root/fs/dlm/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/dlm/memory.c')
-rw-r--r--fs/dlm/memory.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/fs/dlm/memory.c b/fs/dlm/memory.c
index 0b9851d0bdb2..f7cf4589fae8 100644
--- a/fs/dlm/memory.c
+++ b/fs/dlm/memory.c
@@ -50,22 +50,6 @@ void free_lvb(char *p)
kfree(p);
}
-uint64_t *allocate_range(struct dlm_ls *ls)
-{
- int ralen = 4*sizeof(uint64_t);
- uint64_t *p;
-
- p = kmalloc(ralen, GFP_KERNEL);
- if (p)
- memset(p, 0, ralen);
- return p;
-}
-
-void free_range(uint64_t *p)
-{
- 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 */