Re: acer-wmi: rfkill and bluetooth enabling doesn't work as in 2.6.37

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Joey Lee,

On Tuesday 22 March 2011 03:32:01 Joey Lee wrote:
> æ äï2011-03-21 æ 21:44 +0100ïOldÅich JedliÄka æåï
> 
> > Hi Joey Lee,
> > 
> > On Monday 21 March 2011 18:52:58 Joey Lee wrote:
> > > Hi OldÅich,
> > > 
> > > æ äï2011-03-21 æ 05:26 -0600ïJoey Lee æåï
> > > 
> > > > Add Cc. to experts: Johannes Berg, David S. Miller, Marcel Holtmann
> > > > and Gary Lin
> > > > 
> > > > Hi OldÅich,
> > > > 
> > > > æ æï2011-03-20 æ 21:09 +0100ïOldÅich JedliÄka æåï
> > > > 
> > > > > Hi Joey Lee,
> > > > > 
> > > > > Finally I've got little time to expriment.
> > > > 
> > > > Thank's for you also reserve time to trace it. And, I also add
> > > > comment on bugzilla:
> > > > https://bugzilla.kernel.org/show_bug.cgi?id=31002
> > > > 
> > > > > On Wednesday 16 March 2011 09:59:16 Joey Lee wrote:
> > > > > > Hi OldÅich,
> > > > > > 
> > > > > > æ äï2011-03-16 æ 07:32 +0100ïOldÅich JedliÄka æåï
> > > > > > 
> > > > > > > > After trace rfkill-input stuff, I thought this is
> > > > > > > > rfkill-input's normal behavior but not a bug.
> > > > > > > > 
> > > > > > > > Unfortunately, I didn't find any workaround way when a driver
> > > > > > > > need to call rfkill_init_sw_state, e.g. acer-wmi driver.
> > > > > > > > 
> > > > > > > > The rfkill-input will sync the rfkill state to all
> > > > > > > > killswitchs that have the same type. For example, acer-wmi
> > > > > > > > set the initial software switch to _BLOCK_ when driver
> > > > > > > > initial, then rfkill-input will also set any new bluetooth
> > > > > > > > killswitch state to _BLOCK_ .
> > > > > > > 
> > > > > > > The rfkill_sync_work syncs with rfkill_global_states, which is
> > > > > > > set during intitialization or by rfkill_switch_all, if I read
> > > > > > > it correctly. This should be independent to acer-bluetooth
> > > > > > > state. The rfkill_global_states[BLUETOOTH] should be unblocked
> > > > > > > initially, I need to verify it.
> > > > > > 
> > > > > > Yes!
> > > > > > Ideally, killswitch state should be independent to different
> > > > > > driver, even the killswitch type is the same.
> > > > > > 
> > > > > > But,
> > > > > > If you enabled CONFIG_RFKILL_INPUT, then rfkill_register will
> > > > > > replicate state for each killswitch that have the same type:
> > > > > > 
> > > > > > vi net/rfkill/core.c
> > > > > > 
> > > > > > int __must_check rfkill_register(struct rfkill *rfkill)
> > > > > > {
> > > > > > ...
> > > > > > 
> > > > > >         if (!rfkill->persistent || rfkill_epo_lock_active) {
> > > > > >         
> > > > > >                 schedule_work(&rfkill->sync_work);
> > > > > >         
> > > > > >         } else {		/* if rfkill->persistent then set the 
state
> > 
> > to all
> > 
> > > > > the
> > > > > 
> > > > > > same type */ #ifdef CONFIG_RFKILL_INPUT	/* when
> > > > > > CONFIG_RFKILL_INPUT = Y */
> > > > > > 
> > > > > >                 bool soft_blocked = !!(rfkill->state &
> > > > > >                 RFKILL_BLOCK_SW);
> > > > > >                 
> > > > > >                 if (!atomic_read(&rfkill_input_disabled))
> > > > > >                 
> > > > > >                         __rfkill_switch_all(rfkill->type,
> > > > > >                         soft_blocked);	/*
> > > > > > 
> > > > > > here call switch all to sync state */ #endif
> > > > > > 
> > > > > >         }
> > > > > > 
> > > > > > When any driver call rfkill_init_sw_state for set the initial
> > > > > > state to killswitch, this rfkill->persistent will set to true:
> > > > > > 
> > > > > > void rfkill_init_sw_state(struct rfkill *rfkill, bool blocked)	
/*
> > > > > > acer-
> > > > > 
> > > > > wmi
> > > > > 
> > > > > > driver used it to set inital killswitch state */ {
> > > > > > ....
> > > > > > 
> > > > > >         spin_lock_irqsave(&rfkill->lock, flags);
> > > > > >         __rfkill_set_sw_state(rfkill, blocked);
> > > > > >         rfkill->persistent = true			/* persistent set 
to
> > 
> > true */
> > 
> > > > > > That's why acer-wmi bluetooth killswitch's state was been
> > > > > > replicate to hci_core's killswitch state.
> > > > > > 
> > > > > > When CONFIG_RFKILL_INPUT set to Y, and any driver call
> > > > > > rfkill_init_sw_state before register rfkill, then rfkill_register
> > > > > > will try to sync state to the same killswitch type like the
> > > > > > above.
> > > > > > 
> > > > > > It's make sense,
> > > > > > because rfkill-input only can block/unblock the same killswitch
> > > > > > type at the same time, before rfkill-input active, it want all
> > > > > > the same type's state is full the same.
> > > > > > 
> > > > > > And,
> > > > > > rfkill-input also suppose user only can use keycode (maybe Fn
> > > > > > key) to control killswitch state, so, direct use rkill tool or
> > > > > > echo state to killswitch for change the state will cause
> > > > > > killswitchs' state lost link. It like we do.
> > > > > > 
> > > > > > > There is some magic in rfkill/input.c that plays with global
> > > > > > > states, but I don't know if or how that one is used in my case.
> > > > > > 
> > > > > > Suggest you can disable CONFIG_RFKILL_INPUT or markup the
> > > > > > following code. You will see the new bluetooth killswitch will
> > > > > > be unblock when it created.
> > > > > > 
> > > > > > diff --git a/net/rfkill/core.c b/net/rfkill/core.c
> > > > > > index 0198191..0dec078 100644
> > > > > > --- a/net/rfkill/core.c
> > > > > > +++ b/net/rfkill/core.c
> > > > > > @@ -950,14 +950,14 @@ int __must_check rfkill_register(struct
> > > > > > rfkill *rfkill)
> > > > > > 
> > > > > >         if (!rfkill->persistent || rfkill_epo_lock_active) {
> > > > > >         
> > > > > >                 schedule_work(&rfkill->sync_work);
> > > > > > 
> > > > > > -       } else {
> > > > > > -#ifdef CONFIG_RFKILL_INPUT
> > > > > > -               bool soft_blocked = !!(rfkill->state &
> > > > > > RFKILL_BLOCK_SW); -
> > > > > > -               if (!atomic_read(&rfkill_input_disabled))
> > > > > > -                       __rfkill_switch_all(rfkill->type,
> > > > > > soft_blocked); -#endif
> > > > > > -       }
> > > > > > +       } //else {
> > > > > > +//#ifdef CONFIG_RFKILL_INPUT
> > > > > > +//             bool soft_blocked = !!(rfkill->state &
> > > > > > RFKILL_BLOCK_SW); +//
> > > > > > +//             if (!atomic_read(&rfkill_input_disabled))
> > > > > > +//                     __rfkill_switch_all(rfkill->type,
> > > > > > soft_blocked); +//#endif
> > > > > > +//     }
> > > > > > 
> > > > > >         rfkill_send_events(rfkill, RFKILL_OP_ADD);
> > > > > 
> > > > > Both work. I've tested first CONFIG_RFKILL_INPUT disabled. Second
> > > > > I've tried to enable CONFIG_RFKILL_INPUT, but remove the mentioned
> > > > > block of code. The result is working bluetooth HW switch.
> > > > 
> > > > Yes, that because the following patch introduce
> > > > driver with persistent state will affect the global state only if
> > > > rfkill-input is enabled:
> > > > 
> > > > http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=co
> > > > mmit ;h=b3fa1329eaf2a7b97124dacf5b663fd51346ac19
> > > > 
> > > > It maybe workaround another rfkill-input issue, but causes it
> > > > replicate acer-wmi's bluetooth killswitch initial state (or any
> > > > driver that used rfkill_init_sw_state) to any new bluetooth
> > > > killswitch.
> > > > 
> > > > It's not make sense.
> > > > 
> > > > > > > > Acer's BIOS default setup bluetooth's state is disable when
> > > > > > > > system cold boot, and BIOS also can save the connection
> > > > > > > > devices' state when system reboot. Currently, acer-wmi
> > > > > > > > driver have right behavior to sync the state with BIOS.
> > > > > > > > 
> > > > > > > > Face to your situation, my suggestion is:
> > > > > > > > 
> > > > > > > > - Use userland application to correct killswitch state.
> > > > > > > > 
> > > > > > > >   highly suggest You can try urfkill daemon:
> > > > > > > > http://www.freedesktop.org/wiki/Software/urfkill or
> > > > > > > > 
> > > > > > > >   write a startup script to enable bluetooth when system
> > > > > > > >   boot.
> > > > > > > > 
> > > > > > > > - Disable rfkill-input module if you didn't real use it.
> > > > > > > > 
> > > > > > > >   The TravelMate 5730G have wifi hotkey that only emit
> > > > > > > >   KEY_WLAN, but doesn't emit KEY_BLUETOOTH, that means
> > > > > > > >   rfkill-input cann't help you enab> > > > > > I didn't have
> > > > > > > >   time to look at the problem more deeply to identify
> > > > > > > 
> > > > > > > who is setting the global state to "blocked" or what really
> > > > > > > happens. Anyway, I did some testing with pressing the HW
> > > > > > > bluetooth switch and I saw the following immediately _after_
> > > > > > > pressing the HW switch to enable bluetooth:
> > > > > > > 
> > > > > > > oldium ~ # rfkill list
> > > > > > > 0: acer-wireless: Wireless LAN
> > > > > > > 
> > > > > > >         Soft blocked: no
> > > > > > >         Hard blocked: no
> > > > > > > 
> > > > > > > 1: acer-bluetooth: Bluetooth
> > > > > > > 
> > > > > > >         Soft blocked: no
> > > > > > >         Hard blocked: no
> > > > > > > 
> > > > > > > 2: acer-threeg: Wireless WAN
> > > > > > > 
> > > > > > >         Soft blocked: yes
> > > > > > >         Hard blocked: no
> > > > > > > 
> > > > > > > 3: phy0: Wireless LAN
> > > > > > > 
> > > > > > >         Soft blocked: no
> > > > > > >         Hard blocked: no
> > > > > > > 
> > > > > > > I had this output 3 times immediately after each other. I'm
> > > > > > > using keyboard "up" and "enter" to repeat the last shell
> > > > > > > command, so this is a relatively slow operation. So the state
> > > > > > > when the
> > > > > > > acer-bluetooth was unbloc> > > >
> > > > > > > oldium ~ # rfkill list
> > > > > > > 0: acer-wireless: Wireless LAN
> > > > > > > 
> > > > > > >         Soft blocked: no
> > > > > > >         Hard blocked: no
> > > > > > > 
> > > > > > > 1: acer-bluetooth: Bluetooth
> > > > > > > 
> > > > > > >         Soft blocked: no
> > > > > > >         Hard blocked: no
> > > > > > > 
> > > > > > > 2: acer-threeg: Wireless WAN
> > > > > > > 
> > > > > > >         Soft blocked: yes
> > > > > > >         Hard blocked> > >
> > > > > > > 
> > > > > > > 5: hci0: Bluetooth
> > > > > > > 
> > > > > > >         Soft blocked: yes
> > > > > > >         Hard blocked: no
> > > > > > 
> > > > > > My Acer machine have no HW bluetooth key but only have one HW
> > > > > > WLAN key that emit KEY_WLAN.
> > > > > > Please use lshal to monitor your HW bluetooth key and make sure
> > > > > > it emit KEY_BLUETOOTH.
> > > > > 
> > > > > `lshal -m` outputs this:
> > > > > 
> > > > > <bluetooth key pressed>
> > > > > 20:45:53.694: platform_i8042_i8042_KBD_port_logicaldev_input
> > > > > condition ButtonPressed = bluetooth
> > > > > 20:45:54.666: platform_acer_wmi_rfkill_acer_bluetooth_bluetooth
> > > > > property killswitch.state = 1 (0x1)
> > > > > 20:45:54.678: usb_device_a5c_2101_noserial added
> > > > > ...
> > > > > <bluetooth key pressed again>
> > > > > 20:46:02.435: platform_i8042_i8042_KBD_port_logicaldev_input
> > > > > condition ButtonPressed = brightness-up
> > > > > 20:46:02.668: platform_acer_wmi_rfkill_acer_bluetooth_bluetooth
> > > > > property killswitch.state = 0 (0x0)
> > > > > 20:46:02.919: usb_device_a5c_2101_noserial_if1 removed
> > > > > ...
> > > > > 
> > > > > Strange is "brightness-up" key, somebody is wrong here.
> > > > 
> > > > Yes, brightness-up key is another story, maybe you can enable acpi
> > > > debug to look at montior which acpi method or _Q event method used:
> > > > 
> > > > echo 0xFFFFFFFF >/sys/module/acpi/parameters/debug_layer
> > > > echo 0xF >/sys/module/acpi/parameters/debug_level
> > > > 
> > > > But, this is not related to our current killswitch issue, let us skip
> > > > it.
> > > > 
> > > > > > > So it looks like the hci0 went blocked even when the
> > > > > > > acer-bluetooth switch was unblocked. So it looks like the hci0
> > > > > > > state is independent on the initial acer- bluetooth state.
> > > > > > > 
> > > > > > > Hopefully I have some time this evening (CET timezone) to add
> > > > > > > some stack traces and logs to see what really happens on my
> > > > > > > system.
> > > > > > > 
> > > > > > > Cheers,
> > > > > > > OldÅich.
> > > > > > 
> > > > > > Still suggest you can disable CONFIG_RFKILL_INPUT then use rfkill
> > > > > > tool to set acer-wmi bluetooth killswitch for test, must have
> > > > > > different result.
> > > > > 
> > > > > Disabling CONFIG_RFKILL_INPUT works - see above. I had a look at
> > > > > Kconfig in net/rfkill and there is a line "default y if !EXPERT"
> > > > > which means (I think) that it would be enabled by default for
> > > > > anybody not troubles as I have.
> > > > 
> > > > I agreed your point, and I don't think rfkill-input need enable for
> > > > all non-Expert user because it sometimes have conflict with EC or
> > > > userland behavior.
> > > > 
> > > > I still suggest you can disable rfkill-input then please try Gary
> > > > Lin's urfkill daemon, it can do what does rfkill-input do and more
> > > > flexibility.
> > > > 
> > > > > I've tried `rfkill unblock <acer-bluetooth number>` with my second
> > > > > test (enabled CONFIG_RFKILL_INPUT plus patched core.c) - it works
> > > > > perfectly.
> > > > > 
> > > > > Anyway, it looks like using CONFIG_RFKILL_INPUT is broken to some
> > > > > degree, because enabling the config switch changes bluetooth HW/SW
> > > > > switch from working to not-fully-working.
> > > > > 
> > > > > Cheers,
> > > > > OldÅich.
> > > > 
> > > > The root cause is what I said in the above, it's hard to fix in
> > > > kernel module because user only can choice enable/disable
> > > > rfkill-input in Kconfig and even cann't choice it when system boot.
> > > > 
> > > > I thought we need:
> > > >  - set rfkill-input to EXPERT, remove !EXPERT
> > > >  - add a kernel option to rfkill for user can choice enable it or not
> > > > 
> > > > when system boot.
> > > > 
> > > >  - Add comment in Documentation/rfkill.txt for remind user can use
> > > > 
> > > > urfkill daemon (or any other userland daemon) to replace
> > > > rfkill-input.
> > > > 
> > > > Of course need rfkill experts' more professional comments for this
> > > > topic.
> > > > I will try to gener> Thank's a lot!
> > > > Joey Lee
> > > 
> > > Finally, I removed rfkill_init_sw_state and maintain a rfkill_inited
> > > flag to workaround issue, please kindly help to test the following
> > > acer-wmi patch, it works fine to me on my acer travelmate 8572 machine.
> 
> > > Maybe it will be our backup solution after you tested:
> I attached this workaround patch to bugzilla:
> https://bugzilla.kernel.org/show_bug.cgi?id=31002#c8
> 
> > The patch works more than well - the bluetooth starts-up automatically
> > during boot. I don't know who does it, because it looks like the last
> > action done before any service gets started.
> > 
> > ...
> > [    4.434293] acer-wmi: Acer Laptop ACPI-WMI Extras
> > ...
> > [    4.559937] acer-wmi: Brightness must be controlled by generic video
> > driver ...
> > [    6.024186] usb 8-2: new full speed USB device using uhci_hcd and
> > address 2 [    6.183561] usb 8-2: New USB device found, idVendor=0a5c,
> > idProduct=2101 ...
> > [    9.763265] udev[1947]: starting version 164
> > 
> > It looks like the sync work synchronizes the state to "unblocked". I
> > don't have more time to investigate the difference today, so maybe in
> > following days - if it is important.
> > 
> > Regards,
> > OldÅich.
> 
> That's good but odd, good is the patch fixed your issue, odd is the
> behavior is not what I want and not match with my TravelMate 8572.

