svn commit: r210051 - user/adrian/if_ath_devel/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Wed Jul 14 08:58:50 UTC 2010


Author: adrian
Date: Wed Jul 14 08:58:50 2010
New Revision: 210051
URL: http://svn.freebsd.org/changeset/base/210051

Log:
  Fix the padding to be correct. The last commit here assumed the padding
  array was in bytes, rather than int32's.

Modified:
  user/adrian/if_ath_devel/sys/dev/ath/if_athioctl.h

Modified: user/adrian/if_ath_devel/sys/dev/ath/if_athioctl.h
==============================================================================
--- user/adrian/if_ath_devel/sys/dev/ath/if_athioctl.h	Wed Jul 14 08:54:07 2010	(r210050)
+++ user/adrian/if_ath_devel/sys/dev/ath/if_athioctl.h	Wed Jul 14 08:58:50 2010	(r210051)
@@ -119,7 +119,7 @@ struct ath_stats {
 	u_int32_t	ast_tx_raw_fail;/* raw tx failed 'cuz h/w down */
 	u_int32_t	ast_tx_nofrag;	/* tx dropped 'cuz no ath frag buffer */
 	u_int32_t	ast_be_missed;	/* missed beacons */
-	u_int32_t	ast_pad[10];
+	u_int32_t	ast_pad[13];
 };
 
 #define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)


More information about the svn-src-user mailing list