From owner-freebsd-current@FreeBSD.ORG Fri Oct 29 06:34:09 2010 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0D2B106564A for ; Fri, 29 Oct 2010 06:34:09 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5C5278FC14 for ; Fri, 29 Oct 2010 06:34:08 +0000 (UTC) Received: by fxm17 with SMTP id 17so2846591fxm.13 for ; Thu, 28 Oct 2010 23:34:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=WugD8D8luZb50XSS7L6xEV8GITXGx3jGJ0EZGQH4UBY=; b=XdSVSoPwJvRS3jj3kXhVksUnCBWcVPjGueU2elNAVFGF7mrocxRRVFTMI72G7ltP/J mawZahz2cyC+7a7IO8PwjTvwrpn8MnKfQ+OVROmpLLFDXmzVwU1n7kZH6ZXbVNGT+xMr f9y9NGe0xAOvs1bvLEyih71bz9tLNP+mHzKXQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=SxmILaF1DyoGUCk3nhbJll2YuEYfj3u8duRTPIlh5ZBIXTHA9HOnBCJIi/LB7ValbO OZzV2jp940MkcphlZlKRHo937CNfcy3NonVzO4Hh3rTIy7Dhm6dxHYq7w2Z7TSsT8l4W Ll7qFuplG0efkrkFyC+JxmfA1BdIy1dqKypqc= MIME-Version: 1.0 Received: by 10.239.181.66 with SMTP id l2mr1326135hbg.189.1288334046732; Thu, 28 Oct 2010 23:34:06 -0700 (PDT) Received: by 10.239.136.137 with HTTP; Thu, 28 Oct 2010 23:34:06 -0700 (PDT) In-Reply-To: <20101029055958.GA2513@current.Sisis.de> References: <20101025080705.GA33315@current.Sisis.de> <20101028063255.GA17624@current.Sisis.de> <20101029055958.GA2513@current.Sisis.de> Date: Fri, 29 Oct 2010 01:34:06 -0500 Message-ID: From: Scot Hetzel To: Matthias Apitz Content-Type: text/plain; charset=ISO-8859-1 Cc: current@freebsd.org Subject: Re: Broadcom BCM4310 USB Controller (Wifi) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2010 06:34:09 -0000 On Fri, Oct 29, 2010 at 12:59 AM, Matthias Apitz wrote: > I booted the 8-CURRENT this morning, loaded the module with kldload(8) and > wlan0 came up by its own (I did not realized this yesterday). I have in > rc.conf: > > wlans_ndis0="wlan0" > ifconfig_wlan0="WPA DHCP" > > wpa_supplicant(8) started after kldload, and associated the > interface with my AP; had to do the DHCP by hand, don't know why? > The problem is that the Broadcom NDIS driver is generating connection events, but nothing is relaying that information to the wpa_supplicant daemon. Since the wpa_supplicant daemon doesn't see a connection event, it retries connecting I had created a patch in PR 113915 which solves this problem: http://www.freebsd.org/cgi/query-pr.cgi?pr=113915 Give it a try, if it solves your problem submit a followup to the PR. Scot