memory.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. ** 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. static struct kmem_cache *rsb_cache;
  18. int __init dlm_memory_init(void)
  19. {
  20. int ret = 0;
  21. lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
  22. __alignof__(struct dlm_lkb), 0, NULL);
  23. if (!lkb_cache)
  24. ret = -ENOMEM;
  25. rsb_cache = kmem_cache_create("dlm_rsb", sizeof(struct dlm_rsb),
  26. __alignof__(struct dlm_rsb), 0, NULL);
  27. if (!rsb_cache) {
  28. kmem_cache_destroy(lkb_cache);
  29. ret = -ENOMEM;
  30. }
  31. return ret;
  32. }
  33. void dlm_memory_exit(void)
  34. {
  35. if (lkb_cache)
  36. kmem_cache_destroy(lkb_cache);
  37. if (rsb_cache)
  38. kmem_cache_destroy(rsb_cache);
  39. }
  40. char *dlm_allocate_lvb(struct dlm_ls *ls)
  41. {
  42. char *p;
  43. p = kzalloc(ls->ls_lvblen, GFP_NOFS);
  44. return p;
  45. }
  46. void dlm_free_lvb(char *p)
  47. {
  48. kfree(p);
  49. }
  50. struct dlm_rsb *dlm_allocate_rsb(struct dlm_ls *ls)
  51. {
  52. struct dlm_rsb *r;
  53. r = kmem_cache_zalloc(rsb_cache, GFP_NOFS);
  54. return r;
  55. }
  56. void dlm_free_rsb(struct dlm_rsb *r)
  57. {
  58. if (r->res_lvbptr)
  59. dlm_free_lvb(r->res_lvbptr);
  60. kmem_cache_free(rsb_cache, r);
  61. }
  62. struct dlm_lkb *dlm_allocate_lkb(struct dlm_ls *ls)
  63. {
  64. struct dlm_lkb *lkb;
  65. lkb = kmem_cache_zalloc(lkb_cache, GFP_NOFS);
  66. return lkb;
  67. }
  68. void dlm_free_lkb(struct dlm_lkb *lkb)
  69. {
  70. if (lkb->lkb_flags & DLM_IFL_USER) {
  71. struct dlm_user_args *ua;
  72. ua = lkb->lkb_ua;
  73. if (ua) {
  74. if (ua->lksb.sb_lvbptr)
  75. kfree(ua->lksb.sb_lvbptr);
  76. kfree(ua);
  77. }
  78. }
  79. kmem_cache_free(lkb_cache, lkb);
  80. }