From owner-freebsd-wireless@freebsd.org Sun Aug 6 02:44:07 2017 Return-Path: Delivered-To: freebsd-wireless@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8856DD9AAB for ; Sun, 6 Aug 2017 02:44:07 +0000 (UTC) (envelope-from khanzf@gmail.com) Received: from mail-pg0-x244.google.com (mail-pg0-x244.google.com [IPv6:2607:f8b0:400e:c05::244]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AD00D6CCDC for ; Sun, 6 Aug 2017 02:44:07 +0000 (UTC) (envelope-from khanzf@gmail.com) Received: by mail-pg0-x244.google.com with SMTP id u185so5496331pgb.0 for ; Sat, 05 Aug 2017 19:44:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=9OXSU49Hmqg4knPDwU7qj1i+hGWUHa2AZ3REN/N7UE0=; b=DwIKjPs2CVmzp3kw6ZaebolQCWfG9qex1rj8y23wm8VSUU1xvUwsIQBWgdhsnBB7ln gjnZPioSvE0/EB8k182zvtgcE19srOKL3lrr3fhjGackelrncc0DDlW0VX62/P9+UP5u pofTf2/fqJCZv01PaMXs+0XcHIPyGxpXH4kBQ+hiXJOwLFFPKqRJYxYv3/CVEy0eRb1w fCoLl1Gh5zQq4jdgi8W/4HuJE4DhhTSP5NG5lzosxJ7mB1BztUPhQZH4ll+Xg6FQgkHu 1v73O1DMpgycPflyK//k9o7F7pduux8uwyf94N6jPoaHLBf/ZlCx/ozAEpmFzCOtSao5 6yPg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=9OXSU49Hmqg4knPDwU7qj1i+hGWUHa2AZ3REN/N7UE0=; b=cI8RSTCma1hdLala7/p2b3hoSXim7QlEfNDZgjAHlZwwUyh2lw8dpaUDKvudzpzmoq fSFw0zPuYAtEjXEGGd3cMNMYG7YFmG14kZSIPL646yc4Sg9TLuy4uQ89XE1twyY8a2Ne wNxa4UNSvShRn4JT7pWWovtHtdfCPYFxQ0fNn4ex1oVXc8qUH3J9l/juNPgDZkqmR6pR XRydCFgQCY+TIMGUqZzS9dgsckinu9++rhFlUFVKpLS9LN2kzoHdH1cjzdjTjsuNtixW N3jspm+w7AMhTxt69sg5iCUL+EFMrjlDYxSsgCQiMd+Pt8o3dNd7XzqGAyiLMPjXb4ZL FtzA== X-Gm-Message-State: AIVw11381RQaQOSfMdKPs+G0E2bRuvGusBUX4PqeeTgty+g84olCMNJb cisnlmPQqgHX/NM4RrNJyftY5vWMD8OC6yA= X-Received: by 10.98.60.220 with SMTP id b89mr7613325pfk.170.1501987446796; Sat, 05 Aug 2017 19:44:06 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.183.208 with HTTP; Sat, 5 Aug 2017 19:43:46 -0700 (PDT) From: Farhan Khan Date: Sat, 5 Aug 2017 22:43:46 -0400 Message-ID: Subject: Why is rtwn module detaching? To: freebsd-wireless@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2017 02:44:07 -0000 Hi all, I am slowly struggling through writing my Wifi first driver, which is an extension to the current rtwn driver. I have reached another hurdle that I'm stuck on. I bring up my wifi driver as follows: # kldload rtwn && kldload rtwn_pci # sudo ifconfig wlan0 create wlandev rtwn0 # sudo ifconfig wlan0 1.1.1.1 The third line causes the rtwn0 device to detach (and pci0 device, which requires a reboot and is quite frustrating). I traced through the code to find why it is detaching and found that in rtwn_parent() (sys/dev/rtwn/if_rtwn.c), it checks the ic->ic_nrunning (from struct ieee80211com). If that value is less than or equal to 0, it will cause the rtwn driver to stop. This appears to be a common control structure used by other drivers as well. Unfortunately, I have not been able to determine where ic->ic_nrunning is modified anywhere in the kernel. In fact, the only references I found from my searches was checking the ic_nrunning value, not setting it. Does anyone know where this is being set? Without determining this, I cannot why my driver is unloading. I suspect that I failed to set the appropriate 802.11 values in my own code, causing the base 802.11 code to mark it as "off" or malfunctioning but I am not certain. Please advise. Thank you, -- Farhan Khan PGP Fingerprint: 782F 342B 5B08 0D2F F4E8 82C3 FFA1 CAE1 6536 51CA From owner-freebsd-wireless@freebsd.org Sun Aug 6 21:00:47 2017 Return-Path: Delivered-To: freebsd-wireless@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F505DC92CA for ; Sun, 6 Aug 2017 21:00:47 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 339B66D641 for ; Sun, 6 Aug 2017 21:00:47 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v76L01aa085505 for ; Sun, 6 Aug 2017 21:00:47 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201708062100.v76L01aa085505@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-wireless@FreeBSD.org Subject: Problem reports for freebsd-wireless@FreeBSD.org that need special attention Date: Sun, 06 Aug 2017 21:00:47 +0000 X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2017 21:00:47 -0000 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 | 206801 | iwn(4) page fault on netif restart Open | 154598 | [ath] Atheros 5424/2424 can't connect to WPA netw Open | 163312 | [panic] [ath] kernel panic: page fault with ath0 Open | 166190 | [ath] TX hangs and frames stuck in TX queue Open | 166357 | [ath] 802.11n TX stall when the first frame in th Open | 169362 | [ath] AR5416: radar pulse PHY errors sometimes in Open | 169433 | [iwn] iwn(4) doesn't support 6235 chip. Open | 211689 | panic with lagg failover wireless ath and iwm 8 problems total for which you should take action. From owner-freebsd-wireless@freebsd.org Sun Aug 6 22:29:35 2017 Return-Path: Delivered-To: freebsd-wireless@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2813FDCE129 for ; Sun, 6 Aug 2017 22:29:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16A1570EE9 for ; Sun, 6 Aug 2017 22:29:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v76MTY7k078666 for ; Sun, 6 Aug 2017 22:29:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-wireless@FreeBSD.org Subject: [Bug 220229] Add support for iwm 8265 devices Date: Sun, 06 Aug 2017 22:29:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed 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: pete@nomadlogic.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-wireless@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Aug 2017 22:29:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220229 --- Comment #2 from pete@nomadlogic.org --- Wondering if anyone has had a chance to generate a freebsd patch for this device yet? i'm more than willing to test - i just don't know enough about kernel device drivers (yet) to port the dfly patch myself. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-wireless@freebsd.org Mon Aug 7 23:15:25 2017 Return-Path: Delivered-To: freebsd-wireless@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69837DCF588 for ; Mon, 7 Aug 2017 23:15:25 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-yw0-x242.google.com (mail-yw0-x242.google.com [IPv6:2607:f8b0:4002:c05::242]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 22CC03A3E for ; Mon, 7 Aug 2017 23:15:25 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by mail-yw0-x242.google.com with SMTP id u207so1219882ywc.0 for ; Mon, 07 Aug 2017 16:15:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=vKg591rWB1y/oxMlUKhqI1pYiqviWt3tyjousOG/5sw=; b=p0X5Uf1VoND5tTkSmAVIui/Um7Di769BsDU3w9vZhVXGRdY87KVGL15tOX1taFXf+i +LjU7TQYxAnRBkKiXFx51RZ8aLnmP95AHa5gJBxVyCwZFNHLbEHqKplNdGZL3aluV43L tYLFnXgU+NFciycqc3fAHB67Q1tKu9d98iKKkTKUHjQO2fd3b0MYDFn62oy2/d0eLFhP JqOeJv7cznM8ZNNeNfU0m40NILMmfWzH1/3yGOC07SskzNkqBTrdVuj072bG8u5flTjH kye7fj7zRg3ImEfPVhW//VYaKyNagIBNdKuEWkzRLeL1g/LUnqp33xXpVanOo64j5/jg E5Ag== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=vKg591rWB1y/oxMlUKhqI1pYiqviWt3tyjousOG/5sw=; b=ty/Km09VK5D2qh4uivNqCxxbMkvys1NZ4Kz0G7uUZMLLb2RN0xawA9HoJf9VhyrCtf htZ2PW5LdL4bobK3Fac2jTjhUVpjX9v6rcmXOUuQFlCkMrK1awUZJo8fxolLHerpDKbj k5MUqS0/CZiq5bKk3G5/CZ2P1BPAzJQXfta+wcKrIqB9/fDycUbWDpzYW8BpHPSMLS99 J7thfqqvUPPsOh/IS0Amv0EZ+ZRf9zkiMNZzeuHxQypzsWeOl8YbFuYrfmUVG8cnwU5o KrY+ObMxYI7SD8J0vwGI1GFuLzRlNpwpVIq0nsewloSPcH1EFRy9/IkwoEPgCdNlJ5fW HY5w== X-Gm-Message-State: AHYfb5hdhKN6j9WQ6P1pAKPZX8q+Os+J2d4Fpds+pTh6Cs5SCczERpkt T6h0YCeEzPSlgSdKwQe9ikPFzqWx4LKT X-Received: by 10.37.208.69 with SMTP id h66mr1928029ybg.272.1502147724228; Mon, 07 Aug 2017 16:15:24 -0700 (PDT) MIME-Version: 1.0 Received: by 10.13.203.145 with HTTP; Mon, 7 Aug 2017 16:15:23 -0700 (PDT) In-Reply-To: References: From: Adrian Chadd Date: Mon, 7 Aug 2017 16:15:23 -0700 Message-ID: Subject: Re: Why is rtwn module detaching? To: Farhan Khan Cc: "freebsd-wireless@freebsd.org" Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Aug 2017 23:15:25 -0000 For reference, we chatted on IRC. I think it's the NIC disappearing because giving it an iP brings it link 'up' and something in the 'up' path is causing the firmware to crash and the NIC to disappear. which bus is it on btw? eg, you could try 'devctl rescan pcib3' if it's on pcib3.. -adrian On 5 August 2017 at 19:43, Farhan Khan wrote: > Hi all, > > I am slowly struggling through writing my Wifi first driver, which is an > extension to the current rtwn driver. I have reached another hurdle that > I'm stuck on. > > I bring up my wifi driver as follows: > > # kldload rtwn && kldload rtwn_pci > # sudo ifconfig wlan0 create wlandev rtwn0 > # sudo ifconfig wlan0 1.1.1.1 > > The third line causes the rtwn0 device to detach (and pci0 device, which > requires a reboot and is quite frustrating). > > I traced through the code to find why it is detaching and found that in > rtwn_parent() (sys/dev/rtwn/if_rtwn.c), it checks the ic->ic_nrunning (from > struct ieee80211com). If that value is less than or equal to 0, it will > cause the rtwn driver to stop. This appears to be a common control > structure used by other drivers as well. > > Unfortunately, I have not been able to determine where ic->ic_nrunning is > modified anywhere in the kernel. In fact, the only references I found from > my searches was checking the ic_nrunning value, not setting it. > > Does anyone know where this is being set? Without determining this, I > cannot why my driver is unloading. I suspect that I failed to set the > appropriate 802.11 values in my own code, causing the base 802.11 code to > mark it as "off" or malfunctioning but I am not certain. > > Please advise. > Thank you, > -- > Farhan Khan > PGP Fingerprint: 782F 342B 5B08 0D2F F4E8 82C3 FFA1 CAE1 6536 51CA > _______________________________________________ > freebsd-wireless@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-wireless > To unsubscribe, send any mail to "freebsd-wireless-unsubscribe@freebsd.org" From owner-freebsd-wireless@freebsd.org Wed Aug 9 01:55:34 2017 Return-Path: Delivered-To: freebsd-wireless@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEF7CDB76DB for ; Wed, 9 Aug 2017 01:55:34 +0000 (UTC) (envelope-from liathit@yahoo.com) Received: from nm5-vm4.bullet.mail.ir2.yahoo.com (nm5-vm4.bullet.mail.ir2.yahoo.com [212.82.96.111]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30AB481BCF for ; Wed, 9 Aug 2017 01:55:33 +0000 (UTC) (envelope-from liathit@yahoo.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1502243625; bh=lgiizhQiY+/YM1lHgZFOs5yyrCyckjp3FY3NwCiwvU0=; h=Date:From:To:Subject:From:Subject; b=rJo04RKEZLNmSjra63ZCLBK3UCaXOiV5NpQ+GdLi1mAMZJK+BHoCN7aTSFHAORROsJJjFCkY5ieUZl8QKATGchgLijRu+A0nHSrMi90/eDHHde+FQPlxOr/zRc7ebvkxZBGpIamBRUYVTamn62+oXGxUHckM7uuYiWj50pvVEKbrBJKiCoV6PylP1w9TV+eVdZmf7o4gbKbebIZXI+K8zlx55ZRKNr+0fS++NIp8AhhcIMTEHU5v9EHoq3bZBqcRUTA29fb3bWRPg9HqhTMk4/EDMhWk/vDSQJN+obWGc02OXDynWY95yULdKYjNtkzb61FAlrinuVKO2Va+S/t96Q== Received: from [212.82.98.60] by nm5.bullet.mail.ir2.yahoo.com with NNFMP; 09 Aug 2017 01:53:45 -0000 Received: from [46.228.39.68] by tm13.bullet.mail.ir2.yahoo.com with NNFMP; 09 Aug 2017 01:53:45 -0000 Received: from [127.0.0.1] by smtp105.mail.ir2.yahoo.com with NNFMP; 09 Aug 2017 01:53:45 -0000 X-Yahoo-Newman-Id: 395978.48315.bm@smtp105.mail.ir2.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: AYbZaIsVM1mb2SFqFIsiZdtpUgAhEqLXRLzdV3Gd9BpE8wB 4EOO5v9RqP3U2JEzV3p0uWvj43lxObX7jTw5aRby_SbNiBuqrC3VYnoVJOh_ Q31iEcn0Npkx132ihdvqZ30AdCfzdMcqlA43isNmmNpwD9dkFOKlRJwxNLb2 eW7zYxTqorCfCt0lcx9OqVKfE10opOE9gautODqaFU.XPxT7zIP8aUvPt0bO uNp0pCaPAJraxZm9dsYpkA7CbrK28afdVYPvq.IC3z5dWnHWY5rNtgCAFZjo .8AR6ci_flbjJfMf6I9IBiuw70dv1XHrj_1vTh5q8wU771foRiNGyWA9nVLE U8OKLDYXssMBK7BP4cGTroiPTuT7GzJFL4PL6oJXg2FaOXxfdra.BpUqNN46 ceAIskHfzcJCAW2SRD.6ewukCp2lDmDZPCW.9rx7NxOCgAJPXbKjt8YFjJlw nah89XmQrZpnzSlx95xZVmimwYFHfeThkb1z0PSOJIw-- X-Yahoo-SMTP: n.k.vRSswBCIIwc8U248533Fzwo- Date: Wed, 9 Aug 2017 04:53:34 +0300 From: Serge Suvorov To: freebsd-wireless@freebsd.org Subject: TP-LINK TL-NW727N v4 Message-ID: <20170809015331.GA23968@supernova.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.8.3 (2017-05-23) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2017 01:55:34 -0000 I want to buy an USB WiFi adapter TP_LINK TL-WN727N v4. I'd like to know it support FreeBSD P.S It's chipset is based on the mt7601u From owner-freebsd-wireless@freebsd.org Wed Aug 9 18:40:33 2017 Return-Path: Delivered-To: freebsd-wireless@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFDCCDD3235 for ; Wed, 9 Aug 2017 18:40:33 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-yw0-x22f.google.com (mail-yw0-x22f.google.com [IPv6:2607:f8b0:4002:c05::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7EC79808F4 for ; Wed, 9 Aug 2017 18:40:33 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by mail-yw0-x22f.google.com with SMTP id l82so45288393ywc.2 for ; Wed, 09 Aug 2017 11:40:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=YyrDx27DJ1YfPb+sjHANk05JeckAQzRM2NK9g0xQAeI=; b=L7ho283tT5KkI7/16AT4hHt9KOcn+w58m97Cxr+/eSNAJs6qx/I7VvV+QJmltnLO6+ uh2QMWYCZHPu7AZC5o1Cg7Phk3FNUg0psiINUvQljafFbB4DatihR0HFyR/By28faeVc 3spL7CoNehQtGWw/kdRTBzKORR/5qmfqpqoe5LaHWz84gGBK8uPICCLumquqzvgHLR3V Cvjn2JjjCE670L2FvK+MOd8SO6qSZSVKMPsjm0KCnRXxwvjUat0dwoBUmgIyinQRcqnR kxdqw9+O/DBm/x/nSvFfjySxpic3JwfKf7KVd6hJhLHzcQMrcc7yHHExGtUxXt1shR/E /IkQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=YyrDx27DJ1YfPb+sjHANk05JeckAQzRM2NK9g0xQAeI=; b=F2XaQ7Z7NKWN/sy+K8Nu/tfwiDJtMDsg5865EMVh5QQ4QvdmGcM/cteuJeAhSM0qFX OrzSfKTZzh7kIcjPVcwrkWxT2r91HlPXJJ8f1e17nswwGCNyteSXtzloOHr/szcZ5f9I qzvMXCpLpNATFllF97kq0/kjCB4v/pI6NSvevbbtS6QuTO2EG/qPiXXeM7k3OI0vViqi wiEAHK31nzbzHqg17DTRUnBhXhYQRDW+g5yjarmSuvHp//pq820P+Y96FVH4lRbhGlcH UQCCJRvp04AQkHEcNBEGDZfX2kCFtGvUDLbxa10haBa8II4Xm4sRjPoHjB3OyN1Dda6P rvoQ== X-Gm-Message-State: AHYfb5gdruSPrq57uYUlyLv4IJdOzPOUWqeaDnb86j04nm+lii3HqkAg NNZMF4RvIJuUrTRLVm3zPeHicHkpmw== X-Received: by 10.129.137.68 with SMTP id z65mr3660458ywf.341.1502304032611; Wed, 09 Aug 2017 11:40:32 -0700 (PDT) MIME-Version: 1.0 Received: by 10.13.203.145 with HTTP; Wed, 9 Aug 2017 11:40:31 -0700 (PDT) In-Reply-To: <20170809015331.GA23968@supernova.lan> References: <20170809015331.GA23968@supernova.lan> From: Adrian Chadd Date: Wed, 9 Aug 2017 11:40:31 -0700 Message-ID: Subject: Re: TP-LINK TL-NW727N v4 To: Serge Suvorov Cc: "freebsd-wireless@freebsd.org" Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2017 18:40:33 -0000 hi, there's no support for ity et, sorry :( -adrian On 8 August 2017 at 18:53, Serge Suvorov via freebsd-wireless wrote: > I want to buy an USB WiFi adapter TP_LINK TL-WN727N v4. I'd like to know > it support FreeBSD P.S It's chipset is based on the mt7601u > _______________________________________________ > freebsd-wireless@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-wireless > To unsubscribe, send any mail to "freebsd-wireless-unsubscribe@freebsd.org" From owner-freebsd-wireless@freebsd.org Thu Aug 10 02:18:45 2017 Return-Path: Delivered-To: freebsd-wireless@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06812DDCF21 for ; Thu, 10 Aug 2017 02:18:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E895B6A68F for ; Thu, 10 Aug 2017 02:18:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v7A2Ii2l043488 for ; Thu, 10 Aug 2017 02:18:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-wireless@FreeBSD.org Subject: [Bug 211653] iwm panic on 11.0-BETA4, 11.[01]-{RC[123]|RELEASE}, 11-Stable (Intel 7260) Date: Thu, 10 Aug 2017 02:18:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: wireless X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: crash, regression X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ish@amail.plala.or.jp X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-wireless@FreeBSD.org X-Bugzilla-Flags: mfc-stable11? X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Aug 2017 02:18:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211653 Masachika ISHIZUKA changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|iwm panic on 11.0-BETA4, |iwm panic on 11.0-BETA4, |11.0-RC[123], 11.0-RELEASE, |11.[01]-{RC[123]|RELEASE}, |11-Stable and 11.1-RC[123] |11-Stable (Intel 7260) |(Intel 7260) | --=20 You are receiving this mail because: You are the assignee for the bug.=