Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jul 2007 14:44:27 GMT
From:      Marko Zec <zec@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 123689 for review
Message-ID:  <200707181444.l6IEiRoV018239@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=123689

Change 123689 by zec@zec_tca51 on 2007/07/18 14:43:45

	net_detach_domain() is not needed in nooptions VIMAGE kernels.

Affected files ...

.. //depot/projects/vimage/src/sys/kern/uipc_domain.c#5 edit

Differences ...

==== //depot/projects/vimage/src/sys/kern/uipc_domain.c#5 (text+ko) ====

@@ -68,7 +68,9 @@
     NULL)
 
 static int net_init_domain(void *);
+#ifdef VIMAGE
 static int net_detach_domain(void *);
+#endif
 
 static struct callout pffast_callout;
 static struct callout pfslow_callout;
@@ -165,6 +167,7 @@
 	return 0;
 }
 
+#ifdef VIMAGE
 /*
  * Detach / free a domain instance.
  */
@@ -184,6 +187,7 @@
 
 	return 0;
 }
+#endif
 
 /*
  * Add a new protocol domain to the list of supported domains



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