Re: Anyone have a clone of wireless-legacy.git?

2016-06-03 Thread John W. Linville
5c1 Merge ../wireless-dev-legacy into > wireless-dev-2007-08-10 >   wireless-dev-2007-09-24 cd799e167394 Merge branch 'p54' into everything > > johannes I got them both from the two FTP sites, and both git repos appear to be identical. It would be best if someone had an actual

Re: Anyone have a clone of wireless-legacy.git?

2016-06-03 Thread John W. Linville
On Thu, Jun 02, 2016 at 06:18:27PM -0700, Guenter Roeck wrote: > On Thu, Jun 02, 2016 at 02:38:04PM -0400, John W. Linville wrote: > > It has recently come to my attention that the old wireless-legacy.git > > tree is no longer available on kernel.org. I honestly have no idea &g

Re: Anyone have a clone of wireless-legacy.git?

2016-06-02 Thread John W. Linville
On Thu, Jun 02, 2016 at 08:48:08PM +0100, One Thousand Gnomes wrote: > On Thu, 2 Jun 2016 14:38:04 -0400 > "John W. Linville" <linvi...@tuxdriver.com> wrote: > > > It has recently come to my attention that the old wireless-legacy.git > > tree is no longer avai

Anyone have a clone of wireless-legacy.git?

2016-06-02 Thread John W. Linville
ort! John -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majord...@vger.kernel.org

Re: wireless-drivers: random cleanup patches piling up

2016-01-22 Thread John W. Linville
ts/checkpatch.pl -f" on various kernel files  > > actually continue on to submit actual defect fixing > > or optimization or code clarity patches. > > That's also my experience from maintaining wireless-drivers for a year, > this seems to be a "hit and run"

Re: [ANNOUNCE] New location for wireless-testing tree

2015-12-17 Thread John W. Linville
pretty good > indication of what is baking in Linux wireless for the next release, without > having unrelated changes from all the other subsystems as in linux-next. Given this most welcome announcement, I will hereby cease maintenance of the predecessor wireless-testing tree in favor of this

wireless-testing rebased, new HEAD commit f5feec4244464225c03ccc9ddad615cb43a044cc

2015-12-07 Thread John W. Linville
. The current wireless-testing HEAD is commit f5feec4244464225c03ccc9ddad615cb43a044cc. Consumers of wireless-testing, please make the necessary adjustment. I apologize for the inconvenience... John -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com

Re: wireless-testing regression: Could not configure driver mode

