Bug 845740 - kernel-3.5.0-2.fc17.x86_64 iwlwifi module does not load because modprobe cannot find the module. Fix is to call insmod with the module path.
Summary: kernel-3.5.0-2.fc17.x86_64 iwlwifi module does not load because modprobe cann...
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Fedora
Classification: Fedora
Component: kernel
Version: 17
Hardware: x86_64
OS: Linux
unspecified
medium
Target Milestone: ---
Assignee: Kernel Maintainer List
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2012-08-04 11:06 UTC by luavi1
Modified: 2012-08-04 11:27 UTC (History)
5 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2012-08-04 11:27:25 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description luavi1 2012-08-04 11:06:50 UTC
Description of problem:
modprobe fails to find a nework module with the new 3.5 kernel:
# modprobe iwlwifi
# ERROR: could not insert 'iwlwifi': No such file or directory

Version-Release number of selected component (if applicable):
kernel-3.5.0-2.fc17.x86_64

How reproducible:
1) yum update -y;reboot
2) iwlwifi does not load

  
Actual results:
module does not load.

Expected results:
module loads.

Additional info:
Can be fixed by pointing at the module:

# insmod /usr/lib/modules/3.5.0-2.fc17.x86_64/kernel/drivers/net/wireless/iwlwifi/iwlwifi.ko 

# lsmod|grep wi
iwlwifi               332312  0 
mac80211              521833  1 iwlwifi
cfg80211              192150  2 iwlwifi,mac80211

Comment 1 luavi1 2012-08-04 11:27:25 UTC
The issue was in a deprecated parameter:
# insmod /lib/modules/3.5.0-2.fc17.x86_64/kernel/drivers/net/wireless/iwlwifi/iwlwifi.ko power_level=5 led_mode=1 power_save=1 no_sleep_autoadjust=0
Error: could not insert module /lib/modules/3.5.0-2.fc17.x86_64/kernel/drivers/net/wireless/iwlwifi/iwlwifi.ko: Unknown symbol in module

The offending part was no_sleep_autoadjust=0; after removal everything works.


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