diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2005-11-17 19:52:51 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-11-17 19:52:51 -0500 |
commit | 9e147a1cfce5ec6308b024abe425d5b4e1884a03 (patch) | |
tree | cbf4e057d96c38519dec3f1399654523a780ff6a /net/ipv6 | |
parent | 05b8b0fafd4cac75d205ecd5ad40992e2cc5934d (diff) |
[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>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 9a71a8d1078a..a7a537b50595 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) | |||
1732 | /* | 1732 | /* |
1733 | * 2. allocate and initialize walker. | 1733 | * 2. allocate and initialize walker. |
1734 | */ | 1734 | */ |
1735 | w = kmalloc(sizeof(*w), GFP_KERNEL); | 1735 | w = kmalloc(sizeof(*w), GFP_ATOMIC); |
1736 | if (w == NULL) | 1736 | if (w == NULL) |
1737 | return -ENOMEM; | 1737 | return -ENOMEM; |
1738 | RT6_TRACE("dump<%p", w); | 1738 | RT6_TRACE("dump<%p", w); |