2015-12-03 Thread John W. Linville
rely on its value > +* internally in the need_offchan case to distinguish > +* mgmt-tx from remain-on-channel. > +*/ > + *cookie = 0x; > } > > if (!need_offchan) { > > -- John W. Linvi

Re: wireless-testing repo

2015-11-23 Thread John W. Linville
de Bluetooth and NFC, but stopped doing that early this year. > >If you're testing with backports you could also use the latest linux- > >next with a restricted backport - I've added mac80211(-next) to that > >now. > > We have some setups running on wl-testing kernel an

linux-wireless rebased (probably for the last time) on 4.4-rc1

2015-11-16 Thread John W. Linville
option to satisfy your needs. If someone would like to continue maintaining wireless-testing yourself, then please contact me and I will attempt to assist you in such a transition. Thanks for all the fish! John -- John W. LinvilleSomeday the world will need a hero, and you linvi

[PATCH] orinoco_usb: return error in ezusb_probe when alloc_orinocodev fails

2015-10-19 Thread John W. Linville
The current code exits after alloc_orinocodev, but fails to change the return value to something that indicates the failure. This patch changes the return value to -ENOMEM. https://bugzilla.kernel.org/show_bug.cgi?id=106181 Signed-off-by: John W. Linville <linvi...@tuxdriver.com> --- d

[PATCH] mwl8k: refactor some conditionals for clarity

2015-08-10 Thread John W. Linville
/mwl8k.c:4987:5: note: ‘ap_mcs_rates’ was declared here u8 ap_mcs_rates[16]; ^ The warning was bogus. But the conditionals were rather complicated, with multiple redundant checks. This consolidates the checking and makes it more readable IMHO. Signed-off-by: John W. Linville linvi

Re: [PATCH] ipw2x00: Adding active 11a wireless band support for Intel 2915abg (ZZJ:Japan)

2015-07-28 Thread John W. Linville
}}, }, { /* Rest of World */ -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html -- John W. LinvilleSomeday the world will need

Re: [PATCH] ath10k: remove NULL ptr deref in variable init of ath10k_monitor_vdev_start

2015-07-28 Thread John W. Linville
On Tue, Jul 28, 2015 at 10:41:11AM +0530, Vasanthakumar Thiagarajan wrote: On Tuesday 28 July 2015 12:52 AM, John W. Linville wrote: In ath10k_monitor_vdev_start, chandef is initialized to NULL and then channel is immediately thereafter initialized to chandef-chan (i.e. NULL-chan

[PATCH] ath10k: remove NULL ptr deref in variable init of ath10k_monitor_vdev_start

2015-07-27 Thread John W. Linville
-NULL value). So, let's just remove this brown paper bag typo/thinko... :-) Coverity CID #1309505 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- drivers/net/wireless/ath/ath10k/mac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath10k

wireless-testing rebased on v4.2-rc1

2015-07-06 Thread John W. Linville
Subject says it all... -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord

[PATCH] mwifiex: fix leak of gen_ie storage on exit from mwifiex_del_mgmt_ies

2015-06-26 Thread John W. Linville
Storage pointed to by gen_ie is allocated with kmalloc, but was never freed. Coverity CID #1271251 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- drivers/net/wireless/mwifiex/ie.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/wireless/mwifiex/ie.c b/drivers/net

[PATCH v2] wireless: remove superfluous if statement in regulatory code

2015-06-24 Thread John W. Linville
is identical to the code after the if statement. Coverity CID #1295939 I also removed the unnecessary assignment of treatment in this case, and added a comment reminding any future patch authors to ensure that treatment is properly assigned before it is used after the switch. Signed-off-by: John W

[PATCH] mwifiex: avoid freeing improper pointer in mwifiex_set_wowlan_mef_entry

2015-06-23 Thread John W. Linville
mwifiex_set_wowlan_mef_entry to not do any free, and to cause mwifiex_set_mef_filter to do the appropriate free if the call to mwifiex_set_wowlan_mef_entry fails. Coverity CID #1295879 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- drivers/net/wireless/mwifiex/cfg80211.c | 8 ++-- 1 file changed

[PATCH] wireless: remove superfluous if statement in regulatory code

2015-06-23 Thread John W. Linville
In reg_process_hint, the test of treatment == REG_REQ_IGNORE || treatment == REG_REQ_ALREADY_SET is superfluous because the code in the if-then branch is identical to the code after the if statement. Coverity CID #1295939 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- net/wireless

[PATCH] mwifiex: do not short circuit exit from mwifiex_set_mgmt_ies

2015-06-23 Thread John W. Linville
Without this change, the code simply exits after calling mwifiex_uap_set_head_tail_ies, leving the call to mwifiex_set_mgmt_beacon_data_ies as dead code. Coverity CID #1271292 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- drivers/net/wireless/mwifiex/ie.c | 2 ++ 1 file changed, 2

[PATCH] mac80211: reduce log spam from ieee80211_handle_pwr_constr

2015-03-31 Thread John W. Linville
This changes a couple of messages from sdata_info to sdata_dbg. This should reduce some log spam, as reported here: https://bugzilla.redhat.com/show_bug.cgi?id=1206468 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- net/mac80211/mlme.c | 14 +++--- 1 file changed, 7

Re: pull-request: wireless-drivers-next 2015-02-07

2015-02-09 Thread John W. Linville
:1: warning: label ‘end’ defined but not used [-Wunused-label] So I've removed that label in the merge commit. FWIW, that's the way I have it in wireless-testing as well... John -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com

[PATCH] ath5k: document a fall-through case in ath5k_hw_set_opmode

2015-01-19 Thread John W. Linville
Coverity: CID 114932 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- I'm guessing this is OK, since it seems to work? drivers/net/wireless/ath/ath5k/pcu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/wireless/ath/ath5k/pcu.c b/drivers/net/wireless/ath/ath5k/pcu.c

[PATCH] ath9k_htc: remove dead code in error path of ath9k_htc_txcompletion_cb

2015-01-19 Thread John W. Linville
This clause is conditioned on htc_hdr != NULL, but it will only be NULL when that check is reached. Coverity: CID 114318 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- drivers/net/wireless/ath/ath9k/htc_hst.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git

[PATCH] iwlwifi: document switch case fall-through in iwl_mvm_send_sta_key

2015-01-12 Thread John W. Linville
Add a comment indicating that the WLAN_CIPHER_SUITE_WEP104 case falls through to the WLAN_CIPHER_SUITE_WEP40 case in iwl_mvm_send_sta_key. This will document that the lack of a break is intentional. Coverity: CID 1260023 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- This seems

[PATCH] mac80211: uninitialized return val in __ieee80211_sta_handle_tspec_ac_params

2015-01-06 Thread John W. Linville
Coverity: CID 1260096 Signed-off-by: John W. Linville linvi...@tuxdriver.com --- net/mac80211/mlme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 2c36c4765f47..837a406a9dd6 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211

Re: changes to Linux wireless maintenance

2014-12-21 Thread John W. Linville
tree? From earlier IRC discussion I figured that tree was still in demand. I still plan to maintain a version of wireless-testing for some amount of time. John -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have

changes to Linux wireless maintenance

2014-12-17 Thread John W. Linville
... :-) -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH] MAINTAINERS: changes for wireless

