zftape-buffers.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      Copyright (C) 1995-1997 Claus-Justus Heine.
  3.  This program is free software; you can redistribute it and/or modify
  4.  it under the terms of the GNU General Public License as published by
  5.  the Free Software Foundation; either version 2, or (at your option)
  6.  any later version.
  7.  This program is distributed in the hope that it will be useful,
  8.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  GNU General Public License for more details.
  11.  You should have received a copy of the GNU General Public License
  12.  along with this program; see the file COPYING.  If not, write to
  13.  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  *
  15.  * $Source: /homes/cvs/ftape-stacked/ftape/zftape/zftape-buffers.c,v $
  16.  * $Revision: 1.2 $
  17.  * $Date: 1997/10/05 19:18:59 $
  18.  *
  19.  *      This file contains the dynamic buffer allocation routines 
  20.  *      of zftape
  21.  */
  22. #include <linux/errno.h>
  23. #include <linux/mm.h>
  24. #include <linux/slab.h>
  25. #include <asm/segment.h>
  26. #include <linux/zftape.h>
  27. #if LINUX_VERSION_CODE >= KERNEL_VER(2,1,0)
  28. #include <linux/vmalloc.h>
  29. #endif
  30. #include "../zftape/zftape-init.h"
  31. #include "../zftape/zftape-eof.h"
  32. #include "../zftape/zftape-ctl.h"
  33. #include "../zftape/zftape-write.h"
  34. #include "../zftape/zftape-read.h"
  35. #include "../zftape/zftape-rw.h"
  36. #include "../zftape/zftape-vtbl.h"
  37. /*  global variables
  38.  */
  39. /*  local varibales
  40.  */
  41. static unsigned int used_memory;
  42. static unsigned int peak_memory;
  43. void zft_memory_stats(void)
  44. {
  45. TRACE_FUN(ft_t_flow);
  46. TRACE(ft_t_noise, "Memory usage (vmalloc allocations):n"
  47.       KERN_INFO "total allocated: %dn"
  48.       KERN_INFO "peak allocation: %d",
  49.       used_memory, peak_memory);
  50. peak_memory = used_memory;
  51. TRACE_EXIT;
  52. }
  53. int zft_vcalloc_once(void *new, size_t size)
  54. {
  55. TRACE_FUN(ft_t_flow);
  56. if (zft_vmalloc_once(new, size) < 0) {
  57. TRACE_EXIT -ENOMEM;
  58. }
  59. memset(*(void **)new, '', size);
  60. TRACE_EXIT 0;
  61. }
  62. int zft_vmalloc_once(void *new, size_t size)
  63. {
  64. TRACE_FUN(ft_t_flow);
  65. if (*(void **)new != NULL || size == 0) {
  66. TRACE_EXIT 0;
  67. }
  68. if ((*(void **)new = vmalloc(size)) == NULL) {
  69. TRACE_EXIT -ENOMEM;
  70. }
  71. used_memory += size;
  72. if (peak_memory < used_memory) {
  73. peak_memory = used_memory;
  74. }
  75. TRACE_ABORT(0, ft_t_noise,
  76.     "allocated buffer @ %p, %d bytes", *(void **)new, size);
  77. }
  78. int zft_vcalloc_always(void *new, size_t size)
  79. {
  80. TRACE_FUN(ft_t_flow);
  81. zft_vfree(new, size);
  82. TRACE_EXIT zft_vcalloc_once(new, size);
  83. }
  84. int zft_vmalloc_always(void *new, size_t size)
  85. {
  86. TRACE_FUN(ft_t_flow);
  87. zft_vfree(new, size);
  88. TRACE_EXIT zft_vmalloc_once(new, size);
  89. }
  90. void zft_vfree(void *old, size_t size)
  91. {
  92. TRACE_FUN(ft_t_flow);
  93. if (*(void **)old) {
  94. vfree(*(void **)old);
  95. used_memory -= size;
  96. TRACE(ft_t_noise, "released buffer @ %p, %d bytes",
  97.       *(void **)old, size);
  98. *(void **)old = NULL;
  99. }
  100. TRACE_EXIT;
  101. }
  102. void *zft_kmalloc(size_t size)
  103. {
  104. void *new;
  105. while ((new = kmalloc(size, GFP_KERNEL)) == NULL) {
  106. current->state   = TASK_INTERRUPTIBLE;
  107. schedule_timeout(HZ/10);
  108. }
  109. memset(new, 0, size);
  110. used_memory += size;
  111. if (peak_memory < used_memory) {
  112. peak_memory = used_memory;
  113. }
  114. return new;
  115. }
  116. void zft_kfree(void *old, size_t size)
  117. {
  118. kfree(old);
  119. used_memory -= size;
  120. }
  121. /* there are some more buffers that are allocated on demand.
  122.  * cleanup_module() calles this function to be sure to have released
  123.  * them 
  124.  */
  125. void zft_uninit_mem(void)
  126. {
  127. TRACE_FUN(ft_t_flow);
  128. zft_vfree(&zft_hseg_buf, FT_SEGMENT_SIZE);
  129. zft_vfree(&zft_deblock_buf, FT_SEGMENT_SIZE); zft_deblock_segment = -1;
  130. zft_free_vtbl();
  131. if (zft_cmpr_lock(0 /* don't load */) == 0) {
  132. (*zft_cmpr_ops->cleanup)();
  133. (*zft_cmpr_ops->reset)(); /* unlock it again */
  134. }
  135. zft_memory_stats();
  136. TRACE_EXIT;
  137. }