[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1337627015-3278-1-git-send-email-ahiliation@yahoo.co.in>
Date: Tue, 22 May 2012 00:33:35 +0530
From: Jeffrin Jose <ahiliation@...oo.co.in>
To: davem@...emloft.net, edumazet@...gle.com, loke.chetan@...il.com,
herbert@...dor.apana.org.au
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
ahiliation@...oo.co.in
Subject: [PATCH 1/4]net:ipv6:fixed a space issue relating to != operator
Fixed a space issue relating to != operator
found by checkpatch.pl tool in net/ipv6/mcast.c
Signed-off-by: Jeffrin Jose <ahiliation@...oo.co.in>
---
net/ipv6/mcast.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c
index 7dfb89f..8f7eee9 100644
--- a/net/ipv6/mcast.c
+++ b/net/ipv6/mcast.c
@@ -214,7 +214,7 @@ int ipv6_sock_mc_drop(struct sock *sk, int ifindex, const struct in6_addr *addr)
spin_lock(&ipv6_sk_mc_lock);
for (lnk = &np->ipv6_mc_list;
(mc_lst = rcu_dereference_protected(*lnk,
- lockdep_is_held(&ipv6_sk_mc_lock))) !=NULL ;
+ lockdep_is_held(&ipv6_sk_mc_lock))) != NULL ;
lnk = &mc_lst->next) {
if ((ifindex == 0 || mc_lst->ifindex == ifindex) &&
ipv6_addr_equal(&mc_lst->addr, addr)) {
--
1.7.10
--
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