Bug 885407 - 6150 + wimax can scan but not connect (workaround included)
Summary: 6150 + wimax can scan but not connect (workaround included)
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: kernel
Version: 19
Hardware: All
OS: Unspecified
unspecified
urgent
Target Milestone: ---
Assignee: Stanislaw Gruszka
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2012-12-09 04:12 UTC by Dan Mashal
Modified: 2013-07-20 09:40 UTC (History)
13 users (show)

Fixed In Version: kernel-3.9.10-200.fc18
Clone Of:
Environment:
Last Closed: 2013-07-18 06:10:13 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)
dmesg (68.76 KB, text/plain)
2013-01-07 09:53 UTC, Dan Mashal
no flags Details
prio table fix (666 bytes, patch)
2013-01-16 12:14 UTC, Emmanuel Grumbach
no flags Details | Diff

Description Dan Mashal 2012-12-09 04:12:51 UTC
Description of problem:

Network manager can scan for APs but is unable to connect (open or encrypted)

Version-Release number of selected component (if applicable):

ALL

How reproducible:

Always


workaround:

rmmod iwldvm iwlwifi
modprobe iwlwifi 11n_disable=1 bt_coex_active=0

Comment 1 Dan Mashal 2012-12-10 19:31:11 UTC
After speaking with PaulFerster in #linux-wireless I think this may be a NetworkManager bug, but im not 100% sure. However, when I run these commands it works, and I'm going to be adding this to my /etc/modprobe.d configuration so that it sticks on boot. I will try and post some logs later today.

Comment 2 Stanislaw Gruszka 2012-12-11 13:05:51 UTC
Which of module options help ? Or both are needed to make things work?

Comment 3 Dan Mashal 2012-12-11 15:18:07 UTC
Both.

Comment 4 Erinn Looney-Triggs 2012-12-14 00:11:22 UTC
I believe I am running into a similair issue, when wimax is enabled on my 6050 wi-fi will sometimes scan, but never connect. If I disable wimax everything works just fine. 

Logs with wimax enabled:
[ 3325.572829] iwlwifi 0000:03:00.0: Microcode SW error detected.  Restarting 0x2000000.
[ 3325.572872] iwlwifi 0000:03:00.0: RF is used by WiMAX
[ 3328.291345] iwlwifi 0000:03:00.0: fail to flush all tx fifo queues
[ 3330.286047] iwlwifi 0000:03:00.0: Error sending REPLY_ADD_STA: time out after 2000ms.
[ 3330.286056] iwlwifi 0000:03:00.0: Current CMD queue read_ptr 208 write_ptr 210
[ 3330.286062] wlan0: HW problem - can not stop rx aggregation for tid 0
[ 3330.292118] cfg80211: Calling CRDA to update world regulatory domain
[ 3330.298773] cfg80211: World regulatory domain updated:
[ 3330.298777] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 3330.298781] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 3330.298784] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 3330.298787] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 3330.298789] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 3330.298792] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 3332.288655] iwlwifi 0000:03:00.0: fail to flush all tx fifo queues
[ 3332.288729] iwlwifi 0000:03:00.0: Request scan called when driver not ready.
[ 3333.287529] iwlwifi 0000:03:00.0: Request scan called when driver not ready.

Comment 5 Dan Mashal 2012-12-15 22:32:42 UTC
Update: 

# rmmod iwldvm iwlwifi 
# modprobe iwlwifi bt_coex_active=0

This is enough to get wifi to connect.

However I also had to manually add the following to wpa_supplicant.conf:

network={
        ssid="accesspoint"
        #psk="password"
        psk=presharedkeygoeshere
}

Comment 6 Stanislaw Gruszka 2012-12-17 14:09:49 UTC
Changing password on wpa_supplicant does not matter actually. 

Some HW platforms do not correctly assert COEX bit, so wifi device thinks that Bluetooth or WiMAX is used (where as is not) and do not transmit. So, I'm not sure if this is not a HW problem. But looking at comment 4 there is Microcode error, so this seems to be a bug.

I'm ccing Emmanuel @ intel, he hopefully could help to solve this issue.

