Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Jul 2010 08:58:50 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r210051 - user/adrian/if_ath_devel/sys/dev/ath
Message-ID:  <201007140858.o6E8worA013710@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



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