Module Name:    src
Committed By:   skrll
Date:           Mon Jul 11 07:40:58 UTC 2022

Modified Files:
        src/sys/net: if.c

Log Message:
KNF two comments.


To generate a diff of this commit:
cvs rdiff -u -r1.508 -r1.509 src/sys/net/if.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/net/if.c
diff -u src/sys/net/if.c:1.508 src/sys/net/if.c:1.509
--- src/sys/net/if.c:1.508	Mon Jul 11 07:36:56 2022
+++ src/sys/net/if.c	Mon Jul 11 07:40:58 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: if.c,v 1.508 2022/07/11 07:36:56 skrll Exp $	*/
+/*	$NetBSD: if.c,v 1.509 2022/07/11 07:40:58 skrll Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2008 The NetBSD Foundation, Inc.
@@ -90,7 +90,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.508 2022/07/11 07:36:56 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.509 2022/07/11 07:40:58 skrll Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_inet.h"
@@ -2424,7 +2424,8 @@ if_link_state_change_work(struct work *w
 	KERNEL_LOCK_UNLESS_NET_MPSAFE();
 	s = splnet();
 
-	/* Pop a link state change from the queue and process it.
+	/*
+	 * Pop a link state change from the queue and process it.
 	 * If there is nothing to process then if_detach() has been called.
 	 * We keep if_link_scheduled = true so the queue can safely drain
 	 * without more work being queued. */
@@ -3869,7 +3870,8 @@ if_flags_set(ifnet_t *ifp, const u_short
 		if (cantflags != 0)
 			ifp->if_flags ^= cantflags;
 
-                /* Traditionally, we do not call if_ioctl after
+                /*
+		 * Traditionally, we do not call if_ioctl after
                  * setting/clearing only IFF_PROMISC if the interface
                  * isn't IFF_UP.  Uphold that tradition.
 		 */

Reply via email to