From owner-cvs-src@FreeBSD.ORG Mon Jun 26 03:43:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 876F416A7D0; Mon, 26 Jun 2006 03:43:36 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A67B43DF4; Mon, 26 Jun 2006 03:10:46 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k5Q3AkSS003195; Mon, 26 Jun 2006 03:10:46 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5Q3Aka1003194; Mon, 26 Jun 2006 03:10:46 GMT (envelope-from sam) Message-Id: <200606260310.k5Q3Aka1003194@repoman.freebsd.org> From: Sam Leffler Date: Mon, 26 Jun 2006 03:10:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ath if_ath.c if_athvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 03:43:36 -0000 sam 2006-06-26 03:10:46 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c if_athvar.h Log: Close race in handling mcast traffic when operating as an ap with stations in power save: add a new q where mcast frames are stashed and on beacon update (at DTIM) move frames from the mcast q to the cabq and start it. This ensures the cabq is only manipulated in one place. Sponsored by: Hobnob MFC after: 2 weeks Revision Changes Path 1.148 +102 -38 src/sys/dev/ath/if_ath.c 1.50 +2 -1 src/sys/dev/ath/if_athvar.h