Comment 7 Emmanuel Grumbach 2012-12-17 15:01:16 UTC
(In reply to comment #6)
> Changing password on wpa_supplicant does not matter actually. 
> 
> Some HW platforms do not correctly assert COEX bit, so wifi device thinks
> that Bluetooth or WiMAX is used (where as is not) and do not transmit. So,
> I'm not sure if this is not a HW problem. But looking at comment 4 there is
> Microcode error, so this seems to be a bug.
> 

Yes the Microcode error is a bug, but a harmless one. It just prints Microcode error and then we handle the COEX thing. Note that I am not familiar at all with all this feature but will try my best to help here.

Comment 8 Dan Mashal 2012-12-18 01:00:43 UTC
Emmanuel,

Basically on every reboot I have to do the following:

rmmod iwldvm iwlwifi
modprobe iwlwifi bt_coex_active=0

Once I do this wireless works.

Comment 9 Stanislaw Gruszka 2012-12-18 06:40:16 UTC
Dan, once you do:

echo 'options iwlwifi iwlwifi bt_coex_active=0' > /etc/modprobe.d/iwlwifi.conf

this option will be added automatically before module load on every boot.

What kernel version are you using? Did you try to update or downgrde the kernel? I would like to know if this is regression, i.e. if things work on some old kernel?

Comment 10 Emmanuel Grumbach 2012-12-18 07:40:53 UTC
Also,

can you please enable the bt_coex and enable debug flags 0x8000?
modprobe iwlwifi debug=0x8000

Thanks

Comment 11 Dan Mashal 2012-12-18 22:34:23 UTC
Stanislaw, 

This problem has been happening for months, and I have tried recompiling the kernel from scratch. It's not a kernel issue. It's a module issue.

There should probably be a separate module created for 6xxx + wimax cards.

I discovered the trick on a BSD forum. 

Emmanuel, 

Will do that when I get home.

Comment 12 Dan Mashal 2013-01-07 08:32:00 UTC
I ran with debug=0x800.
 
Which logs do you need?

Comment 13 Stanislaw Gruszka 2013-01-07 08:38:58 UTC
Please do "dmesg > dmesg.txt" and attach dmesg.txt here

Comment 14 Dan Mashal 2013-01-07 09:40:01 UTC
[ 2804.323080] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[ 2804.323083] Copyright(c) 2003-2012 Intel Corporation
[ 2804.323148] iwlwifi 0000:02:00.0: pci_resource_len = 0x00002000
[ 2804.323151] iwlwifi 0000:02:00.0: pci_resource_base = ffffc90000c74000
[ 2804.323153] iwlwifi 0000:02:00.0: HW Revision ID = 0x67
[ 2804.323248] iwlwifi 0000:02:00.0: irq 46 for MSI/MSI-X
[ 2804.324838] iwlwifi 0000:02:00.0: loaded firmware version 41.28.5.1 build 33926
[ 2804.333015] iwldvm: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
[ 2804.333018] iwldvm: Copyright(c) 2003-2012 Intel Corporation
[ 2804.333036] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG enabled
[ 2804.333038] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[ 2804.333039] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[ 2804.333041] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[ 2804.333043] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
[ 2804.333045] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN, REV=0x84
[ 2804.333109] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[ 2804.343906] iwlwifi 0000:02:00.0: device EEPROM VER=0x557, CALIB=0x6
[ 2804.343911] iwlwifi 0000:02:00.0: Device SKU: 0x150
[ 2804.343913] iwlwifi 0000:02:00.0: Valid Tx ant: 0x1, Valid Rx ant: 0x3
[ 2804.344035] Registered led device: phy2-led
[ 2804.344246] ieee80211 phy2: Selected rate control algorithm 'iwl-agn-rs'
[ 2804.537710] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[ 2804.537868] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
[ 2804.699244] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[ 2804.699409] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
[ 2804.766421] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 2804.784370] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[ 2804.784528] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
[ 2804.851973] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 2805.728038] wlan0: authenticate with 00:25:9c:dc:52:76
[ 2805.734286] wlan0: send auth to 00:25:9c:dc:52:76 (try 1/3)
[ 2805.736114] wlan0: authenticated
[ 2805.736434] wlan0: waiting for beacon from 00:25:9c:dc:52:76
[ 2805.754669] wlan0: associate with 00:25:9c:dc:52:76 (try 1/3)
[ 2805.762252] wlan0: RX AssocResp from 00:25:9c:dc:52:76 (capab=0x411 status=0 aid=4)
[ 2805.764925] wlan0: associated
[ 2805.764989] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[root@localhost ~]#

Comment 15 Stanislaw Gruszka 2013-01-07 09:50:03 UTC
This is dmesg without debug option ...

modprobe -r iwlwifi
modprobe -r iwldvm
modprobe iwlwifi debug=0x8000
dmesg > dmesg.txt

