projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2d7222
)
[IPV6]: Fix unnecessary GFP_ATOMIC allocation in fib6 dump
author
Thomas Graf
<tgraf@suug.ch>
Sat, 12 Nov 2005 20:15:16 +0000
(12:15 -0800)
committer
David S. Miller
<davem@davemloft.net>
Sat, 12 Nov 2005 20:15:16 +0000
(12:15 -0800)
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/route.c
patch
|
blob
|
history
diff --git
a/net/ipv6/route.c
b/net/ipv6/route.c
index
a7a537b
..
9a71a8d
100644
(file)
--- a/
net/ipv6/route.c
+++ b/
net/ipv6/route.c
@@
-1732,7
+1732,7
@@
int inet6_dump_fib(struct sk_buff *skb, struct netlink_callback *cb)
/*
* 2. allocate and initialize walker.
*/
- w = kmalloc(sizeof(*w), GFP_
ATOMIC
);
+ w = kmalloc(sizeof(*w), GFP_
KERNEL
);
if (w == NULL)
return -ENOMEM;
RT6_TRACE("dump<%p", w);