2014-12-17 Thread John W. Linville
http://marc.info/?l=linux-wirelessm=141883202530292w=2 This makes it official... :-) Signed-off-by: John W. Linville linvi...@tuxdriver.com --- MAINTAINERS | 19 --- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index fdffe962a16a

pull request: wireless 2014-12-16

2014-12-16 Thread John W. Linville
incorrect pending cmd removal in pairing_complete() Bluetooth: Fix notifying mgmt power off before flushing connection list Bluetooth: Fix enabling BR/EDR SC when powering on Bluetooth: Fix mgmt response status when removing adapter John W. Linville (1): Merge branch 'for-upstream

Re: pull request: bluetooth 2014-12-12

2014-12-15 Thread John W. Linville
status when removing adapter (2014-12-12 13:20:12 +0100) Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless

Re: [PATCH] wireless-regdb: Update keys and maintainer information

2014-12-05 Thread John W. Linville
wireless kernel maintainer +used is maintained by Seth Forshee. http://wireless.kernel.org/en/developers/Regulatory/ %prep -- 1.9.1 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready

Re: [GIT] [3.19] NFC update

2014-12-04 Thread John W. Linville
/nfc-next-3.19-1 for you to fetch changes up to e479ce479743984a5d4581749f9aaa9c3bfd65e4: NFC: NCI: Fix max length of General Bytes in ATR_RES (2014-12-02 22:59:28 +0100) Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com

Re: pull-request: mac80211-next 2014-12-03

2014-12-04 Thread John W. Linville
+0100) Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord

new regulatory database mainteiner -- Seth Forshee

2014-12-04 Thread John W. Linville
is included as part of the CRDA package distribution. I would like to thank Seth for taking this important duty upon himself and I wish him all the best in doing so. I hope that everyone else will do the same! Thanks, John -- John W. LinvilleSomeday the world will need a hero

[PATCH] MAINTAINERS: orphan rtl8180

2014-12-04 Thread John W. Linville
Signed-off-by: John W. Linville linvi...@tuxdriver.com --- MAINTAINERS | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 7ec37a396ffe..e3f40df47513 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7845,11 +7845,10 @@ S: Maintained F

