svn commit: r191686 - projects/pnet/sys/net

Robert Watson rwatson at FreeBSD.org
Thu Apr 30 12:18:47 UTC 2009


Author: rwatson
Date: Thu Apr 30 12:18:46 2009
New Revision: 191686
URL: http://svn.freebsd.org/changeset/base/191686

Log:
  Add NETISR protocol constant for ethernet input, in order to allow the
  ethernet input path to be scheduled in a deferred context.

Modified:
  projects/pnet/sys/net/netisr.h

Modified: projects/pnet/sys/net/netisr.h
==============================================================================
--- projects/pnet/sys/net/netisr.h	Thu Apr 30 12:16:15 2009	(r191685)
+++ projects/pnet/sys/net/netisr.h	Thu Apr 30 12:18:46 2009	(r191686)
@@ -53,6 +53,7 @@
 #define	NETISR_ATALK1	17		/* Appletalk phase 1 */
 #define	NETISR_ARP	18		/* same as AF_LINK */
 #define	NETISR_IPX	23		/* same as AF_IPX */
+#define	NETISR_ETHER	24		/* ethernet input */
 #define	NETISR_USB	25		/* USB soft interrupt */
 #define	NETISR_PPP	26		/* PPP soft interrupt */
 #define	NETISR_IPV6	27


More information about the svn-src-projects mailing list