* [PATCH 5/7] sctp: Convert __list_for_each use to list_for_each
@ 2013-06-18 2:26 Dave Jones
2013-06-20 6:03 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Dave Jones @ 2013-06-18 2:26 UTC (permalink / raw)
To: linux-kernel; +Cc: netdev, Andrew Morton
Signed-off-by: Dave Jones <davej@redhat.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
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-20 6:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-18 2:26 [PATCH 5/7] sctp: Convert __list_for_each use to list_for_each Dave Jones
2013-06-20 6:03 ` 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).