Use "Add an attachment" for attaching a dmesg.txt file, please do not copy/paste into comments area.

Comment 16 Dan Mashal 2013-01-07 09:53:54 UTC
Created attachment 673855 [details]
dmesg

attached entire dmesg

Comment 17 Emmanuel Grumbach 2013-01-07 11:56:14 UTC
ok - this means that the Tx queues aren't open apparently...

But since you have a W/A, this bug will get lower priority.

Comment 18 Dan Mashal 2013-01-09 10:50:37 UTC
I only discovered this W/A after months of googling and getting lucky. It is reproducible on all distros and is extremely frustrating.

Please make this a somewhat medium priority if possible.

Thanks in advance.

Comment 19 Emmanuel Grumbach 2013-01-16 12:14:55 UTC
Created attachment 679505 [details]
prio table fix

No guarantee. I just saw that on the way. Please test.

Comment 20 Dan Mashal 2013-01-19 20:16:12 UTC
Very nice. Thank you.

Comment 21 Stanislaw Gruszka 2013-01-21 10:18:15 UTC
Dan, does it mean you tested patch and it fixed the problem?

Comment 22 Dan Mashal 2013-01-21 21:59:19 UTC
The patch does not seem to work. I rebuilt the Kernel with Mr. Forbes during FUDcon and I just tested it I sill have to run my script to connect to wifi.

Comment 23 Bill Nottingham 2013-03-14 04:52:50 UTC
I've got a similar situation here with a Intel 6205 (no wimax); it does not connect on boot unless:

1) I suspend and resume (seriously)
- or -
2) I load the module with bt_coex_active=0

kernel is 3.7.x.

dmesg:
[   14.800976] iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000
[   14.800983] iwlwifi 0000:03:00.0: pci_resource_base = ffffc900055fc000
[   14.800987] iwlwifi 0000:03:00.0: HW Revision ID = 0x34
[   14.801216] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
[   14.991460] iwlwifi 0000:03:00.0: loaded firmware version 17.168.5.3 build 42301
[   15.003324] iwldvm: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
[   15.003330] iwldvm: Copyright(c) 2003-2012 Intel Corporation
[   15.003367] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[   15.003372] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[   15.003377] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[   15.003381] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[   15.003385] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[   15.003391] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6205 AGN, REV=0xB0
[   15.003577] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[   15.021321] iwlwifi 0000:03:00.0: device EEPROM VER=0x715, CALIB=0x6
[   15.021329] iwlwifi 0000:03:00.0: Device SKU: 0x1F0
[   15.021334] iwlwifi 0000:03:00.0: Valid Tx ant: 0x3, Valid Rx ant: 0x3
[   15.036958] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   16.590967] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[   16.603784] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   17.018149] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[   17.024794] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   17.258638] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   23.068349] wlan0: authenticate with 00:21:91:ff:0d:f9
[   23.093684] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 1/3)
[   23.294173] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 2/3)
[   23.495197] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 3/3)
[   23.696129] wlan0: authentication with 00:21:91:ff:0d:f9 timed out
[   26.611832] wlan0: authenticate with 00:21:91:ff:0d:f9
[   26.614470] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 1/3)
[   26.814746] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 2/3)
[   27.015741] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 3/3)
[   27.216701] wlan0: authentication with 00:21:91:ff:0d:f9 timed out
[   30.131181] wlan0: authenticate with 00:21:91:ff:0d:f9
[   30.132131] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 1/3)
[   30.332280] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 2/3)
[   30.533259] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 3/3)
[   30.734230] wlan0: authentication with 00:21:91:ff:0d:f9 timed out
[   32.735967] iwlwifi 0000:03:00.0: fail to flush all tx fifo queues
[   35.546564] wlan0: authenticate with 00:21:91:ff:0d:f9
[   35.549533] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 1/3)
[   35.750585] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 2/3)
[   35.951552] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 3/3)
[   36.152536] wlan0: authentication with 00:21:91:ff:0d:f9 timed out
[   39.068165] wlan0: authenticate with 00:21:91:ff:0d:f9
[   39.070797] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 1/3)
[   39.271147] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 2/3)
[   39.472163] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 3/3)
[   39.673149] wlan0: authentication with 00:21:91:ff:0d:f9 timed out
[   42.589238] wlan0: authenticate with 00:21:91:ff:0d:f9
[   42.592773] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 1/3)
[   42.793741] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 2/3)
[   42.994723] wlan0: direct probe to 00:21:91:ff:0d:f9 (try 3/3)
[   43.195684] wlan0: authentication with 00:21:91:ff:0d:f9 timed out
[   45.197445] iwlwifi 0000:03:00.0: fail to flush all tx fifo queues
(here I suspend and resume)
[   56.807149] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[   56.816557] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   57.064363] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   62.475850] wlan0: authenticate with 00:21:91:ff:0d:f9
[   62.483145] wlan0: send auth to 00:21:91:ff:0d:f9 (try 1/3)
[   62.485049] wlan0: authenticated
[   62.486320] wlan0: associate with 00:21:91:ff:0d:f9 (try 1/3)
[   62.490538] wlan0: RX AssocResp from 00:21:91:ff:0d:f9 (capab=0x431 status=0 aid=1)
[   62.493151] wlan0: associated
[   62.493213] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

