svn commit: r207327 - head/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Wed Apr 28 14:59:05 UTC 2010


Author: rpaulo
Date: Wed Apr 28 14:59:05 2010
New Revision: 207327
URL: http://svn.freebsd.org/changeset/base/207327

Log:
  Add a private field to struct ieee80211_rx_ampdu do hold driver specific
  data.
  
  Sponsored by:	iXsystems, inc

Modified:
  head/sys/net80211/ieee80211_ht.h

Modified: head/sys/net80211/ieee80211_ht.h
==============================================================================
--- head/sys/net80211/ieee80211_ht.h	Wed Apr 28 13:42:13 2010	(r207326)
+++ head/sys/net80211/ieee80211_ht.h	Wed Apr 28 14:59:05 2010	(r207327)
@@ -142,6 +142,7 @@ struct ieee80211_rx_ampdu {
 	int		rxa_age;	/* age of oldest frame in window */
 	int		rxa_nframes;	/* frames since ADDBA */
 	struct mbuf *rxa_m[IEEE80211_AGGR_BAWMAX];
+	void		*rxa_private;
 	uint64_t	rxa_pad[4];
 };
 


More information about the svn-src-all mailing list