aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/util.c44
1 files changed, 34 insertions, 10 deletions
diff --git a/mm/util.c b/mm/util.c
index 8f18683825bc..6ef9e9943f62 100644
--- a/mm/util.c
+++ b/mm/util.c
@@ -68,25 +68,22 @@ void *kmemdup(const void *src, size_t len, gfp_t gfp)
68EXPORT_SYMBOL(kmemdup); 68EXPORT_SYMBOL(kmemdup);
69 69
70/** 70/**
71 * krealloc - reallocate memory. The contents will remain unchanged. 71 * __krealloc - like krealloc() but don't free @p.
72 * @p: object to reallocate memory for. 72 * @p: object to reallocate memory for.
73 * @new_size: how many bytes of memory are required. 73 * @new_size: how many bytes of memory are required.
74 * @flags: the type of memory to allocate. 74 * @flags: the type of memory to allocate.
75 * 75 *
76 * The contents of the object pointed to are preserved up to the 76 * This function is like krealloc() except it never frees the originally
77 * lesser of the new and old sizes. If @p is %NULL, krealloc() 77 * allocated buffer. Use this if you don't want to free the buffer immediately
78 * behaves exactly like kmalloc(). If @size is 0 and @p is not a 78 * like, for example, with RCU.
79 * %NULL pointer, the object pointed to is freed.
80 */ 79 */
81void *krealloc(const void *p, size_t new_size, gfp_t flags) 80void *__krealloc(const void *p, size_t new_size, gfp_t flags)
82{ 81{
83 void *ret; 82 void *ret;
84 size_t ks = 0; 83 size_t ks = 0;
85 84
86 if (unlikely(!new_size)) { 85 if (unlikely(!new_size))
87 kfree(p);
88 return ZERO_SIZE_PTR; 86 return ZERO_SIZE_PTR;
89 }
90 87
91 if (p) 88 if (p)
92 ks = ksize(p); 89 ks = ksize(p);
@@ -95,10 +92,37 @@ void *krealloc(const void *p, size_t new_size, gfp_t flags)
95 return (void *)p; 92 return (void *)p;
96 93
97 ret = kmalloc_track_caller(new_size, flags); 94 ret = kmalloc_track_caller(new_size, flags);
98 if (ret && p) { 95 if (ret && p)
99 memcpy(ret, p, ks); 96 memcpy(ret, p, ks);
97
98 return ret;
99}
100EXPORT_SYMBOL(__krealloc);
101
102/**
103 * krealloc - reallocate memory. The contents will remain unchanged.
104 * @p: object to reallocate memory for.
105 * @new_size: how many bytes of memory are required.
106 * @flags: the type of memory to allocate.
107 *
108 * The contents of the object pointed to are preserved up to the
109 * lesser of the new and old sizes. If @p is %NULL, krealloc()
110 * behaves exactly like kmalloc(). If @size is 0 and @p is not a
111 * %NULL pointer, the object pointed to is freed.
112 */
113void *krealloc(const void *p, size_t new_size, gfp_t flags)
114{
115 void *ret;
116
117 if (unlikely(!new_size)) {
100 kfree(p); 118 kfree(p);
119 return ZERO_SIZE_PTR;
101 } 120 }
121
122 ret = __krealloc(p, new_size, flags);
123 if (ret && p != ret)
124 kfree(p);
125
102 return ret; 126 return ret;
103} 127}
104EXPORT_SYMBOL(krealloc); 128EXPORT_SYMBOL(krealloc);