Re: [PATCH v2 00/10] wil6210 fixes, reroll

2014-12-02 Thread John W. Linville
/wireless/ath/wil6210/wil6210.h | 15 --- drivers/net/wireless/ath/wil6210/wmi.c | 8 ++-- 9 files changed, 114 insertions(+), 37 deletions(-) -- 2.1.0 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might

Re: pull request: iwlwifi-next 2014-12-02

2014-12-02 Thread John W. Linville
debugging. This will allow to have configurable probes insides the firmware. Luca continues his work on NetDetect, this feature is now complete. All the rest is minor fixes here and there. Pulled... -- John W. LinvilleSomeday the world will need a hero, and you linvi

Re: [PATCH] wireless/p54: Remove duplicated net2280 header

2014-12-01 Thread John W. Linville
a header file with the register definition of the net2280 chip. Remove the custom/duplicated header file in favor of that header file in include/linux Signed-off-by: Ricardo Ribalda Delgado ricardo.riba...@gmail.com Signed-off-by: John W. Linville linvi

Re: pull request: bluetooth-next 2014-11-27

2014-12-01 Thread John W. Linville
to f6af675ef5489c69fc3d4faf8c6f477df3cbf8b9: Bluetooth: Automatically flushable packets aren't allowed on LE links (2014-11-27 12:12:27 +0200) Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready

Re: Pull request: ath 20141201

2014-12-01 Thread John W. Linville
) are available in the git repository at: git://github.com/kvalo/ath.git for-linville for you to fetch changes up to fe2407a889f7b6530b7e231e7c866f5c5d223657: ath10k: simplify rx ring size/fill calculation (2014-12-01 09:29:27 +0200) Pulling now... -- John W. Linville

Re: New FCC requirements and Linux Wifi

2014-12-01 Thread John W. Linville
there are others on the list that will be interested as well... John -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body

pull request: wireless 2014-11-26

2014-11-26 Thread John W. Linville
-11-25 for you to fetch changes up to 7d63a5f9b25ba6b130da8eb2d32a72b1462d0249: rtlwifi: Change order in device startup (2014-11-25 14:22:22 -0500) John W. Linville (1): Merge tag 'iwlwifi-for-john-2014-11-23' of git

Re: [PATCH 3/4] brcmsmac: extend hardware info shown in debugfs

2014-11-25 Thread John W. Linville
On Tue, Nov 25, 2014 at 02:00:38PM +0100, Arend van Spriel wrote: On 11/25/14 13:12, Arend van Spriel wrote: On 11/24/14 22:50, John W. Linville wrote: Hmmm...I'm not sure why, but this is causing problems for me... ERROR: brcmu_boardrev_str [drivers/net/wireless/brcm80211/brcmsmac

Re: [PATCH 2/4] brcmutil: add helper function to format board revision

2014-11-25 Thread John W. Linville
On Tue, Nov 25, 2014 at 11:01:47AM +0100, Arend van Spriel wrote: On 11/24/14 22:53, John W. Linville wrote: I am holding patches 2-4 until we resolve the brcmu_boardrev_str build thing... Actually, only patch 2 and 3 are related to the build thing. If that is what this is. OK, I won't

Re: [PATCH 3/4] brcmsmac: extend hardware info shown in debugfs

2014-11-25 Thread John W. Linville
On Tue, Nov 25, 2014 at 08:16:17PM +0100, Arend van Spriel wrote: On 11/25/14 20:05, John W. Linville wrote: On Tue, Nov 25, 2014 at 01:49:45PM -0500, John W. Linville wrote: On Tue, Nov 25, 2014 at 01:12:34PM +0100, Arend van Spriel wrote: On 11/24/14 22:50, John W. Linville wrote: Hmmm

Re: pull request: iwlwifi-next 2014-11-24

