svn commit: r194509 - user/kmacy/releng_7_2_fcs/sys/net

Kip Macy kmacy at FreeBSD.org
Fri Jun 19 19:59:44 UTC 2009


Author: kmacy
Date: Fri Jun 19 19:59:43 2009
New Revision: 194509
URL: http://svn.freebsd.org/changeset/base/194509

Log:
  add flag for per-packet multipath routing

Modified:
  user/kmacy/releng_7_2_fcs/sys/net/route.h

Modified: user/kmacy/releng_7_2_fcs/sys/net/route.h
==============================================================================
--- user/kmacy/releng_7_2_fcs/sys/net/route.h	Fri Jun 19 19:28:21 2009	(r194508)
+++ user/kmacy/releng_7_2_fcs/sys/net/route.h	Fri Jun 19 19:59:43 2009	(r194509)
@@ -192,7 +192,7 @@ struct ortentry {
 
 /*			0x20000		   unused, was RTF_WASCLONED */
 #define RTF_PROTO3	0x40000		/* protocol specific routing flag */
-/*			0x80000		   unused */
+#define	RTF_PPACKET	0x80000		/* per-packet load balancing */
 #define RTF_PINNED	0x100000	/* future use */
 #define	RTF_LOCAL	0x200000 	/* route represents a local address */
 #define	RTF_BROADCAST	0x400000	/* route represents a bcast address */


More information about the svn-src-user mailing list