[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <201306180226.r5I2Qq8x010834@gelk.kernelslacker.org>
Date: Mon, 17 Jun 2013 22:26:52 -0400
From: Dave Jones <davej@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH 5/7] sctp: Convert __list_for_each use to list_for_each
Signed-off-by: Dave Jones <davej@...hat.com>
---
net/sctp/protocol.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
netdev: patches 1-4 & 6 are independant to this, and 7 won't be
merged until this one gets to Linus' tree.
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
index eaee00c..3b70b76 100644
--- a/net/sctp/protocol.c
+++ b/net/sctp/protocol.c
@@ -178,7 +178,7 @@ static void sctp_get_local_addr_list(struct net *net)
rcu_read_lock();
for_each_netdev_rcu(net, dev) {
- __list_for_each(pos, &sctp_address_families) {
+ list_for_each(pos, &sctp_address_families) {
af = list_entry(pos, struct sctp_af, list);
af->copy_addrlist(&net->sctp.local_addr_list, dev);
}
--
1.8.1.4
--
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