Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

[IPV6]: Fib dump really needs GFP_ATOMIC.

Revert: 8225ccbaf01b459cf1e462047a51b2851e756bc1

Based upon a report by Yan Zheng.

Signed-off-by: David S. Miller <davem@davemloft.net>

+1 -1
+1 -1
net/ipv6/route.c
··· 1732 1732 /* 1733 1733 * 2. allocate and initialize walker. 1734 1734 */ 1735 - w = kmalloc(sizeof(*w), GFP_KERNEL); 1735 + w = kmalloc(sizeof(*w), GFP_ATOMIC); 1736 1736 if (w == NULL) 1737 1737 return -ENOMEM; 1738 1738 RT6_TRACE("dump<%p", w);