Comment 24 Stanislaw Gruszka 2013-05-02 11:56:56 UTC
I assume those are platform (BIOS/hardware) problems. F/W or H/W assert PCIe coex pin, which make iwlwifi stop to transmit data. Suspend/resume can disable COEX pin on for some particular BIOS or H/W and make issue gone.

There is no fix for that, except maybe update the BIOS.

Comment 25 Dan Mashal 2013-05-03 04:18:42 UTC
Wrong.

Comment 26 Stanislaw Gruszka 2013-05-03 10:41:27 UTC
Dan, are you aware of kernel/driver fix for this issue?

Comment 27 Dan Mashal 2013-05-03 15:48:30 UTC
This is an Intel/Kernel/Linux wireless driver problem.

Comment 28 Dan Mashal 2013-05-03 15:48:56 UTC
And no there is no fix, that's why the bug is open.

Comment 29 John W. Linville 2013-05-03 16:06:12 UTC
Stanislaw says "there is no fix", Dan says "wrong", Stanislaw asks if Dan knows of a fix, and Dan says "there is no fix" -- what we have here is a failure to communicate... :-)

Comment 30 Dan Mashal 2013-05-03 16:50:02 UTC
It works fine in windows. 

It's not a BIOS problem. 

Please look at the workaround. Once this is run wireless works fine.

Comment 31 Johannes Berg 2013-05-03 16:57:23 UTC
Wouldn't something like this help?

http://p.sipsolutions.net/0dbf26f1d47ca754.txt

Comment 32 Johannes Berg 2013-05-03 17:09:31 UTC
or maybe this

http://p.sipsolutions.net/3834d6cfbe6229a4.txt

let us know which one works better I guess :)

Comment 33 Dan Mashal 2013-05-03 17:15:14 UTC
Will do.

Comment 34 Stanislaw Gruszka 2013-06-03 18:11:37 UTC
Does any of proposed patches solve the problem ?

Comment 35 Stanislaw Gruszka 2013-06-27 10:15:26 UTC
Dan, would help to finish testing, if I'll prepare test kernels with patches, so you'll not need to patch and build kernel yourself ?

Comment 36 Dan Mashal 2013-06-27 17:11:52 UTC
Yeah let me do that right now. I'm taking a break and tired of having to run that script.

Comment 37 Dan Mashal 2013-06-27 19:13:39 UTC
(In reply to Johannes Berg from comment #32)
> or maybe this
> 
> http://p.sipsolutions.net/3834d6cfbe6229a4.txt
> 
> let us know which one works better I guess :)

This one definitely seems to work and wifi is a hell of a lot faster. Haven't test the other one. But just did a fresh compile and boot of 3.9.6 with this patch.

Comment 38 Stanislaw Gruszka 2013-07-11 11:53:23 UTC
Patch is already on iwlwifi-fixes tree
https://git.kernel.org/cgit/linux/kernel/git/iwlwifi/iwlwifi-fixes.git/commit/?id=7b29fdb8cd8f92e31f550611a8c031986dba2e8f

Josh, please apply it as fix for this bug.

Comment 39 Josh Boyer 2013-07-12 11:44:12 UTC
Sorry, didn't get to this yesterday.  I'll get it in right now.

Comment 40 Josh Boyer 2013-07-12 11:54:50 UTC
OK, added to all branches now.  Thanks.

Comment 41 Joshua Covington 2013-07-13 22:54:17 UTC
There is a typo in the patch applied to f17/f18/f19 as well as the iwlwifi-fixes tree. The original patch says:

