Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/netinet6 Style.
details: https://anonhg.NetBSD.org/src/rev/3adefb1f1277
branches: trunk
changeset: 361929:3adefb1f1277
user: maxv <maxv%NetBSD.org@localhost>
date: Sat May 19 08:22:58 2018 +0000
description:
Style.
diffstat:
sys/netinet6/nd6_nbr.c | 7 +++----
sys/netinet6/nd6_rtr.c | 26 ++++++++++----------------
2 files changed, 13 insertions(+), 20 deletions(-)
diffs (117 lines):
diff -r 78dc856ca989 -r 3adefb1f1277 sys/netinet6/nd6_nbr.c
--- a/sys/netinet6/nd6_nbr.c Sat May 19 06:44:08 2018 +0000
+++ b/sys/netinet6/nd6_nbr.c Sat May 19 08:22:58 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: nd6_nbr.c,v 1.155 2018/05/17 12:07:48 maxv Exp $ */
+/* $NetBSD: nd6_nbr.c,v 1.156 2018/05/19 08:22:58 maxv Exp $ */
/* $KAME: nd6_nbr.c,v 1.61 2001/02/10 16:06:14 jinmei Exp $ */
/*
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nd6_nbr.c,v 1.155 2018/05/17 12:07:48 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nd6_nbr.c,v 1.156 2018/05/19 08:22:58 maxv Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -164,7 +164,6 @@
}
}
-
if (IN6_IS_ADDR_MULTICAST(&taddr6)) {
nd6log(LOG_INFO, "bad NS target (multicast)\n");
goto bad;
@@ -197,7 +196,7 @@
* Otherwise MAY be omitted
*
* In this implementation, we omit the target link-layer address
- * in the "MAY" case.
+ * in the "MAY" case.
*/
#if 0 /* too much! */
ifa = (struct ifaddr *)in6ifa_ifpwithaddr(ifp, &daddr6);
diff -r 78dc856ca989 -r 3adefb1f1277 sys/netinet6/nd6_rtr.c
--- a/sys/netinet6/nd6_rtr.c Sat May 19 06:44:08 2018 +0000
+++ b/sys/netinet6/nd6_rtr.c Sat May 19 08:22:58 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: nd6_rtr.c,v 1.142 2018/05/18 21:03:33 maxv Exp $ */
+/* $NetBSD: nd6_rtr.c,v 1.143 2018/05/19 08:22:58 maxv Exp $ */
/* $KAME: nd6_rtr.c,v 1.95 2001/02/07 08:09:47 itojun Exp $ */
/*
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nd6_rtr.c,v 1.142 2018/05/18 21:03:33 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nd6_rtr.c,v 1.143 2018/05/19 08:22:58 maxv Exp $");
#ifdef _KERNEL_OPT
#include "opt_net_mpsafe.h"
@@ -230,12 +230,6 @@
struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
struct nd_router_advert *nd_ra;
struct in6_addr saddr6 = ip6->ip6_src;
-#if 0
- struct in6_addr daddr6 = ip6->ip6_dst;
- int flags; /* = nd_ra->nd_ra_flags_reserved; */
- int is_managed = ((flags & ND_RA_FLAG_MANAGED) != 0);
- int is_other = ((flags & ND_RA_FLAG_OTHER) != 0);
-#endif
int mcast = 0;
union nd_opts ndopts;
struct nd_defrouter *dr;
@@ -248,9 +242,9 @@
ndi = ND_IFINFO(ifp);
/*
- * We only accept RAs when
- * the system-wide variable allows the acceptance, and the
- * per-interface variable allows RAs on the receiving interface.
+ * We only accept RAs when the system-wide variable allows the
+ * acceptance, and the per-interface variable allows RAs on the
+ * receiving interface.
*/
if (!nd6_accepts_rtadv(ndi))
goto freeit;
@@ -958,7 +952,7 @@
}
static int
-nd6_prelist_add(struct nd_prefixctl *prc, struct nd_defrouter *dr,
+nd6_prelist_add(struct nd_prefixctl *prc, struct nd_defrouter *dr,
struct nd_prefix **newp)
{
struct nd_prefix *newpr = NULL;
@@ -968,8 +962,8 @@
ND6_ASSERT_WLOCK();
- if (ip6_maxifprefixes >= 0) {
- if (ext->nprefixes >= ip6_maxifprefixes / 2)
+ if (ip6_maxifprefixes >= 0) {
+ if (ext->nprefixes >= ip6_maxifprefixes / 2)
purge_detached(prc->ndprc_ifp);
if (ext->nprefixes >= ip6_maxifprefixes)
return ENOMEM;
@@ -1104,7 +1098,7 @@
static int
prelist_update(struct nd_prefixctl *newprc,
struct nd_defrouter *dr, /* may be NULL */
- struct mbuf *m,
+ struct mbuf *m,
int mcast)
{
struct in6_ifaddr *ia6_match = NULL;
@@ -2024,7 +2018,7 @@
int
in6_tmpifadd(
const struct in6_ifaddr *ia0, /* corresponding public address */
- int forcegen,
+ int forcegen,
int dad_delay)
{
struct ifnet *ifp = ia0->ia_ifa.ifa_ifp;
Home |
Main Index |
Thread Index |
Old Index