Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Jan 2015 07:35:31 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r277110 - projects/ifnet/sys/net
Message-ID:  <201501130735.t0D7ZVWG034905@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glebius
Date: Tue Jan 13 07:35:30 2015
New Revision: 277110
URL: https://svnweb.freebsd.org/changeset/base/277110

Log:
  Partial revert of r277068: a normal driver shouldn't be interested in its if_index.

Modified:
  projects/ifnet/sys/net/if.c
  projects/ifnet/sys/net/if.h

Modified: projects/ifnet/sys/net/if.c
==============================================================================
--- projects/ifnet/sys/net/if.c	Tue Jan 13 07:17:50 2015	(r277109)
+++ projects/ifnet/sys/net/if.c	Tue Jan 13 07:35:30 2015	(r277110)
@@ -1494,23 +1494,18 @@ if_rtdel(struct radix_node *rn, void *ar
  * Managing different integer values and bitmasks of an ifnet.
  */
 static void
-if_getfeature(if_t ifp, ift_feature f, uint64_t **f64, void **ptr,
-    uint32_t **f32, uint16_t **f16)
+if_getfeature(if_t ifp, ift_feature f, uint32_t **f32, uint64_t **f64,
+    void **ptr)
 {
 
+	if (f32)
+		*f32 = NULL;
 	if (f64)
 		*f64 = NULL;
 	if (ptr)
 		*ptr = NULL;
-	if (f32)
-		*f32 = NULL;
-	if (f16)
-		*f16 = NULL;
 
 	switch (f) {
-	case IF_INDEX:
-		*f16 = &ifp->if_index;
-		break;
 	case IF_FLAGS:
 		*f32 = &ifp->if_flags;
 		break;
@@ -1589,7 +1584,7 @@ if_set(if_t ifp, ift_feature f, uint64_t
 	uint64_t *f64;
 	uint32_t *f32;
 
-	if_getfeature(ifp, f, &f64, NULL, &f32, NULL);
+	if_getfeature(ifp, f, &f32, &f64, NULL);
 	KASSERT(f32 != NULL || f64 != NULL, ("%s: no feature %d", __func__, f));
 	if (f32 != NULL) {
 		KASSERT(set <= UINT32_MAX,
@@ -1608,7 +1603,7 @@ if_flagbits(if_t ifp, ift_feature f, uin
 	uint64_t *f64, rv, old;
 	uint32_t *f32;
 
-	if_getfeature(ifp, f, &f64, NULL, &f32, NULL);
+	if_getfeature(ifp, f, &f32, &f64, NULL);
 	if (f32 != NULL) {
 		KASSERT(set <= UINT32_MAX,
 		    ("%s: value of 0x%jx for feature %d",
@@ -1643,17 +1638,14 @@ if_get(if_t ifp, ift_feature f)
 {
 	uint64_t *f64;
 	uint32_t *f32;
-	uint16_t *f16;
 
-	if_getfeature(ifp, f, &f64, NULL, &f32, &f16);
-	KASSERT(f16 != NULL || f32 != NULL || f64 != NULL,
+	if_getfeature(ifp, f, &f32, &f64, NULL);
+	KASSERT(f32 != NULL || f64 != NULL,
 	    ("%s: no feature %d", __func__, f));
 	if (f64 != NULL)
 		return (*f64);
 	if (f32 != NULL)
 		return (*f32);
-	if (f16 != NULL)
-		return (*f16);
 
 	return (EDOOFUS);
 }
@@ -1663,7 +1655,7 @@ if_getsoftc(if_t ifp, ift_feature f)
 {
 	void *ptr;
 
-	if_getfeature(ifp, f, NULL, &ptr, NULL, NULL);
+	if_getfeature(ifp, f, NULL, NULL, &ptr);
 	return (ptr);
 }
 

Modified: projects/ifnet/sys/net/if.h
==============================================================================
--- projects/ifnet/sys/net/if.h	Tue Jan 13 07:17:50 2015	(r277109)
+++ projects/ifnet/sys/net/if.h	Tue Jan 13 07:35:30 2015	(r277110)
@@ -568,8 +568,6 @@ typedef enum {
 } ift_counter;
 
 typedef enum {
-	/* uint16_t */
-	IF_INDEX,
 	/* uint32_t */
 	IF_FLAGS,
 	IF_CAPABILITIES,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501130735.t0D7ZVWG034905>