Module Name:    src
Committed By:   msaitoh
Date:           Fri May 10 05:16:34 UTC 2019

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

Log Message:
 Modify comment to make the data structure clear. No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.269 -r1.270 src/sys/net/if.h

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.h
diff -u src/sys/net/if.h:1.269 src/sys/net/if.h:1.270
--- src/sys/net/if.h:1.269	Sat Mar 23 09:48:04 2019
+++ src/sys/net/if.h	Fri May 10 05:16:34 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: if.h,v 1.269 2019/03/23 09:48:04 pgoyette Exp $	*/
+/*	$NetBSD: if.h,v 1.270 2019/05/10 05:16:34 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -871,14 +871,14 @@ struct ifdatareq {
 };
 
 struct ifmediareq {
-	char	ifm_name[IFNAMSIZ];		/* if name, e.g. "en0" */
-	int	ifm_current;			/* current media options */
-	int	ifm_mask;			/* don't care mask */
-	int	ifm_status;			/* media status */
-	int	ifm_active;			/* active options */
-	int	ifm_count;			/* # entries in ifm_ulist
-						   array */
-	int	*ifm_ulist;			/* media words */
+	char	ifm_name[IFNAMSIZ];	/* if name, e.g. "en0" */
+	int	ifm_current;		/* IFMWD: current media options */
+	int	ifm_mask;		/* IFMWD: don't care mask */
+	int	ifm_status;		/* media status */
+	int	ifm_active;		/* IFMWD: active options */
+	int	ifm_count;		/* # entries in ifm_ulist
+					   array */
+	int	*ifm_ulist;		/* array of ifmedia word */
 };
 
 

Reply via email to