The key is the global state. I've used the same patch as I sent today to get 
the details, what is going on (log attached). The acer-bluetooth gets enabled 
from the global bluetooth state (rfkill_sync_work), so the hci0 gets 
automatically enabled afterwards too from the same global state.

Cheers,
OldÅich.

> Please then me clear up it. On my TravelMate 8572, the BIOS have 2
> different behavior for cold boot (shutdown then press HW power button),
> and warm boot (reboot). BIOS is:
> 	- Cold boot: back to default config is WLAN on, BT off, WWAN on
> 	- Warm boot: keep the devices state before last time reboot.
> 
> So, you can see the above, on my machine when cold boot, the BT state is
> off, the rfkill list like following:
> 
> linux-7y1r:~ # rfkill list
> 0: acer-wireless: Wireless LAN
>         Soft blocked: no
>         Hard blocked: no
> 1: acer-bluetooth: Bluetooth
>         Soft blocked: yes		# BIOS default value is disable when cold 
boot
>         Hard blocked: no
> 2: acer-threeg: Wireless WAN
>         Soft blocked: no
>         Hard blocked: no
> 3: phy0: Wireless LAN
>         Soft blocked: no
>         Hard blocked: no
> 
> Then I did rfkill unblock acer-bluetooth (sorry my machine have no BT HW
> key):
> 
> linux-7y1r:~ # rfkill unblock 1
> linux-7y1r:~ # rfkill list
> 0: acer-wireless: Wireless LAN
>         Soft blocked: no
>         Hard blocked: no
> 1: acer-bluetooth: Bluetooth
>         Soft blocked: no
>         Hard blocked: no
> 2: acer-threeg: Wireless WAN
>         Soft blocked: no
>         Hard blocked: no
> 3: phy0: Wireless4: hci0: Bluetooth
>         Soft blocked: no		#fixed by my patch, hci0's rkfill state default
> is unblock Hard blocked: no
> 
> I am not sure your TravelMate 5730G's behavior is fully the same with
> mine. Could you please find a bit time to look at rfkill state when
> system cold boot ?
> 
> Of course, please enable rfkill-input and remove any other patch but
> only keep my workaround patch:
> 0001-acer-wmi-remove-rfkill_init_sw_state-to-workaround.patch
> 
> 
> Thank's a lot!
> Joey Lee
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
[    0.259380] rfkill_input: (rfkill_handler_init) registering rfkill_handler, returned 0
[    4.711808] rfkill: (rfkill_register) registering wlan acer-wireless
[    4.711984] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[    4.711989] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[    4.712115] rfkill: (rfkill_sync_work) syncing wlan acer-wireless to unblocked
[    4.712119] rfkill: (rfkill_set_block) switching acer-wireless to unblocked
[    4.774756] rfkill: (rfkill_register) registering bluetooth acer-bluetooth
[    4.774921] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to blocked
[    4.774926] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw blocked
[    4.775114] rfkill: (rfkill_register) registering wwan acer-threeg
[    4.775253] rfkill: (rfkill_set_sw_state) setting state of acer-threeg to blocked
[    4.775258] rfkill: (__rfkill_set_sw_state) setting state of acer-threeg to sw blocked
[    4.775332] rfkill: (rfkill_sync_work) syncing bluetooth acer-bluetooth to unblocked
[    4.775337] rfkill: (rfkill_set_block) switching acer-bluetooth to unblocked
[    4.871212] rfkill: (rfkill_sync_work) syncing wwan acer-threeg to unblocked
[    4.871217] rfkill: (rfkill_set_block) switching acer-threeg to unblocked
[    5.707612] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[    5.707622] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[    5.709096] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[    5.709103] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[    6.271996] rfkill: (rfkill_register) registering bluetooth hci0
[    6.272428] rfkill: (rfkill_sync_work) syncing bluetooth hci0 to unblocked
[    6.272434] rfkill: (rfkill_set_block) switching hci0 to unblocked
[    6.707634] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[    6.707645] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[    6.709084] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[    6.709139] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[    7.707460] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[    7.707470] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[    7.708586] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[    7.708593] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[    8.707611] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[    8.707621] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[    8.709074] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[    8.709082] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[    9.707392] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[    9.707403] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[    9.708748] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[    9.708755] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[   10.707366] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[   10.707376] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[   10.708673] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[   10.708680] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[   10.877147] rfkill: (rfkill_set_hw_state) setting state of phy0 to hw unblocked
[   10.877156] rfkill: (__rfkill_set_hw_state) switching phy0 to unblocked
[   10.878092] rfkill: (rfkill_register) registering wlan phy0
[   10.878311] rfkill: (rfkill_sync_work) syncing wlan phy0 to unblocked
[   10.878317] rfkill: (rfkill_set_block) switching phy0 to unblocked
[   11.707002] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[   11.707025] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[   11.708584] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[   11.708591] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[   12.707061] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[   12.707072] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked
[   12.708924] rfkill: (rfkill_set_sw_state) setting state of acer-bluetooth to unblocked
[   12.708931] rfkill: (__rfkill_set_sw_state) setting state of acer-bluetooth to sw unblocked
[   13.708133] rfkill: (rfkill_set_sw_state) setting state of acer-wireless to unblocked
[   13.708142] rfkill: (__rfkill_set_sw_state) setting state of acer-wireless to sw unblocked

[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux