projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c86cb1
)
[PATCH] Really __nocast-annotate kmalloc_node()
author
Alexey Dobriyan
<adobriyan@gmail.com>
Wed, 27 Jul 2005 18:43:27 +0000
(11:43 -0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 27 Jul 2005 23:25:47 +0000
(16:25 -0700)
One chunk was lost somewhere between my and Andrew's machine.
Noticed by Victor Fusco.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
include/linux/slab.h
patch
|
blob
|
blame
|
history
diff --git
a/include/linux/slab.h
b/include/linux/slab.h
index 4c8e552471b00be3cfb165f6f1606681f3a17306..80b2dfde2e8087d84ec06f945f3fa4a61ece4f55 100644
(file)
--- a/
include/linux/slab.h
+++ b/
include/linux/slab.h
@@
-111,7
+111,7
@@
static inline void *kmem_cache_alloc_node(kmem_cache_t *cachep, int flags, int n
{
return kmem_cache_alloc(cachep, flags);
}
-static inline void *kmalloc_node(size_t size,
in
t flags, int node)
+static inline void *kmalloc_node(size_t size,
unsigned int __nocas
t flags, int node)
{
return kmalloc(size, flags);
}