All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ndisc: bool initializations should use true and false
@ 2013-07-13  8:26 Daniel Baluta
  2013-07-16 19:13 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Baluta @ 2013-07-13  8:26 UTC (permalink / raw)
  To: davem
  Cc: kuznet, jmorris, yoshfuji, kaber, netdev, linux-kernel, Daniel Baluta

Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com>
---
 net/ipv6/ndisc.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c
index b3b5730..24c03396 100644
--- a/net/ipv6/ndisc.c
+++ b/net/ipv6/ndisc.c
@@ -479,7 +479,7 @@ static void ndisc_send_na(struct net_device *dev, struct neighbour *neigh,
 	if (ifp) {
 		src_addr = solicited_addr;
 		if (ifp->flags & IFA_F_OPTIMISTIC)
-			override = 0;
+			override = false;
 		inc_opt |= ifp->idev->cnf.force_tllao;
 		in6_ifa_put(ifp);
 	} else {
@@ -557,7 +557,7 @@ void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh,
 	}
 
 	if (ipv6_addr_any(saddr))
-		inc_opt = 0;
+		inc_opt = false;
 	if (inc_opt)
 		optlen += ndisc_opt_addr_space(dev);
 
@@ -790,7 +790,7 @@ static void ndisc_recv_ns(struct sk_buff *skb)
 		     (is_router = pndisc_is_router(&msg->target, dev)) >= 0)) {
 			if (!(NEIGH_CB(skb)->flags & LOCALLY_ENQUEUED) &&
 			    skb->pkt_type != PACKET_HOST &&
-			    inc != 0 &&
+			    inc &&
 			    idev->nd_parms->proxy_delay != 0) {
 				/*
 				 * for anycast or proxy,
-- 
1.7.10.4


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

* Re: [PATCH] ndisc: bool initializations should use true and false
  2013-07-13  8:26 [PATCH] ndisc: bool initializations should use true and false Daniel Baluta
@ 2013-07-16 19:13 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2013-07-16 19:13 UTC (permalink / raw)
  To: dbaluta; +Cc: kuznet, jmorris, yoshfuji, kaber, netdev, linux-kernel

From: Daniel Baluta <dbaluta@ixiacom.com>
Date: Sat, 13 Jul 2013 11:26:51 +0300

> Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com>

Applied, thanks.

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

end of thread, other threads:[~2013-07-16 19:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-13  8:26 [PATCH] ndisc: bool initializations should use true and false Daniel Baluta
2013-07-16 19:13 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.