netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] openvswitch: Fix multipart datapath dumps.
@ 2012-01-17 23:33 Jesse Gross
  2012-01-18  4:56 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Jesse Gross @ 2012-01-17 23:33 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, Ben Pfaff, Paul Ingram

From: Ben Pfaff <blp@nicira.com>

The logic to split up the list of datapaths into multiple Netlink messages
was simply wrong, causing the list to be terminated after the first part.
Only about the first 50 datapaths would be dumped.  This fixes the
problem.

Reported-by: Paul Ingram <paul@nicira.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
---
 net/openvswitch/datapath.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c
index d9d01cb..ce64c18 100644
--- a/net/openvswitch/datapath.c
+++ b/net/openvswitch/datapath.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007-2011 Nicira Networks.
+ * Copyright (c) 2007-2012 Nicira Networks.
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public
@@ -1396,9 +1396,8 @@ static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
 	int i = 0;
 
 	list_for_each_entry(dp, &dps, list_node) {
-		if (i < skip)
-			continue;
-		if (ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).pid,
+		if (i >= skip &&
+		    ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).pid,
 					 cb->nlh->nlmsg_seq, NLM_F_MULTI,
 					 OVS_DP_CMD_NEW) < 0)
 			break;
-- 
1.7.5.4

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

* Re: [PATCH net] openvswitch: Fix multipart datapath dumps.
  2012-01-17 23:33 [PATCH net] openvswitch: Fix multipart datapath dumps Jesse Gross
@ 2012-01-18  4:56 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2012-01-18  4:56 UTC (permalink / raw)
  To: jesse; +Cc: netdev, blp, paul

From: Jesse Gross <jesse@nicira.com>
Date: Tue, 17 Jan 2012 15:33:39 -0800

> From: Ben Pfaff <blp@nicira.com>
> 
> The logic to split up the list of datapaths into multiple Netlink messages
> was simply wrong, causing the list to be terminated after the first part.
> Only about the first 50 datapaths would be dumped.  This fixes the
> problem.
> 
> Reported-by: Paul Ingram <paul@nicira.com>
> Signed-off-by: Ben Pfaff <blp@nicira.com>
> Signed-off-by: Jesse Gross <jesse@nicira.com>

Applied.

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

end of thread, other threads:[~2012-01-18  4:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-17 23:33 [PATCH net] openvswitch: Fix multipart datapath dumps Jesse Gross
2012-01-18  4:56 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).