blob: aba7fcf881a217d209d7c0c89fb9a573156e21ba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/sched.h>
19#include <linux/mm.h>
20#include <linux/vmalloc.h>
21#include <linux/highmem.h>
22#include <linux/swap.h>
23#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "time.h"
25#include "kmem.h"
26
27#define MAX_VMALLOCS 6
28#define MAX_SLAB_SIZE 0x20000
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030void *
Al Viro27496a82005-10-21 03:20:48 -040031kmem_alloc(size_t size, unsigned int __nocast flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
Al Viro27496a82005-10-21 03:20:48 -040033 int retries = 0;
34 gfp_t lflags = kmem_flags_convert(flags);
35 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 do {
38 if (size < MAX_SLAB_SIZE || retries > MAX_VMALLOCS)
39 ptr = kmalloc(size, lflags);
40 else
41 ptr = __vmalloc(size, lflags, PAGE_KERNEL);
42 if (ptr || (flags & (KM_MAYFAIL|KM_NOSLEEP)))
43 return ptr;
44 if (!(++retries % 100))
45 printk(KERN_ERR "XFS: possible memory allocation "
46 "deadlock in %s (mode:0x%x)\n",
47 __FUNCTION__, lflags);
48 blk_congestion_wait(WRITE, HZ/50);
49 } while (1);
50}
51
52void *
Al Viro27496a82005-10-21 03:20:48 -040053kmem_zalloc(size_t size, unsigned int __nocast flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 void *ptr;
56
57 ptr = kmem_alloc(size, flags);
58 if (ptr)
59 memset((char *)ptr, 0, (int)size);
60 return ptr;
61}
62
63void
64kmem_free(void *ptr, size_t size)
65{
66 if (((unsigned long)ptr < VMALLOC_START) ||
67 ((unsigned long)ptr >= VMALLOC_END)) {
68 kfree(ptr);
69 } else {
70 vfree(ptr);
71 }
72}
73
74void *
Christoph Hellwig760dea62005-09-02 16:56:02 +100075kmem_realloc(void *ptr, size_t newsize, size_t oldsize,
Al Viro27496a82005-10-21 03:20:48 -040076 unsigned int __nocast flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 void *new;
79
80 new = kmem_alloc(newsize, flags);
81 if (ptr) {
82 if (new)
83 memcpy(new, ptr,
84 ((oldsize < newsize) ? oldsize : newsize));
85 kmem_free(ptr, oldsize);
86 }
87 return new;
88}
89
90void *
Al Viro27496a82005-10-21 03:20:48 -040091kmem_zone_alloc(kmem_zone_t *zone, unsigned int __nocast flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Al Viro27496a82005-10-21 03:20:48 -040093 int retries = 0;
94 gfp_t lflags = kmem_flags_convert(flags);
95 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 do {
98 ptr = kmem_cache_alloc(zone, lflags);
99 if (ptr || (flags & (KM_MAYFAIL|KM_NOSLEEP)))
100 return ptr;
101 if (!(++retries % 100))
102 printk(KERN_ERR "XFS: possible memory allocation "
103 "deadlock in %s (mode:0x%x)\n",
104 __FUNCTION__, lflags);
105 blk_congestion_wait(WRITE, HZ/50);
106 } while (1);
107}
108
109void *
Al Viro27496a82005-10-21 03:20:48 -0400110kmem_zone_zalloc(kmem_zone_t *zone, unsigned int __nocast flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 void *ptr;
113
114 ptr = kmem_zone_alloc(zone, flags);
115 if (ptr)
116 memset((char *)ptr, 0, kmem_cache_size(zone));
117 return ptr;
118}