[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1181702802.2282.16.camel@shani-win>
Date: Wed, 13 Jun 2007 08:16:42 +0530
From: Shani Moideen <shani.moideen@...ro.com>
To: jgarzik@...ox.com, akpm@...ux-foundation.org
Cc: netdev@...r.kernel.org, kernel-janitors@...ts.osdl.org
Subject: [KJ PATCH] Replacing alloc_pages(gfp,0) with alloc_page(gfp) in
net/core/sock.c
Replacing alloc_pages(gfp,0) with alloc_page(gfp)
in net/core/sock.c
Signed-off-by: Shani Moideen <shani.moideen@...ro.com>
----
diff --git a/net/core/sock.c b/net/core/sock.c
index 22183c2..25bb52b 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -1193,7 +1193,7 @@ static struct sk_buff *sock_alloc_send_pskb(struct sock *sk,
struct page *page;
skb_frag_t *frag;
- page = alloc_pages(sk->sk_allocation, 0);
+ page = alloc_page(sk->sk_allocation);
if (!page) {
err = -ENOBUFS;
skb_shinfo(skb)->nr_frags = i;
--
Shani
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists