[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1337627101-3386-1-git-send-email-ahiliation@yahoo.co.in>
Date: Tue, 22 May 2012 00:35:01 +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 4/4]net:ipv6:fixed space issues relating to >= and !=
Fixed space issues related to >= and != operators
in net/ipv6/mcast.c found by cheackpatch.pl tool
Signed-off-by: Jeffrin Jose <ahiliation@...oo.co.in>
---
net/ipv6/mcast.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c
index 541893d..9de31b3 100644
--- a/net/ipv6/mcast.c
+++ b/net/ipv6/mcast.c
@@ -427,7 +427,7 @@ int ip6_mc_source(int add, int omode, struct sock *sk,
}
if (rv == 0) /* address already there is an error */
goto done;
- for (j = psl->sl_count-1; j>=i; j--)
+ for (j = psl->sl_count-1; j >= i; j--)
psl->sl_addr[j+1] = psl->sl_addr[j];
psl->sl_addr[i] = *source;
psl->sl_count++;
@@ -987,7 +987,7 @@ int ipv6_chk_mcast_addr(struct net_device *dev, const struct in6_addr *group,
psf->sf_count[MCAST_EXCLUDE] !=
mc->mca_sfcount[MCAST_EXCLUDE];
else
- rv = mc->mca_sfcount[MCAST_EXCLUDE] !=0;
+ rv = mc->mca_sfcount[MCAST_EXCLUDE] != 0;
spin_unlock_bh(&mc->mca_lock);
} else
rv = 1; /* don't filter unspecified source */
--
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