Ubuntu 14.04 and the intel 3160 chip monitor mode support

2015-08-28 Thread John Keeler
Hi, I am having issues with monitor mode with ubuntu 14.04 and the intel 3160 chip. I am having similar issues with 3.13 and a 7265 chip on a intel NUC Monitor mode says it takes but it captures no packets and help would be appreciated Thanks John Commands that trigger the crash : sudo ifcon

Re: Linux Firmware Signing

2015-08-28 Thread Luis R. Rodriguez
On Thu, Aug 27, 2015 at 07:54:33PM -0400, Mimi Zohar wrote: > On Thu, 2015-08-27 at 23:29 +0200, Luis R. Rodriguez wrote: > > On Thu, Aug 27, 2015 at 10:57:23AM -, David Woodhouse wrote: > > > > Luis R. Rodriguez wrote: > > > > > > > >> "PKCS#7: Add an optional authenticated attribute to hold

Re: Linux Firmware Signing

2015-08-28 Thread Luis R. Rodriguez
On Fri, Aug 28, 2015 at 06:26:05PM -0400, Paul Moore wrote: > On Fri, Aug 28, 2015 at 7:20 AM, Roberts, William C > wrote: > > Even triggered updates make sense, since you can at least have some form of > > trust > > of where that binary policy came from. > > It isn't always that simple, see my

Re: Linux Firmware Signing

2015-08-28 Thread Luis R. Rodriguez
On Fri, Aug 28, 2015 at 11:20:10AM +, Roberts, William C wrote: > > -Original Message- > > From: Paul Moore [mailto:p...@paul-moore.com] > > > > While I question the usefulness of a SELinux policy signature in the > > general case, > > there are some situations where it might make sen

Re: Linux Firmware Signing

2015-08-28 Thread Paul Moore
On Fri, Aug 28, 2015 at 7:20 AM, Roberts, William C wrote: >> -Original Message- >> From: Paul Moore [mailto:p...@paul-moore.com] >> Sent: Thursday, August 27, 2015 4:57 PM >> To: Luis R. Rodriguez >> Cc: David Woodhouse; David Howells; Mimi Zohar; Andy Lutomirski; Kees Cook; >> Roberts, W

Re: [linux-nfc] [PATCH 1/8] NFC: NCI: Allow connection close with dev down

2015-08-28 Thread Robert Dolca
On Sun, May 24, 2015 at 8:07 PM, Samuel Ortiz wrote: > Hi Robert, > > On Tue, Mar 31, 2015 at 05:03:42PM +0300, Robert Dolca wrote: >> On Thu, Mar 26, 2015 at 2:29 AM, Samuel Ortiz wrote: >> > Hi Robert, >> > >> > On Tue, Feb 24, 2015 at 12:01:45PM +0200, Robert Dolca wrote: >> >> By calling __nc

Re: [PATCH 1/2] ath10k: change beamformee VHT STS capability

2015-08-28 Thread Bartosz Markowski
On 27 August 2015 at 14:47, Michal Kazior wrote: > From: Bartosz Markowski > > All beamformee supporting chips have the ability to support > VHT NDP in up to 4 STSs. Change the published beamformee > STS cap accordingly to 3 as it should be Nsts-1. > > This makes it possible to actually make full

Re: CT firmware and linux kernel patches for OpenWRT( ar71xx - Tp-Link 1750AC )

2015-08-28 Thread Sven Eckelmann
On Wednesday 26 August 2015 18:59:51 s prasad wrote: > Does anybody have patches for CT firmware testing using OpenWRT environment. > I tried to create patch, however OpenWRT patches supporting only for > kernel versions 3.18 and 4.1 at the same time CT Kernels supporting > 3.17_dev, 4.0.4 and 4.2.

[PATCH] utils/key2pub: use python2 explicitly

2015-08-28 Thread Kylie McClain
On systems that have python3 as the default /usr/bin/python provider, specifying `python` causes the build to fail. >From f4607ed246476b3ed58b4ce25cfdc6348a4a6bd1 Mon Sep 17 00:00:00 2001 From: Kylie McClain Date: Thu, 27 Aug 2015 21:29:48 -0400 Subject: [PATCH] utils/key2pub: use python2 explici

[PATCH] wireless: mark element IDs 8 and 9 reserved

2015-08-28 Thread Johannes Berg
From: Johannes Berg These were never used in the tree, and are marked as reserved in the IEEE 802.11 documentation (ANA). Signed-off-by: Johannes Berg --- include/linux/ieee80211.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/ieee80211.h b/include/linux/i

[PATCH] ath10k: Fix DMA alloc failure for target requested memory chunks

2015-08-28 Thread Vasanthakumar Thiagarajan
During long hours of stress testing like AP interface up/down along with continuous ping flood from a station doing connect/disconnect, it is observed that the system is not able to allocate DMA consistent memory of size > 512KB chunks as requested by firmware in WMI_SERVICE_EVENTID. With the syste

RE: Linux Firmware Signing

2015-08-28 Thread Roberts, William C
> -Original Message- > From: Paul Moore [mailto:p...@paul-moore.com] > Sent: Thursday, August 27, 2015 4:57 PM > To: Luis R. Rodriguez > Cc: David Woodhouse; David Howells; Mimi Zohar; Andy Lutomirski; Kees Cook; > Roberts, William C; linux-security-mod...@vger.kernel.org; linux- > ker...

[PATCH 1/3] mac80211: remove last_beacon/ave_beacon debugfs files

2015-08-28 Thread Johannes Berg
From: Johannes Berg These file aren't really useful: - if per beacon data is required then you need to use radiotap or similar anyway, debugfs won't help much - average beacon signal is reported in station info in nl80211 and can be looked up with iw Signed-off-by: Johannes Berg --- ne

[PATCH 3/3] mac80211: use DECLARE_EWMA for ave_beacon_signal

2015-08-28 Thread Johannes Berg
From: Johannes Berg It doesn't seem problematic to change the weight for the average beacon signal from 3 to 4, so use DECLARE_EWMA. This also makes the code easier to maintain since bugs like the one fixed in the previous patch can't happen as easily. Signed-off-by: Johannes Berg --- net/mac8

[PATCH 2/3] mac80211: fix driver RSSI event calculations

2015-08-28 Thread Johannes Berg
From: Johannes Berg The ifmgd->ave_beacon_signal value cannot be taken as is for comparisons, it must be divided by since it's represented like that for better accuracy of the EWMA calculations. This would lead to invalid driver RSSI events. Fix the used value. Fixes: 615f7b9bb1f8 ("mac80211: ad

[PATCH] mac80211: reject software RSSI CQM with beacon filtering

2015-08-28 Thread Johannes Berg
From: Johannes Berg When beacon filtering is enabled the mac80211 software implementation for RSSI CQM cannot work as beacons will not be available. Rather than accepting such a configuration without proper effect, reject it. Signed-off-by: Johannes Berg --- net/mac80211/cfg.c | 4 1 file