From owner-cvs-src@FreeBSD.ORG  Mon Sep 15 12:41:55 2003
Return-Path: <owner-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 D9B5516A4BF; Mon, 15 Sep 2003 12:41:55 -0700 (PDT)
Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP
	id 5E67E43FDF; Mon, 15 Sep 2003 12:41:55 -0700 (PDT)
	(envelope-from sam@FreeBSD.org)
Received: from repoman.freebsd.org (localhost [127.0.0.1])
	by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h8FJft0U071049;
	Mon, 15 Sep 2003 12:41:55 -0700 (PDT)
	(envelope-from sam@repoman.freebsd.org)
Received: (from sam@localhost)
	by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h8FJfs9u071048;
	Mon, 15 Sep 2003 12:41:54 -0700 (PDT)
Message-Id: <200309151941.h8FJfs9u071048@repoman.freebsd.org>
From: Sam Leffler <sam@FreeBSD.org>
Date: Mon, 15 Sep 2003 12:41:54 -0700 (PDT)
To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org,
	cvs-all@FreeBSD.org
X-FreeBSD-CVS-Branch: HEAD
Subject: cvs commit: src/sys/dev/ath if_ath.c
X-BeenThere: cvs-src@freebsd.org
X-Mailman-Version: 2.1.1
Precedence: list
List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/cvs-src>
List-Post: <mailto:cvs-src@freebsd.org>
List-Help: <mailto:cvs-src-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>,
	<mailto:cvs-src-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 15 Sep 2003 19:41:56 -0000

sam         2003/09/15 12:41:54 PDT

  FreeBSD src repository

  Modified files:
    sys/dev/ath          if_ath.c 
  Log:
  o do not filter received frames based on type or length; pass 'em all up
    to the 802.11 layer if they are at least IEEE80211_MIN_LEN
  o mask off interrupt status bits that we don't care about so we don't do
    the wrong thing; this fixes a problem where the beacon miss interrupt status
    bit is delivered together with other status bits when operating in monitor
    mode (we would post a beacon miss swi and then do the wrong thing)
  
  Revision  Changes    Path
  1.17      +3 -13     src/sys/dev/ath/if_ath.c