2014-11-24 Thread John W. Linville
and TDLS. On top of that I have a new firmware API for scan and a few rate control improvements. Johannes find a few tricks to improve our CPU utilization and adds support for a new spin of 7265 called 7265D. Along with this a few random things that don't stand out. Pulling now... -- John W

Re: pull request: iwlwifi 2014-11-23

2014-11-24 Thread John W. Linville
(2014-11-23 21:50:57 +0200) Not all the firmware know how to handle the HOT_SPOT_CMD. Make sure that the firmware will know this command before sending it. This avoids a firmware crash. Pulling now... -- John W. Linville

pull request: wireless-next 2014-11-21

2014-11-21 Thread John W. Linville
check mac80211: notify drivers on sta rate table changes John W. Linville (8): Merge tag 'mac80211-for-john-2014-11-10' of git://git.kernel.org/.../jberg/mac80211 Merge tag 'iwlwifi-for-john-2014-11-10' of git://git.kernel.org/.../iwlwifi/iwlwifi-fixes Merge branch

pull request: wireless 2014-11-20

2014-11-20 Thread John W. Linville
Johannes Berg (1): brcmfmac: don't include linux/unaligned/access_ok.h John W. Linville (1): Merge tag 'mac80211-for-john-2014-11-18' of git://git.kernel.org/.../jberg/mac80211 Mathy Vanhoef (1): brcmfmac: kill URB when request timed out drivers/net/wireless/ath/ath9k/main.c

Re: pull-request: mac80211-next 2014-11-20

2014-11-20 Thread John W. Linville
for cfg80211/mac80211/hwsim (myself) * CSA improvements (Luca) * WoWLAN Net Detect (wake on network found) support (Luca) * and lots of other smaller changes from many people Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com

Re: [REGRESSION] mwifiex: memory corruption on WEP disassociation

2014-11-18 Thread John W. Linville
More majordomo info at http://vger.kernel.org/majordomo-info.html -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless

Re: pull request: iwlwifi 2014-11-10

2014-11-11 Thread John W. Linville
. Emmanuel Grumbach (1): iwlwifi: mvm: abort scan upon RFKILL Liad Kaufman (1): iwlwifi: pcie: fix prph dump length Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi

Re: [PATCH 2/2] ath9k: fix regression in bssidmask calculation

2014-11-11 Thread John W. Linville
instead of whole list of vifs. This would allow each channel context to run in different mode (STA/AP). Signed-off-by: Felix Fietkau n...@openwrt.org Signed-off-by: Rajkumar Manoharan rmano...@qti.qualcomm.com Signed-off-by: John W. Linville linvi...@tuxdriver.com broke multi-vif

Re: pull request: bluetooth-next 2014-11-07

2014-11-11 Thread John W. Linville
at: git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git for-upstream for you to fetch changes up to 56b2c3eea398c772dd895dc62c18cbdd1ba127b1: 6lowpan: move skb_free from error paths in decompression (2014-11-06 22:09:48 +0100) Pulling now... -- John W. Linville

[PATCH] ath9k_htc: remove return of value in empty definintion of ath9k_htc_deinit_debug

2014-11-11 Thread John W. Linville
Cc: Oleksij Rempel li...@rempel-privat.de Signed-off-by: John W. Linville linvi...@tuxdriver.com --- drivers/net/wireless/ath/ath9k/htc.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath9k/htc.h b/drivers/net/wireless/ath/ath9k/htc.h index

Re: [PATCH 3/3 3.18] rtlwifi: rtl8192se: Fix connection problems

2014-11-07 Thread John W. Linville
On Thu, Nov 06, 2014 at 04:46:42PM -0600, Larry Finger wrote: On 11/06/2014 02:45 PM, John W. Linville wrote: On Wed, Nov 05, 2014 at 07:10:54PM -0600, Larry Finger wrote: Changes in the vendor driver were added to rtlwifi, but some updates to rtl8192se were missed. Signed-off-by: Larry

pull request: wireless-next 2014-11-07

