memory.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /******************************************************************************
  2. *******************************************************************************
  3. **
  4. ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  5. ** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
  6. **
  7. ** This copyrighted material is made available to anyone wishing to use,
  8. ** modify, copy, or redistribute it subject to the terms and conditions
  9. ** of the GNU General Public License v.2.
  10. **
  11. *******************************************************************************
  12. ******************************************************************************/
  13. #include "dlm_internal.h"
  14. #include "config.h"
  15. #include "memory.h"
  16. static struct kmem_cache *lkb_cache;
  17. int dlm_memory_init(void)
  18. {
  19. int ret = 0;
  20. lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
  21. __alignof__(struct dlm_lkb), 0, NULL);
  22. if (!lkb_cache)
  23. ret = -ENOMEM;
  24. return ret;
  25. }
  26. void dlm_memory_exit(void)
  27. {
  28. if (lkb_cache)
  29. kmem_cache_destroy(lkb_cache);
  30. }
  31. char *allocate_lvb(struct dlm_ls *ls)
  32. {
  33. char *p;
  34. p = kzalloc(ls->ls_lvblen, GFP_KERNEL);
  35. return p;
  36. }
  37. void free_lvb(char *p)
  38. {
  39. kfree(p);
  40. }
  41. /* FIXME: have some minimal space built-in to rsb for the name and
  42. kmalloc a separate name if needed, like dentries are done */
  43. struct dlm_rsb *allocate_rsb(struct dlm_ls *ls, int namelen)
  44. {
  45. struct dlm_rsb *r;
  46. DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,);
  47. r = kzalloc(sizeof(*r) + namelen, GFP_KERNEL);
  48. return r;
  49. }
  50. void free_rsb(struct dlm_rsb *r)
  51. {
  52. if (r->res_lvbptr)
  53. free_lvb(r->res_lvbptr);
  54. kfree(r);
  55. }
  56. struct dlm_lkb *allocate_lkb(struct dlm_ls *ls)
  57. {
  58. struct dlm_lkb *lkb;
  59. lkb = kmem_cache_zalloc(lkb_cache, GFP_KERNEL);
  60. return lkb;
  61. }
  62. void free_lkb(struct dlm_lkb *lkb)
  63. {
  64. if (lkb->lkb_flags & DLM_IFL_USER) {
  65. struct dlm_user_args *ua;
  66. ua = (struct dlm_user_args *)lkb->lkb_astparam;
  67. if (ua) {
  68. if (ua->lksb.sb_lvbptr)
  69. kfree(ua->lksb.sb_lvbptr);
  70. kfree(ua);
  71. }
  72. }
  73. kmem_cache_free(lkb_cache, lkb);
  74. }
  75. struct dlm_direntry *allocate_direntry(struct dlm_ls *ls, int namelen)
  76. {
  77. struct dlm_direntry *de;
  78. DLM_ASSERT(namelen <= DLM_RESNAME_MAXLEN,
  79. printk("namelen = %d\n", namelen););
  80. de = kzalloc(sizeof(*de) + namelen, GFP_KERNEL);
  81. return de;
  82. }
  83. void free_direntry(struct dlm_direntry *de)
  84. {
  85. kfree(de);
  86. }