All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch] pktgen: use vzalloc_node() instead of vmalloc_node() + memset()
@ 2011-05-22 10:17 Américo Wang
  2011-05-23  1:02 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Américo Wang @ 2011-05-22 10:17 UTC (permalink / raw)
  To: Linux Kernel Network Developers; +Cc: David S. Miller

[-- Attachment #1: Type: text/plain, Size: 101 bytes --]

Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>

---

[-- Attachment #2: net-pktgen-use-vzalloc_node.diff --]
[-- Type: text/x-patch, Size: 657 bytes --]

diff --git a/net/core/pktgen.c b/net/core/pktgen.c
index 67870e9..3b85c0d 100644
--- a/net/core/pktgen.c
+++ b/net/core/pktgen.c
@@ -3544,13 +3544,12 @@ static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
 		return -ENOMEM;
 
 	strcpy(pkt_dev->odevname, ifname);
-	pkt_dev->flows = vmalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
+	pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
 				      node);
 	if (pkt_dev->flows == NULL) {
 		kfree(pkt_dev);
 		return -ENOMEM;
 	}
-	memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
 
 	pkt_dev->removal_mark = 0;
 	pkt_dev->min_pkt_size = ETH_ZLEN;

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Patch] pktgen: use vzalloc_node() instead of vmalloc_node() + memset()
  2011-05-22 10:17 [Patch] pktgen: use vzalloc_node() instead of vmalloc_node() + memset() Américo Wang
@ 2011-05-23  1:02 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2011-05-23  1:02 UTC (permalink / raw)
  To: xiyou.wangcong; +Cc: netdev

From: Américo Wang <xiyou.wangcong@gmail.com>
Date: Sun, 22 May 2011 18:17:11 +0800

> Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
> Cc: "David S. Miller" <davem@davemloft.net>

Applied.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-05-23  1:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-22 10:17 [Patch] pktgen: use vzalloc_node() instead of vmalloc_node() + memset() Américo Wang
2011-05-23  1:02 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.