2014-11-07 Thread John W. Linville
cfg80211: avoid using default in interface type switch mac80211: handle RIC data element in reassociation request John W. Linville (4): Merge tag 'for-linville-20141024' of git://github.com/kvalo/ath Merge tag 'iwlwifi-next-for-john-2014-10-29' of git://git.kernel.org/.../iwlwifi

Re: wireless-regdb: Update regulatory rules for New Zealand (NZ) on 5GHz and 60 GHz [UNCLASSIFIED]

2014-11-07 Thread John W. Linville
@ 40), (20) -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More

Re: [PATCH v2] ath9k: Fix RTC_DERIVED_CLK usage

2014-11-06 Thread John W. Linville
W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More majordomo info

pull request: wireless 2014-11-06

2014-11-06 Thread John W. Linville
Felix Fietkau (1): mac80211: flush keys for AP mode on ieee80211_do_stop Johannes Berg (2): mac80211: properly flush delayed scan work on interface removal mac80211: fix use-after-free in defragmentation John W. Linville (2): Merge tag 'iwlwifi-for-john-2014-11-03' of git

Re: pull-request: mac80211 2014-11-04

2014-11-04 Thread John W. Linville
| 14 +++--- net/mac80211/spectmgmt.c | 18 ++ 8 files changed, 34 insertions(+), 32 deletions(-) Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we

pull request: wireless 2014-10-31

2014-10-31 Thread John W. Linville
; default: RT_ASSERT(false, ERR rxdesc :%d not process\n, desc_name); -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. pgprPeqoWtEJP.pgp

Re: [PATCH 3/3] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2014-10-31 Thread John W. Linville
Acked-by: John W. Linville linvi...@tuxdriver.com -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body

Re: pull request: bluetooth-next 2014-10-31

2014-10-31 Thread John W. Linville
://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git for-upstream for you to fetch changes up to b509c02d0f31639dda90f9b7269668b86c9b25ef: Bluetooth: HCI H5 peer reset detection (2014-10-31 19:54:34 +0200) Pulling now... -- John W. LinvilleSomeday

Re: pull request: iwlwifi-next 2014-10-29

2014-10-30 Thread John W. Linville
amount of rate scaling stuff - we now support STBC. The other commit that stands out is Johannes's work on devcoredump. He basically starts to use the standard infrastructure he built. Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi

Re: [PATCH 0/3] debugfs: adding helper for single seq_file

2014-10-30 Thread John W. Linville
in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from

Re: MediaTek WiFi hardware support in upstream kernel

2014-10-28 Thread John W. Linville
On Mon, Oct 27, 2014 at 07:19:32PM +0100, Oleksij Rempel wrote: Am 27.10.2014 um 16:20 schrieb John W. Linville: On Mon, Oct 27, 2014 at 11:02:00AM +0800, Etna wrote: I am not a developer, but I stumbled upon this just a couple of days ago in the OpenWRT forums: https

Re: MediaTek WiFi hardware support in upstream kernel

2014-10-27 Thread John W. Linville
, this is mostly good to see. I hope there is someone that wants to take-up the cause! If someone is interested in working-on the project above but for whatever reason doesn't want to deal with MediaTek on their own, feel free to contact me. I'll try to be helpful however I can. Thanks, John -- John W

Re: [PATCH] bcma: fix build when CONFIG_OF_ADDRESS is not set

2014-10-27 Thread John W. Linville
://www.tux.org/lkml/ -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord

Re: [PATCH] wireless-regdb: add regulatory rule for ETSI members on 60GHz band

2014-10-27 Thread John W. Linville
don't see on its location any more, and final document indeed says what you wrote. Would someone like to post a patch to that effect? -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready

Re: pull-request: mac80211 2014-10-23

2014-10-27 Thread John W. Linville
| 1 + net/rfkill/core.c | 4 ++-- net/wireless/nl80211.c | 10 +- 7 files changed, 29 insertions(+), 15 deletions(-) Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you linvi

