From: Thomas Graf Date: Sat, 12 Nov 2005 20:15:16 +0000 (-0800) Subject: [IPV6]: Fix unnecessary GFP_ATOMIC allocation in fib6 dump X-Git-Tag: v2.6.15-rc2~216 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=8225ccbaf01b459cf1e462047a51b2851e756bc1;p=linux-2.6-omap-h63xx.git [IPV6]: Fix unnecessary GFP_ATOMIC allocation in fib6 dump Signed-off-by: Thomas Graf Signed-off-by: David S. Miller --- diff --git a/net/ipv6/route.c b/net/ipv6/route.c index a7a537b5059..9a71a8d1078 100644 --- 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);