2 * Copyright (C) 1995-1997 Claus-Justus Heine.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 * $Source: /homes/cvs/ftape-stacked/ftape/zftape/zftape-buffers.c,v $
21 * $Date: 1997/10/05 19:18:59 $
23 * This file contains the dynamic buffer allocation routines
27 #include <linux/errno.h>
29 #include <linux/slab.h>
30 #include <linux/delay.h>
32 #include <linux/zftape.h>
34 #include <linux/vmalloc.h>
36 #include "../zftape/zftape-init.h"
37 #include "../zftape/zftape-eof.h"
38 #include "../zftape/zftape-ctl.h"
39 #include "../zftape/zftape-write.h"
40 #include "../zftape/zftape-read.h"
41 #include "../zftape/zftape-rw.h"
42 #include "../zftape/zftape-vtbl.h"
49 static unsigned int used_memory
;
50 static unsigned int peak_memory
;
52 void zft_memory_stats(void)
56 TRACE(ft_t_noise
, "Memory usage (vmalloc allocations):\n"
57 KERN_INFO
"total allocated: %d\n"
58 KERN_INFO
"peak allocation: %d",
59 used_memory
, peak_memory
);
60 peak_memory
= used_memory
;
64 int zft_vcalloc_once(void *new, size_t size
)
67 if (zft_vmalloc_once(new, size
) < 0) {
70 memset(*(void **)new, '\0', size
);
73 int zft_vmalloc_once(void *new, size_t size
)
77 if (*(void **)new != NULL
|| size
== 0) {
80 if ((*(void **)new = vmalloc(size
)) == NULL
) {
84 if (peak_memory
< used_memory
) {
85 peak_memory
= used_memory
;
87 TRACE_ABORT(0, ft_t_noise
,
88 "allocated buffer @ %p, %d bytes", *(void **)new, size
);
90 int zft_vmalloc_always(void *new, size_t size
)
95 TRACE_EXIT
zft_vmalloc_once(new, size
);
97 void zft_vfree(void *old
, size_t size
)
102 vfree(*(void **)old
);
104 TRACE(ft_t_noise
, "released buffer @ %p, %d bytes",
105 *(void **)old
, size
);
106 *(void **)old
= NULL
;
111 void *zft_kmalloc(size_t size
)
115 while ((new = kmalloc(size
, GFP_KERNEL
)) == NULL
) {
116 msleep_interruptible(100);
118 memset(new, 0, size
);
120 if (peak_memory
< used_memory
) {
121 peak_memory
= used_memory
;
126 void zft_kfree(void *old
, size_t size
)
132 /* there are some more buffers that are allocated on demand.
133 * cleanup_module() calles this function to be sure to have released
136 void zft_uninit_mem(void)
138 TRACE_FUN(ft_t_flow
);
140 zft_vfree(&zft_hseg_buf
, FT_SEGMENT_SIZE
);
141 zft_vfree(&zft_deblock_buf
, FT_SEGMENT_SIZE
); zft_deblock_segment
= -1;
143 if (zft_cmpr_lock(0 /* don't load */) == 0) {
144 (*zft_cmpr_ops
->cleanup
)();
145 (*zft_cmpr_ops
->reset
)(); /* unlock it again */