Re: [PATCH 1/1] wireless-regdb: Update rules for Australia (AU) to align with class licence

2014-10-27 Thread John W. Linville
) country AW: DFS-ETSI (2402 - 2482 @ 40), (20) -- 1.8.3.1 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux

Re: pull request: iwlwifi 2014-10-21

2014-10-27 Thread John W. Linville
On Thu, Oct 23, 2014 at 09:24:33PM +0300, Emmanuel Grumbach wrote: On Thu, Oct 23, 2014 at 8:48 PM, John W. Linville linvi...@tuxdriver.com wrote: I do not have the 3.18-rc1 tag, because Dave doesn't have it yet in the net.git tre. Please rebase. Done - new tag: git://git.kernel.org

Re: [PATCH v2 12/13] ath5k: update dependencies

2014-10-27 Thread John W. Linville
@vger.kernel.org Cc: ath5k-de...@lists.ath5k.org Acked-by: John W. Linville linvi...@tuxdriver.com -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send

Re: [PATCH 1/1 net-next] net: rfkill: kernel-doc warning fixes

2014-10-09 Thread John W. Linville
On Thu, Oct 09, 2014 at 11:16:53AM +0200, Johannes Berg wrote: Applied, with a somewhat better changelog. FWIW, I had already merged that one as-is -- sorry! -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we

pull request: wireless-next 2014-10-03

2014-10-03 Thread John W. Linville
for rejecting SCO connections Bluetooth: Add retransmission effort into SCO parameter table Bluetooth: Rename sco_param_wideband table to esco_param_msbc Bluetooth: Fix lockdep warning with l2cap_chan_connect John W. Linville (5): Merge branch 'master' of git://git.kernel.org

Re: [PATCH 15/16] ath5k: update dependencies

2014-09-30 Thread John W. Linville
); -- 1.8.5.5 -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html -- John W. LinvilleSomeday the world will need a hero, and you

Re: pull request: iwlwifi-next 2014-09-21

2014-09-26 Thread John W. Linville
-- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More majordomo info

Re: Pull request: ath 20140923

2014-09-26 Thread John W. Linville
for-linville for you to fetch changes up to b25f32cb02155d68c690255ba846796a1c248fd3: ath10k: use ether_addr_copy() (2014-09-18 10:47:03 +0300) Pulling now, but I don't plan to push it back out until Dave pulls my earlier batch... -- John W. LinvilleSomeday the world

Re: pull request: bluetooth-next 2014-09-25

2014-09-26 Thread John W. Linville
to 565766b087a6d6ff257f5b79c8ceda0188c9169f: Bluetooth: Rename sco_param_wideband table to esco_param_msbc (2014-09-25 10:35:08 +0200) Pulling now, but I don't plan to push it back out until Dave pulls my earlier batch... -- John W. LinvilleSomeday the world will need a hero, and you

Re: [PATCH 3/3] mwifiex: remove unnecessary rx_q lock

