svn commit: r225128 - user/adrian/if_ath_tx/sys/dev/ath
Adrian Chadd
adrian at FreeBSD.org
Wed Aug 24 04:42:32 UTC 2011
Author: adrian
Date: Wed Aug 24 04:42:31 2011
New Revision: 225128
URL: http://svn.freebsd.org/changeset/base/225128
Log:
Clear the ATH_BUF_BUSY flag on cloned buffers.
Modified:
user/adrian/if_ath_tx/sys/dev/ath/if_ath.c
Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c
==============================================================================
--- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Wed Aug 24 04:06:21 2011 (r225127)
+++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Wed Aug 24 04:42:31 2011 (r225128)
@@ -1925,7 +1925,7 @@ ath_buf_clone(struct ath_softc *sc, cons
tbf->bf_next = bf->bf_next;
tbf->bf_nseg = bf->bf_nseg;
tbf->bf_txflags = bf->bf_txflags;
- tbf->bf_flags = bf->bf_flags;
+ tbf->bf_flags = bf->bf_flags & ~ATH_BUF_BUSY;
tbf->bf_status = bf->bf_status;
tbf->bf_m = bf->bf_m;
tbf->bf_node = bf->bf_node;
More information about the svn-src-user
mailing list