PERFORCE change 186333 for review

Aman Jassal aman at FreeBSD.org
Sat Nov 27 15:05:11 UTC 2010


http://p4web.freebsd.org/@@186333?ac=10

Change 186333 by aman at src on 2010/11/27 15:04:47

	Fixing struct rttable_perfib_data, size of struct sockaddr_storage is actually
	1024 bits so fixing the number of bits to pad the structure so that is has
	a power-2 size.
	Submitted by:	aman	

Affected files ...

.. //depot/projects/soc2009/pgj_libstat/src/sys/net/route.h#7 edit

Differences ...

==== //depot/projects/soc2009/pgj_libstat/src/sys/net/route.h#7 (text+ko) ====

@@ -345,7 +345,7 @@
 	char		rpd_interface_name[RID_MAX_NAME];
 	uint64_t	rpd_expire;
 	uint32_t	rpd_mtu;
-	uint8_t		_rpid_pad[16];
+	uint32_t	_rpd_pad[15];
 };
 
 /*


More information about the p4-projects mailing list