2014-09-26 Thread John W. Linville
; atomic_inc(adapter-rx_pending); } else { -- 1.8.1.4 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line

Re: [PATCH] [RESEND] ath5k: Remove AHB bus support

2014-09-26 Thread John W. Linville
) { __set_bit(ATH_STAT_LEDSOFT, ah-status); ah-led_pin = ATH_PIN(match-driver_data); -- 1.9.3 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list

Re: [PATCH V2 1/2] brcm80211: use container_of to resolve brcms_phy from brcms_phy_pub

2014-09-26 Thread John W. Linville
; u32 mc = 0; -- 1.9.1 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord

pull request: wireless 2014-09-23

2014-09-23 Thread John W. Linville
in brcmf_count_20mhz_channels() John W. Linville (1): Merge tag 'nfc-fixes-3.17-1' of git://git.kernel.org/.../sameo/nfc-fixes Loic Poulain (1): net: rfkill: gpio: Fix clock status Wojciech Dubowik (1): ath9k: Fix NULL pointer dereference on early irq drivers/net/wireless/ath

Re: [PATCH] ath: change logging functions to return void

2014-09-23 Thread John W. Linville
tree, so I deleted it... John -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord

Re: [GIT] [3.17] NFC fixes

2014-09-22 Thread John W. Linville
/nfc-fixes.git tags/nfc-fixes-3.17-1 for you to fetch changes up to 300c627fbc52aa5b2117ca267907ab8d7b990ead: NFC: st21nfca: Fix potential depmod dependency cycle (2014-09-07 23:45:53 +0200) Pulling now... -- John W. LinvilleSomeday the world will need a hero, and you

Re: Comments regarding patch about setting netns for wireless devices

2014-09-18 Thread John W. Linville
API does not work. So I think that it should be possible to change netns through the RTM_LINK too as generic way to change netns, thats why I tried to solve this in the patch. Thanks, I think Johannes is vacationing right now. I'm sure he will comment when he returns. John -- John W

Re: [PATCH v2] net: rfkill: gpio: Enable module auto-loading for ACPI based switches

2014-09-16 Thread John W. Linville
...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux

Re: [PATCH 09/28] Remove ATHEROS_AR231X

2014-09-16 Thread John W. Linville
On Tue, Sep 16, 2014 at 10:26:59PM +0200, Paul Bolle wrote: On Mon, 2014-09-15 at 14:45 -0400, John W. Linville wrote: FYI -- Sergey posted a series to linux-mips on 14 September 2014 that touches the symbol in question. For whatever reason, it is posted there as RFC. Thanks for passing

Re: [PATCH v2] ath5k: added debugfs file for dumping eeprom

2014-09-11 Thread John W. Linville
On Tue, Sep 09, 2014 at 03:32:38PM -0400, John W. Linville wrote: The original patch was already merged. To make a change, you need to post a new patch based on the new head of the tree. This one just conflicts with what is already there now. Also, I think all you really need is a #include

Re: [PATCH] hostap: proc: substitute loops by %*phN

2014-09-11 Thread John W. Linville
/majordomo-info.html -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org

Re: Mesh Support in brcmsmac

2014-09-09 Thread John W. Linville
for it? No workaround. I am not familiar with wireless mesh networking. I suppose there are people on the linux-wireless mailing list who know what is needed from a mac80211 driver (like brcmsmac) to enable mesh networking. The main things is the beacons, no? -- John W. LinvilleSomeday

Re: [PATCH 09/28] Remove ATHEROS_AR231X

2014-09-09 Thread John W. Linville
to cleanup them in openwrt tree and then send them upstream. That excuse has worn a bit thin. Perhaps Paul should repost his removal and you can add a revert to the start of your patch series? John -- John W. LinvilleSomeday the world will need a hero, and you linvi

Re: iwlwifi no authentication with AP - Re: pull request: wireless-next 2014-09-08

2014-09-09 Thread John W. Linville
of encryption are you using? John -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord

pull request: wireless-next 2014-09-08

2014-09-08 Thread John W. Linville
handling John W. Linville (5): Merge branch 'for-upstream' of git://git.kernel.org/.../bluetooth/bluetooth-next Merge branch 'for-linville' of git://github.com/kvalo/ath Merge tag 'mac80211-next-for-john-2014-08-29' of git://git.kernel.org/.../jberg/mac80211-next Merge

Wireless Networking microconference topic approvals (LPC2014)

2014-09-04 Thread John W. Linville
. -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More majordomo

Re: [PATCH 00/17] mwifiex updates for 3.17

2014-09-04 Thread John W. Linville
files changed, 339 insertions(+), 206 deletions(-) -- 1.8.1.4 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless

Re: [PATCH 0/5] ath9k patches

2014-09-04 Thread John W. Linville
(-) -- 2.1.0 -- John W. LinvilleSomeday the world will need a hero, and you linvi...@tuxdriver.com might be all we have. Be ready. -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More

  1   2   >