From nobody Tue Oct 5 15:35:54 2021 X-Original-To: wireless@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id D776812BC1E6 for ; Tue, 5 Oct 2021 15:35:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HP1rV5Y1bz3L7b for ; Tue, 5 Oct 2021 15:35:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E5067265 for ; Tue, 5 Oct 2021 15:35:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 195FZs4T054539 for ; Tue, 5 Oct 2021 15:35:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 195FZsId054538 for wireless@FreeBSD.org; Tue, 5 Oct 2021 15:35:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: wireless@FreeBSD.org Subject: [Bug 258948] [net80211] AP + STA configuration can lead to the AP VAP stopping traffic after STA scan Date: Tue, 05 Oct 2021 15:35:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: wireless X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: adrian@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: wireless@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Discussions List-Archive: https://lists.freebsd.org/archives/freebsd-wireless List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-wireless@freebsd.org X-BeenThere: freebsd-wireless@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D258948 Bug ID: 258948 Summary: [net80211] AP + STA configuration can lead to the AP VAP stopping traffic after STA scan Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: wireless Assignee: wireless@FreeBSD.org Reporter: adrian@freebsd.org Here's a fun very hilarious corner case when you start using STA + AP configurations. My test setup: * An AR9380 radio with a STA VAP (DWDS child / upstream facing) and AP VAP * A second AR9380 radio with AP VAPs with DWDS parent / downstream facing configured * bridging between them all When the STA VAP decides that it needs to scan to find a new AP, sometimes = the AP will stop traffic / 802.1x negotiation, even after the STA VAP finishes scanning and reassociates. After like a year of narrowing things down, I've finally figured out what's going on: * there are STA beacon miss events, which lead net80211/wpa_supplicant to m= ove from RUN to SCAN state * this calls markwaiting(), which will mark all the other VAPs as waiting * this calls vap->iv_newstate(vap, INIT, ...) to set the state to INIT for = each other VAP on the radio * Then some packet is transmitted on the AP VAP via ieee80211_vap_transmit(= ), and since it's not in the RUN state, the OACTIVE flag is set on vap->iv_ifp * .. time passes .. * Finally, the STA VAP transitions through its states to eventually hit RUN * .. which will call wakeupwaiting() * .. which iterates over all the VAPs again and calls vap->iv_newstate(vap, RUN, ...) .. now at this point, the VAP specific mode newstate code and the driver specific newstate code is running, but! Note! These codepaths aren't going = via the ieee80211_new_state() / ieee80211_new_state_locked(), and the only path that clears OACTIVE is in here. * Then eventually a call to ieee80211_new_state*() is done for the AP VAP, setting the state to RUN * However! The deferred taskqueue (ieee80211_new_state_cb()) code sees a st= ate going RUN->RUN, rather than RUN->INIT->RUN, thus it does NOT clear OACTIVE. This is why associations worked fine, but the raw BPF sends did not - ieee80211_output() (used by BPF) checks OACTIVE flag and just drops the packets. The real eventual fix is removing OACTIVE, but this does require a pass thr= ough all the wifi drivers to make sure none of them are using OACTIVE anymore. The temporary fix is just to clear the OACTIVE flag in ieee80211_new_state_= cb() if the state is RUN, even if it's RUN->RUN. --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Fri Oct 8 11:28:21 2021 X-Original-To: wireless@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 413B317F2193 for ; Fri, 8 Oct 2021 11:28:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HQmCT19FWz3kQP for ; Fri, 8 Oct 2021 11:28:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 07F63261AC for ; Fri, 8 Oct 2021 11:28:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 198BSKKG094085 for ; Fri, 8 Oct 2021 11:28:20 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 198BSKrT094084 for wireless@FreeBSD.org; Fri, 8 Oct 2021 11:28:20 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: wireless@FreeBSD.org Subject: [Bug 259003] "ifconfig list scan" can terminate early, before scan ends Date: Fri, 08 Oct 2021 11:28:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: wireless X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bsdpr@phoe.frmug.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: wireless@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Discussions List-Archive: https://lists.freebsd.org/archives/freebsd-wireless List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-wireless@freebsd.org X-BeenThere: freebsd-wireless@freebsd.org MIME-Version: 1.0 X-Spam: Yes X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D259003 Bug ID: 259003 Summary: "ifconfig list scan" can terminate early, before scan ends Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: wireless Assignee: wireless@FreeBSD.org Reporter: bsdpr@phoe.frmug.org On hosts equipped with more than one Wi-Fi interfaces it is possible that=20 "ifconfig list scan" does not wait for the actual completion of the scan and attempt to display incomplete results. In scan_and_wait() (located in ifieee80211.c), the reception of a RTM_IEEE80211_SCAN message is awaited. This loop can terminate early because the interface this message is related to is not checked. I recommend to change } while (rtm->rtm_type !=3D RTM_IEEE80211 || ifan->ifan_what !=3D RTM_IEEE80211_SCAN); to } while (rtm->rtm_type !=3D RTM_IEEE80211 || strcmp(ifan->ifan_name, name)!=3D0 || ifan->ifan_what !=3D RTM_IEEE80211_SCAN); This bug is present from 11 (at least) to current. --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Fri Oct 8 17:11:10 2021 X-Original-To: freebsd-wireless@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 1B5EC12D748A for ; Fri, 8 Oct 2021 13:11:23 +0000 (UTC) (envelope-from creatxr@gmail.com) Received: from mail-ot1-x32d.google.com (mail-ot1-x32d.google.com [IPv6:2607:f8b0:4864:20::32d]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HQpVK5yMdz4ST5 for ; Fri, 8 Oct 2021 13:11:21 +0000 (UTC) (envelope-from creatxr@gmail.com) Received: by mail-ot1-x32d.google.com with SMTP id x33-20020a9d37a4000000b0054733a85462so11570579otb.10 for ; Fri, 08 Oct 2021 06:11:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=FTvwQS0Q0bP3+qWBUT9taOfUnzjDfBsds3VSLuAVdLc=; b=OLw9ZPKzRKA68w6R+w1qb+ecyUUvA5r8B4BMa91hWYfyXAf25IcrXPnFGmVkefjNMn u8zBs1JtAJv3BxWbW/XxsFnM7rIIzuzloU8vrRN2T+SQBUor4xncZ/YjKycPCMFrbngi 7kTguYl99wTgpxObr6HyWcZD8kEy/6ujw1gYLKpYV+LXbzVB8HZ97TfXqFbxJrOoZTiJ 0Np2q2wFOQ+zGVrD2qOzKXlI+hLDNjM9gVrqFZZQqytxu7Hot1mdmBRarvf9SSMQLTjy T3Ziu/q1kXxr0VYx4jwD0t2j8BiV9l3lVbf3YVx4ogKNlG96DxWj2iCH+0HOY1rb39IV AMYw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=FTvwQS0Q0bP3+qWBUT9taOfUnzjDfBsds3VSLuAVdLc=; b=Z+mSM6je963qEYSfhMtFQV43TFnN2kE0LY0BKxciU+ENWRpc/ZOSZZCNsuw1CrvrT7 k2wuVUFAoOZbM5zJXqWttrNjw2oDDMJPP2WIjDZWCNbocjs29/3VkqXd3J1LXM7G1fFX tiuaWIyO66yg0//7aIvx6vRUhZDIkPY8VDaVoMH5b0Wm8XU8/Qf7WtXd4h+iH8k0flrL 9HMAwvY5f/GaetefzCtRJkvtKu+tbRK2P/7ZIrQjZdFpkujR4b1XF3W+tqeC/bElc+Fc O3tIHnydfxWPyDg6j6277e6iV4RiquBRN/2ov9wf6xj7Zg32WpXDu6mZzh/lnnJMMKR3 GyqA== X-Gm-Message-State: AOAM532XPRmKTlWio3aezPAMPKYz+C7UEZFj8cWu6yPgkQnAylZc5rLe cbyvIUU+hGzC2LdJbzmK8LH3Iut8194ba2GrEmjqSyj4UZs= X-Google-Smtp-Source: ABdhPJwO92kest8NR5+rtASIMhSHZBFW61TJVG8D+KIFJXBsepkg0DtI5bsfvCLYMgnLr8X2ccr1Hq54D6TIXKixJc4= X-Received: by 2002:a05:6830:3101:: with SMTP id b1mr9064336ots.21.1633698681068; Fri, 08 Oct 2021 06:11:21 -0700 (PDT) List-Id: Discussions List-Archive: https://lists.freebsd.org/archives/freebsd-wireless List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-wireless@freebsd.org X-BeenThere: freebsd-wireless@freebsd.org MIME-Version: 1.0 From: Creatxr Date: Fri, 8 Oct 2021 13:11:10 -0400 Message-ID: Subject: freebsd wfi setup To: freebsd-wireless@freebsd.org Content-Type: multipart/alternative; boundary="0000000000008e20c205cdd71d03" X-Rspamd-Queue-Id: 4HQpVK5yMdz4ST5 X-Spamd-Bar: / Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20210112 header.b=OLw9ZPKz; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of creatxr@gmail.com designates 2607:f8b0:4864:20::32d as permitted sender) smtp.mailfrom=creatxr@gmail.com X-Spamd-Result: default: False [0.00 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.997]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20210112]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36:c]; FREEMAIL_FROM(0.00)[gmail.com]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-wireless@freebsd.org]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DATE_IN_FUTURE(4.00)[3]; MID_RHS_MATCH_FROMTLD(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; RCVD_IN_DNSWL_NONE(0.00)[2607:f8b0:4864:20::32d:from]; NEURAL_HAM_SHORT(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com:dkim] X-Spam: Yes X-ThisMailContainsUnwantedMimeParts: N --0000000000008e20c205cdd71d03 Content-Type: text/plain; charset="UTF-8" hi, i 've trouble to setup wifi. it can't find the wireless card. it's a new install of freebsd 13. i've installed the ports : /usr/ports/net/bwi-firmware-kmod/ /usr/ports/net/bwn-firmware-kmod/ with command "ifconfig" or "sysctl net.wlan.devices", it doesn't list wireless cards. with command "pciconf -lv", the card is : none1@pci0:3:0:0: class=0x028000 rev=0x01 hdr=0x00 vendor=0x14e4 device=0x4365 subvendor=0x11ad subdevice=0x6605 vendor = 'Broadcom Inc. and subsidiaries' device = 'BCM43142 802.11b/g/n' class = network in /etc/rc.conf kld_list="linux nvidia nvidia-modeset if_ath if_bwi siba_bwn if_bwn bwn_v4_ucode bwn_v4_lp_ucode bwn_v4_n_ucode if_wi wlan_wep wlan_ccmp wlan_tkip" ### i've tried the three line below, it doesn't work. #wlans_ath0="wlan0" wlans_bwn0="wlan0" #wlans_bwi0="wlan0" ifconfig_wlan0="WPA SYNCDHCP" can't load : siba_bwn (the message is : no such file or directory) if_wi wlan_wep wlan_ccmp wlan_tkip (the message is : unable to load kernel module) with command kldstat: Id Refs Address Size Name 1 144 0xffffffff80200000 1f11f28 kernel 2 3 0xffffffff82718000 388f8 linux.ko 3 4 0xffffffff82751000 db70 linux_common.ko 4 2 0xffffffff82800000 1e8a5a8 nvidia.ko 5 1 0xffffffff8468b000 10c310 nvidia-modeset.ko 6 1 0xffffffff8275f000 2290 if_ath.ko 7 1 0xffffffff82762000 7b10 ath_hal_ar5210.ko 8 1 0xffffffff8276a000 b440 ath_hal_ar5211.ko 9 2 0xffffffff82776000 1eb30 ath_hal_ar5212.ko 10 1 0xffffffff82795000 2d2f0 ath_hal_ar5416.ko 11 1 0xffffffff84798000 4a2e8 ath_hal_ar9300.ko 12 1 0xffffffff827c3000 4108 ath_rate.ko 13 1 0xffffffff827c8000 2108 ath_dfs.ko 14 1 0xffffffff827cb000 1b198 if_bwi.ko 15 1 0xffffffff847e3000 34ee8 if_bwn.ko 16 14 0xffffffff84818000 38040 bhnd.ko 17 2 0xffffffff827e7000 65d0 gpiobus.ko 18 4 0xffffffff827ee000 b240 bhndb.ko 19 1 0xffffffff827fa000 5540 bhndb_pci.ko 20 1 0xffffffff84851000 22f8 bhnd_pci_hostb.ko 21 2 0xffffffff84854000 3244 bhnd_pci.ko 22 1 0xffffffff84858000 21a8 bcma_bhndb.ko 23 1 0xffffffff8485b000 50c8 bcma.ko 24 1 0xffffffff84861000 2354 siba_bhndb.ko 25 1 0xffffffff84864000 60c8 siba.ko 26 1 0xffffffff8486b000 2aa20 bwn_v4_ucode.ko 27 1 0xffffffff84896000 2c318 bwn_v4_lp_ucode.ko 28 1 0xffffffff848c3000 d210 bwn_v4_n_ucode.ko 29 1 0xffffffff848d1000 3378 acpi_wmi.ko 30 1 0xffffffff848d5000 3250 ichsmb.ko 31 1 0xffffffff848d9000 2180 smbus.ko 32 1 0xffffffff848dc000 2340 uhid.ko 33 1 0xffffffff848df000 4350 ums.ko 34 1 0xffffffff848e4000 3380 usbhid.ko 35 1 0xffffffff848e8000 31f8 hidbus.ko 36 1 0xffffffff848ec000 3320 wmt.ko 37 1 0xffffffff848f0000 4b60 ng_ubt.ko 38 6 0xffffffff848f5000 aac8 netgraph.ko 39 2 0xffffffff84900000 a238 ng_hci.ko 40 3 0xffffffff8490b000 25a8 ng_bluetooth.ko 41 1 0xffffffff8490e000 e250 ng_l2cap.ko 42 1 0xffffffff8491d000 1ce48 ng_btsocket.ko 43 1 0xffffffff8493a000 3980 ng_socket.ko 44 1 0xffffffff8493e000 30ac8 linux64.ko 45 1 0xffffffff8496f000 2260 pty.ko thanks --0000000000008e20c205cdd71d03-- From nobody Fri Oct 8 13:35:02 2021 X-Original-To: freebsd-wireless@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 06C4D12D8DBE for ; Fri, 8 Oct 2021 13:35:14 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mx1.sbone.de (mx1.sbone.de [IPv6:2a01:4f8:13b:39f::9f:25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.sbone.de", Issuer "SBone.DE" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HQq1s5wRLz4TMd for ; Fri, 8 Oct 2021 13:35:13 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id CE7428D4A212; Fri, 8 Oct 2021 13:35:04 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id A36DBE707D2; Fri, 8 Oct 2021 13:35:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id w5ud6UUPcKXJ; Fri, 8 Oct 2021 13:35:02 +0000 (UTC) Received: from nv.sbone.de (nv.sbone.de [IPv6:fde9:577b:c1a9:31::2013:138]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 61921E707D1; Fri, 8 Oct 2021 13:35:02 +0000 (UTC) Date: Fri, 8 Oct 2021 13:35:02 +0000 (UTC) From: "Bjoern A. Zeeb" To: Creatxr cc: freebsd-wireless@freebsd.org Subject: Re: freebsd wfi setup In-Reply-To: Message-ID: References: X-OpenPGP-Key-Id: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 List-Id: Discussions List-Archive: https://lists.freebsd.org/archives/freebsd-wireless List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-wireless@freebsd.org X-BeenThere: freebsd-wireless@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Rspamd-Queue-Id: 4HQq1s5wRLz4TMd X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-ThisMailContainsUnwantedMimeParts: N On Fri, 8 Oct 2021, Creatxr wrote: > none1@pci0:3:0:0: class=0x028000 rev=0x01 hdr=0x00 vendor=0x14e4 > device=0x4365 subvendor=0x11ad subdevice=0x6605 > vendor = 'Broadcom Inc. and subsidiaries' > device = 'BCM43142 802.11b/g/n' > class = network If I am not mistaken, device=0x4365 means it is an fmac device and not smac (bwn). FreeBSD does not (yet) have a driver supporting this. /bz -- Bjoern A. Zeeb r15:7 From nobody Sun Oct 10 21:00:42 2021 X-Original-To: wireless@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 9AFDE17E434E for ; Sun, 10 Oct 2021 21:00:44 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HSDpz1mHQz4lXs for ; Sun, 10 Oct 2021 21:00:43 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1362914956 for ; Sun, 10 Oct 2021 21:00:43 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 19AL0gAv052518 for ; Sun, 10 Oct 2021 21:00:42 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 19AL0gN9052516 for wireless@FreeBSD.org; Sun, 10 Oct 2021 21:00:42 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <202110102100.19AL0gN9052516@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: wireless@FreeBSD.org Subject: Problem reports for wireless@FreeBSD.org that need special attention Date: Sun, 10 Oct 2021 21:00:42 +0000 List-Id: Discussions List-Archive: https://lists.freebsd.org/archives/freebsd-wireless List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-wireless@freebsd.org X-BeenThere: freebsd-wireless@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="163389964214.BCC7.51299" Content-Transfer-Encoding: 7bit X-ThisMailContainsUnwantedMimeParts: N --163389964214.BCC7.51299 Date: Sun, 10 Oct 2021 21:00:42 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- New | 237921 | wpi: Memory leak in function wpi_free_tx_ring of Open | 236918 | Crash: in iwn_ampdu_tx_stop (or ieee80211_ht_node Open | 238636 | ath: Fix kernel addresses printed in if_ath_sysct Open | 240776 | iwm: Can't find wifi networks after short time si 4 problems total for which you should take action. --163389964214.BCC7.51299--