+ } else if (priv->cfg->bt_params) {

where the applied one has:

+ } else if (priv->lib->bt_params) {

This breaks the build with:
drivers/net/wireless/iwlwifi/dvm/main.c: In function 'iwl_alive_start':
drivers/net/wireless/iwlwifi/dvm/main.c:761:22: error: 'const struct iwl_lib_ops' has no member named 'bt_params'
scripts/Makefile.build:307: recipe for target 'drivers/net/wireless/iwlwifi/dvm/main.o' failed
make[5]: *** [drivers/net/wireless/iwlwifi/dvm/main.o] Error 1
scripts/Makefile.build:454: recipe for target 'drivers/net/wireless/iwlwifi/dvm' failed
make[4]: *** [drivers/net/wireless/iwlwifi/dvm] Error 2
scripts/Makefile.build:454: recipe for target 'drivers/net/wireless/iwlwifi' failed
make[3]: *** [drivers/net/wireless/iwlwifi] Error 2
make[3]: *** Waiting for unfinished jobs....
scripts/Makefile.build:454: recipe for target 'drivers/net/wireless' failed
make[2]: *** [drivers/net/wireless] Error 2
scripts/Makefile.build:454: recipe for target 'drivers/net' failed
make[1]: *** [drivers/net] Error 2
make[1]: *** Waiting for unfinished jobs....

The original patch compiles fine. Please, fix it.

Comment 42 Josh Boyer 2013-07-14 01:52:37 UTC
(In reply to Joshua Covington from comment #41)
> There is a typo in the patch applied to f17/f18/f19 as well as the
> iwlwifi-fixes tree. The original patch says:
> 
> + } else if (priv->cfg->bt_params) {
> 
> where the applied one has:
> 
> + } else if (priv->lib->bt_params) {
> 
> This breaks the build with:
> drivers/net/wireless/iwlwifi/dvm/main.c: In function 'iwl_alive_start':
> drivers/net/wireless/iwlwifi/dvm/main.c:761:22: error: 'const struct
> iwl_lib_ops' has no member named 'bt_params'
> scripts/Makefile.build:307: recipe for target
> 'drivers/net/wireless/iwlwifi/dvm/main.o' failed
> make[5]: *** [drivers/net/wireless/iwlwifi/dvm/main.o] Error 1
> scripts/Makefile.build:454: recipe for target
> 'drivers/net/wireless/iwlwifi/dvm' failed
> make[4]: *** [drivers/net/wireless/iwlwifi/dvm] Error 2
> scripts/Makefile.build:454: recipe for target 'drivers/net/wireless/iwlwifi'
> failed
> make[3]: *** [drivers/net/wireless/iwlwifi] Error 2
> make[3]: *** Waiting for unfinished jobs....
> scripts/Makefile.build:454: recipe for target 'drivers/net/wireless' failed
> make[2]: *** [drivers/net/wireless] Error 2
> scripts/Makefile.build:454: recipe for target 'drivers/net' failed
> make[1]: *** [drivers/net] Error 2
> make[1]: *** Waiting for unfinished jobs....
> 
> The original patch compiles fine. Please, fix it.

Fixed in all 3 branches.  Thanks for pointing this out.

Comment 43 Dan Mashal 2013-07-14 01:58:50 UTC
Will try and test this ASAP (hopefully Monday)

Comment 44 Fedora Update System 2013-07-14 11:22:39 UTC
kernel-3.9.10-100.fc17 has been submitted as an update for Fedora 17.
https://admin.fedoraproject.org/updates/kernel-3.9.10-100.fc17

Comment 45 Fedora Update System 2013-07-14 11:28:09 UTC
kernel-3.9.10-200.fc18 has been submitted as an update for Fedora 18.
https://admin.fedoraproject.org/updates/kernel-3.9.10-200.fc18

Comment 46 Fedora Update System 2013-07-15 01:05:19 UTC
Package kernel-3.9.10-200.fc18:
* should fix your issue,
* was pushed to the Fedora 18 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing kernel-3.9.10-200.fc18'
as soon as you are able to, then reboot.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2013-12987/kernel-3.9.10-200.fc18
then log in and leave karma (feedback).

Comment 47 Fedora Update System 2013-07-18 06:10:13 UTC
kernel-3.9.10-100.fc17 has been pushed to the Fedora 17 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 48 Fedora Update System 2013-07-20 09:40:41 UTC
kernel-3.9.10-200.fc18 has been pushed to the Fedora 18 stable repository.  If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.