[opensuse-factory] Tumbleweed with kernel 4.6 nightmares
Kernel 2.6 in the latest tumbleweed snapshot causes problems on Toshiba Satellite L775D laptops. The end symptom is that the wireless NIC does not work (Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)). Looking the logs, it looks like there are multiple processes seg faulting, starting with panel-10-power, rtl8192ce:rtl92ce_get_hw_reg(), wpa_supplicant, etc. Switching back to kernel 4.5.4-1 makes the wifi work again. Is anyone else seeing similar issues with kernel 4.6? Thank you in advance for your help, --Moby -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On 06/02/2016 10:19 PM, Moby wrote:
Kernel 2.6 in the latest tumbleweed snapshot causes problems on Toshiba Satellite L775D laptops. The end symptom is that the wireless NIC does not work (Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)).
Looking the logs, it looks like there are multiple processes seg faulting, starting with panel-10-power, rtl8192ce:rtl92ce_get_hw_reg(), wpa_supplicant, etc.
Switching back to kernel 4.5.4-1 makes the wifi work again. Is anyone else seeing similar issues with kernel 4.6?
Thank you in advance for your help,
A patch to fix the a bug in 4.6 has been submitted for 4.7, and it will be backported to 4.6 when it reaches mainline. If you wish to fix it, the patch is diff --git a/drivers/net/wireless/realtek/rtlwifi/core.c b/drivers/net/wireless/realtek/rtlwifi/core.c index 0f48048..3a0faa8 100644 --- a/drivers/net/wireless/realtek/rtlwifi/core.c +++ b/drivers/net/wireless/realtek/rtlwifi/core.c @@ -54,7 +54,7 @@ EXPORT_SYMBOL(channel5g_80m); void rtl_addr_delay(u32 addr) { if (addr == 0xfe) - msleep(50); + mdelay(50); else if (addr == 0xfd) msleep(5); else if (addr == 0xfc) @@ -75,7 +75,7 @@ void rtl_rfreg_delay(struct ieee80211_hw *hw, enum radio_path rfpath, u32 addr, rtl_addr_delay(addr); } else { rtl_set_rfreg(hw, rfpath, addr, mask, data); - usleep_range(1, 2); + udelay(1); } } EXPORT_SYMBOL(rtl_rfreg_delay); @@ -86,7 +86,7 @@ void rtl_bb_delay(struct ieee80211_hw *hw, u32 addr, u32 data) rtl_addr_delay(addr); } else { rtl_set_bbreg(hw, addr, MASKDWORD, data); - usleep_range(1, 2); + udelay(1); } } EXPORT_SYMBOL(rtl_bb_delay); Larry -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On Fri, 03 Jun 2016 06:35:56 +0200, Larry Finger wrote:
On 06/02/2016 10:19 PM, Moby wrote:
Kernel 2.6 in the latest tumbleweed snapshot causes problems on Toshiba Satellite L775D laptops. The end symptom is that the wireless NIC does not work (Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)).
Looking the logs, it looks like there are multiple processes seg faulting, starting with panel-10-power, rtl8192ce:rtl92ce_get_hw_reg(), wpa_supplicant, etc.
Switching back to kernel 4.5.4-1 makes the wifi work again. Is anyone else seeing similar issues with kernel 4.6?
Thank you in advance for your help,
A patch to fix the a bug in 4.6 has been submitted for 4.7, and it will be backported to 4.6 when it reaches mainline.
Note that, although backporting through stable tree is ideal, it's also acceptable to backport it beforehand to openSUSE kernel if the patch has been already merged in (subsystem) maintainer's tree, too. But we need a Bugzilla entry above all. thanks, Takashi -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On 06/03/2016 12:48 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 06:35:56 +0200, Larry Finger wrote:
On 06/02/2016 10:19 PM, Moby wrote:
Kernel 2.6 in the latest tumbleweed snapshot causes problems on Toshiba Satellite L775D laptops. The end symptom is that the wireless NIC does not work (Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)).
Looking the logs, it looks like there are multiple processes seg faulting, starting with panel-10-power, rtl8192ce:rtl92ce_get_hw_reg(), wpa_supplicant, etc.
Switching back to kernel 4.5.4-1 makes the wifi work again. Is anyone else seeing similar issues with kernel 4.6?
Thank you in advance for your help,
A patch to fix the a bug in 4.6 has been submitted for 4.7, and it will be backported to 4.6 when it reaches mainline.
Note that, although backporting through stable tree is ideal, it's also acceptable to backport it beforehand to openSUSE kernel if the patch has been already merged in (subsystem) maintainer's tree, too.
But we need a Bugzilla entry above all.
thanks,
Takashi
Thanks Larry and Takashi, good to know a patch is in the works. I will wait for patch to be released via official channels. Do I still need to open a bugzilla entry for this? --Moby -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On Fri, 03 Jun 2016 15:42:19 +0200, Moby wrote:
On 06/03/2016 12:48 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 06:35:56 +0200, Larry Finger wrote:
On 06/02/2016 10:19 PM, Moby wrote:
Kernel 2.6 in the latest tumbleweed snapshot causes problems on Toshiba Satellite L775D laptops. The end symptom is that the wireless NIC does not work (Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)).
Looking the logs, it looks like there are multiple processes seg faulting, starting with panel-10-power, rtl8192ce:rtl92ce_get_hw_reg(), wpa_supplicant, etc.
Switching back to kernel 4.5.4-1 makes the wifi work again. Is anyone else seeing similar issues with kernel 4.6?
Thank you in advance for your help,
A patch to fix the a bug in 4.6 has been submitted for 4.7, and it will be backported to 4.6 when it reaches mainline.
Note that, although backporting through stable tree is ideal, it's also acceptable to backport it beforehand to openSUSE kernel if the patch has been already merged in (subsystem) maintainer's tree, too.
But we need a Bugzilla entry above all.
thanks,
Takashi
Thanks Larry and Takashi, good to know a patch is in the works. I will wait for patch to be released via official channels. Do I still need to open a bugzilla entry for this?
Yes, it's still worth. Then we can provide a quickfix KMP for testing, too, in order to confirm that the patch actually fixes your problem. Takashi -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On 06/03/2016 08:44 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 15:42:19 +0200, Moby wrote:
On 06/03/2016 12:48 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 06:35:56 +0200, Larry Finger wrote:
On 06/02/2016 10:19 PM, Moby wrote:
Kernel 2.6 in the latest tumbleweed snapshot causes problems on Toshiba Satellite L775D laptops. The end symptom is that the wireless NIC does not work (Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)).
Looking the logs, it looks like there are multiple processes seg faulting, starting with panel-10-power, rtl8192ce:rtl92ce_get_hw_reg(), wpa_supplicant, etc.
Switching back to kernel 4.5.4-1 makes the wifi work again. Is anyone else seeing similar issues with kernel 4.6?
Thank you in advance for your help,
A patch to fix the a bug in 4.6 has been submitted for 4.7, and it will be backported to 4.6 when it reaches mainline.
Note that, although backporting through stable tree is ideal, it's also acceptable to backport it beforehand to openSUSE kernel if the patch has been already merged in (subsystem) maintainer's tree, too.
But we need a Bugzilla entry above all.
thanks,
Takashi
Thanks Larry and Takashi, good to know a patch is in the works. I will wait for patch to be released via official channels. Do I still need to open a bugzilla entry for this?
Yes, it's still worth. Then we can provide a quickfix KMP for testing, too, in order to confirm that the patch actually fixes your problem.
Takashi
Thanks Takashi, submitted https://bugzilla.opensuse.org/show_bug.cgi?id=983036. I picked opensuse 13.2 in the OS list in bugzilla since I did not see tumblewed listed in the dropdown. -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On 06/03/2016 08:51 AM, Moby wrote:
On 06/03/2016 08:44 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 15:42:19 +0200, Moby wrote:
On 06/03/2016 12:48 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 06:35:56 +0200, Larry Finger wrote:
On 06/02/2016 10:19 PM, Moby wrote:
Kernel 2.6 in the latest tumbleweed snapshot causes problems on Toshiba Satellite L775D laptops. The end symptom is that the wireless NIC does not work (Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)).
Looking the logs, it looks like there are multiple processes seg faulting, starting with panel-10-power, rtl8192ce:rtl92ce_get_hw_reg(), wpa_supplicant, etc.
Switching back to kernel 4.5.4-1 makes the wifi work again. Is anyone else seeing similar issues with kernel 4.6?
Thank you in advance for your help,
A patch to fix the a bug in 4.6 has been submitted for 4.7, and it will be backported to 4.6 when it reaches mainline.
Note that, although backporting through stable tree is ideal, it's also acceptable to backport it beforehand to openSUSE kernel if the patch has been already merged in (subsystem) maintainer's tree, too.
But we need a Bugzilla entry above all.
thanks,
Takashi
Thanks Larry and Takashi, good to know a patch is in the works. I will wait for patch to be released via official channels. Do I still need to open a bugzilla entry for this?
Yes, it's still worth. Then we can provide a quickfix KMP for testing, too, in order to confirm that the patch actually fixes your problem.
Takashi
Thanks Takashi, submitted https://bugzilla.opensuse.org/show_bug.cgi?id=983036. I picked opensuse 13.2 in the OS list in bugzilla since I did not see tumblewed listed in the dropdown.
I attached a copy of the patch with full commit message to boo #983036. Larry -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On 06/03/2016 09:07 AM, Larry Finger wrote:
On 06/03/2016 08:51 AM, Moby wrote:
On 06/03/2016 08:44 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 15:42:19 +0200, Moby wrote:
On 06/03/2016 12:48 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 06:35:56 +0200, Larry Finger wrote:
On 06/02/2016 10:19 PM, Moby wrote: > Kernel 2.6 in the latest tumbleweed snapshot causes problems on > Toshiba > Satellite L775D laptops. > The end symptom is that the wireless NIC does not work (Realtek > Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev > 01)). > > Looking the logs, it looks like there are multiple processes seg > faulting, starting with panel-10-power, > rtl8192ce:rtl92ce_get_hw_reg(), > wpa_supplicant, etc. > > Switching back to kernel 4.5.4-1 makes the wifi work again. Is > anyone > else seeing similar issues with kernel 4.6? > > Thank you in advance for your help,
A patch to fix the a bug in 4.6 has been submitted for 4.7, and it will be backported to 4.6 when it reaches mainline.
Note that, although backporting through stable tree is ideal, it's also acceptable to backport it beforehand to openSUSE kernel if the patch has been already merged in (subsystem) maintainer's tree, too.
But we need a Bugzilla entry above all.
thanks,
Takashi
Thanks Larry and Takashi, good to know a patch is in the works. I will wait for patch to be released via official channels. Do I still need to open a bugzilla entry for this?
Yes, it's still worth. Then we can provide a quickfix KMP for testing, too, in order to confirm that the patch actually fixes your problem.
Takashi
Thanks Takashi, submitted https://bugzilla.opensuse.org/show_bug.cgi?id=983036. I picked opensuse 13.2 in the OS list in bugzilla since I did not see tumblewed listed in the dropdown.
I attached a copy of the patch with full commit message to boo #983036.
Larry
Thank you Larry and Takashi. I tried the patch and it worked beautifully, the problem is completely fixed with this patch. Regards, -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On 06/03/2016 08:44 PM, Moby wrote:
On 06/03/2016 09:07 AM, Larry Finger wrote:
On 06/03/2016 08:51 AM, Moby wrote:
On 06/03/2016 08:44 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 15:42:19 +0200, Moby wrote:
On 06/03/2016 12:48 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 06:35:56 +0200, Larry Finger wrote: > > On 06/02/2016 10:19 PM, Moby wrote: >> Kernel 2.6 in the latest tumbleweed snapshot causes problems on >> Toshiba >> Satellite L775D laptops. >> The end symptom is that the wireless NIC does not work (Realtek >> Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev >> 01)). >> >> Looking the logs, it looks like there are multiple processes seg >> faulting, starting with panel-10-power, >> rtl8192ce:rtl92ce_get_hw_reg(), >> wpa_supplicant, etc. >> >> Switching back to kernel 4.5.4-1 makes the wifi work again. Is >> anyone >> else seeing similar issues with kernel 4.6? >> >> Thank you in advance for your help, > > A patch to fix the a bug in 4.6 has been submitted for 4.7, and it > will be backported to 4.6 when it reaches mainline.
Note that, although backporting through stable tree is ideal, it's also acceptable to backport it beforehand to openSUSE kernel if the patch has been already merged in (subsystem) maintainer's tree, too.
But we need a Bugzilla entry above all.
thanks,
Takashi
Thanks Larry and Takashi, good to know a patch is in the works. I will wait for patch to be released via official channels. Do I still need to open a bugzilla entry for this?
Yes, it's still worth. Then we can provide a quickfix KMP for testing, too, in order to confirm that the patch actually fixes your problem.
Takashi
Thanks Takashi, submitted https://bugzilla.opensuse.org/show_bug.cgi?id=983036. I picked opensuse 13.2 in the OS list in bugzilla since I did not see tumblewed listed in the dropdown.
I attached a copy of the patch with full commit message to boo #983036.
Larry
Thank you Larry and Takashi. I tried the patch and it worked beautifully, the problem is completely fixed with this patch.
Regards,
I just tried the kernel from the kernel stable repo, and it did not seem to have the fix (I had the same issue). I switched back to the standard tumbleweed kernel with the patch RPM from Takashi and it is working fine again. I plan on staying this way until the next (or the one after that) kernel rev in the tumbleweed repo gets the fix. Thanks again. --Moby -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On 06/04/2016 02:17 PM, Moby wrote:
On 06/03/2016 08:44 PM, Moby wrote:
On 06/03/2016 09:07 AM, Larry Finger wrote:
On 06/03/2016 08:51 AM, Moby wrote:
On 06/03/2016 08:44 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 15:42:19 +0200, Moby wrote:
On 06/03/2016 12:48 AM, Takashi Iwai wrote: > On Fri, 03 Jun 2016 06:35:56 +0200, > Larry Finger wrote: >> >> On 06/02/2016 10:19 PM, Moby wrote: >>> Kernel 2.6 in the latest tumbleweed snapshot causes problems on >>> Toshiba >>> Satellite L775D laptops. >>> The end symptom is that the wireless NIC does not work (Realtek >>> Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev >>> 01)). >>> >>> Looking the logs, it looks like there are multiple processes seg >>> faulting, starting with panel-10-power, >>> rtl8192ce:rtl92ce_get_hw_reg(), >>> wpa_supplicant, etc. >>> >>> Switching back to kernel 4.5.4-1 makes the wifi work again. Is >>> anyone >>> else seeing similar issues with kernel 4.6? >>> >>> Thank you in advance for your help, >> >> A patch to fix the a bug in 4.6 has been submitted for 4.7, and it >> will be backported to 4.6 when it reaches mainline. > > Note that, although backporting through stable tree is ideal, it's > also acceptable to backport it beforehand to openSUSE kernel if the > patch has been already merged in (subsystem) maintainer's tree, too. > > But we need a Bugzilla entry above all. > > > thanks, > > Takashi >
Thanks Larry and Takashi, good to know a patch is in the works. I will wait for patch to be released via official channels. Do I still need to open a bugzilla entry for this?
Yes, it's still worth. Then we can provide a quickfix KMP for testing, too, in order to confirm that the patch actually fixes your problem.
Takashi
Thanks Takashi, submitted https://bugzilla.opensuse.org/show_bug.cgi?id=983036. I picked opensuse 13.2 in the OS list in bugzilla since I did not see tumblewed listed in the dropdown.
I attached a copy of the patch with full commit message to boo #983036.
Larry
Thank you Larry and Takashi. I tried the patch and it worked beautifully, the problem is completely fixed with this patch.
Regards,
I just tried the kernel from the kernel stable repo, and it did not seem to have the fix (I had the same issue). I switched back to the standard tumbleweed kernel with the patch RPM from Takashi and it is working fine again. I plan on staying this way until the next (or the one after that) kernel rev in the tumbleweed repo gets the fix.
Thanks again.
Moby, Yes, at the moment only Takashi's special kernel RPM has the patch. That patch was pushed upstream from the wireless-drivers repo to the net maintainer within the past 24 hours. It will likely be included in the 4.7-rc3 kernel in 7 or 8 days, and then be backported to 4.6.X. Progress can be glacially slow at times. Fortunately for most Realtek users, only the RTL8192CE is affected. That is unfortunate for you, of course. Larry Larry -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On Sat, 04 Jun 2016 21:30:52 +0200, Larry Finger wrote:
On 06/04/2016 02:17 PM, Moby wrote:
On 06/03/2016 08:44 PM, Moby wrote:
On 06/03/2016 09:07 AM, Larry Finger wrote:
On 06/03/2016 08:51 AM, Moby wrote:
On 06/03/2016 08:44 AM, Takashi Iwai wrote:
On Fri, 03 Jun 2016 15:42:19 +0200, Moby wrote: > > > > On 06/03/2016 12:48 AM, Takashi Iwai wrote: >> On Fri, 03 Jun 2016 06:35:56 +0200, >> Larry Finger wrote: >>> >>> On 06/02/2016 10:19 PM, Moby wrote: >>>> Kernel 2.6 in the latest tumbleweed snapshot causes problems on >>>> Toshiba >>>> Satellite L775D laptops. >>>> The end symptom is that the wireless NIC does not work (Realtek >>>> Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev >>>> 01)). >>>> >>>> Looking the logs, it looks like there are multiple processes seg >>>> faulting, starting with panel-10-power, >>>> rtl8192ce:rtl92ce_get_hw_reg(), >>>> wpa_supplicant, etc. >>>> >>>> Switching back to kernel 4.5.4-1 makes the wifi work again. Is >>>> anyone >>>> else seeing similar issues with kernel 4.6? >>>> >>>> Thank you in advance for your help, >>> >>> A patch to fix the a bug in 4.6 has been submitted for 4.7, and it >>> will be backported to 4.6 when it reaches mainline. >> >> Note that, although backporting through stable tree is ideal, it's >> also acceptable to backport it beforehand to openSUSE kernel if the >> patch has been already merged in (subsystem) maintainer's tree, too. >> >> But we need a Bugzilla entry above all. >> >> >> thanks, >> >> Takashi >> > > Thanks Larry and Takashi, good to know a patch is in the works. I will > wait for patch to be released via official channels. Do I still > need to > open a bugzilla entry for this?
Yes, it's still worth. Then we can provide a quickfix KMP for testing, too, in order to confirm that the patch actually fixes your problem.
Takashi
Thanks Takashi, submitted https://bugzilla.opensuse.org/show_bug.cgi?id=983036. I picked opensuse 13.2 in the OS list in bugzilla since I did not see tumblewed listed in the dropdown.
I attached a copy of the patch with full commit message to boo #983036.
Larry
Thank you Larry and Takashi. I tried the patch and it worked beautifully, the problem is completely fixed with this patch.
Regards,
I just tried the kernel from the kernel stable repo, and it did not seem to have the fix (I had the same issue). I switched back to the standard tumbleweed kernel with the patch RPM from Takashi and it is working fine again. I plan on staying this way until the next (or the one after that) kernel rev in the tumbleweed repo gets the fix.
Thanks again.
Moby,
Yes, at the moment only Takashi's special kernel RPM has the patch. That patch was pushed upstream from the wireless-drivers repo to the net maintainer within the past 24 hours. It will likely be included in the 4.7-rc3 kernel in 7 or 8 days, and then be backported to 4.6.X. Progress can be glacially slow at times. Fortunately for most Realtek users, only the RTL8192CE is affected. That is unfortunate for you, of course.
FYI, I already backported the patch to openSUSE stable kernel branch, so you can use the kernel in OBS Kernel:stable repo (currently 4.6.1) until it hits to FACTORY / TW. BTW, once when the fixed update kernel is installed on your machine, don't forget to uninstall rtlwifi-quickfix-kmp, too. There is no automatic obsoletes / deletion. Keeping the old package should be harmless but a waste of space. Takashi -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
Moby,
Yes, at the moment only Takashi's special kernel RPM has the patch. That patch was pushed upstream from the wireless-drivers repo to the net maintainer within the past 24 hours. It will likely be included in the 4.7-rc3 kernel in 7 or 8 days, and then be backported to 4.6.X. Progress can be glacially slow at times. Fortunately for most Realtek users, only the RTL8192CE is affected. That is unfortunate for you, of course.
FYI, I already backported the patch to openSUSE stable kernel branch, so you can use the kernel in OBS Kernel:stable repo (currently 4.6.1) until it hits to FACTORY / TW.
BTW, once when the fixed update kernel is installed on your machine, don't forget to uninstall rtlwifi-quickfix-kmp, too. There is no automatic obsoletes / deletion. Keeping the old package should be harmless but a waste of space.
Takashi
Well, kernel-default-4.6.1-1.1 in tumbleweed release 20160607 did not have the fix. After updating to that version, I had to downgrade the kernel to 4.6.0 and then apply the special Takashi fix RPM. Is there any easy way to know when a kernel update has the fix? -- --Moby -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
On Fri, 10 Jun 2016 03:23:22 +0200, Moby wrote:
Moby,
Yes, at the moment only Takashi's special kernel RPM has the patch. That patch was pushed upstream from the wireless-drivers repo to the net maintainer within the past 24 hours. It will likely be included in the 4.7-rc3 kernel in 7 or 8 days, and then be backported to 4.6.X. Progress can be glacially slow at times. Fortunately for most Realtek users, only the RTL8192CE is affected. That is unfortunate for you, of course.
FYI, I already backported the patch to openSUSE stable kernel branch, so you can use the kernel in OBS Kernel:stable repo (currently 4.6.1) until it hits to FACTORY / TW.
BTW, once when the fixed update kernel is installed on your machine, don't forget to uninstall rtlwifi-quickfix-kmp, too. There is no automatic obsoletes / deletion. Keeping the old package should be harmless but a waste of space.
Takashi
Well, kernel-default-4.6.1-1.1 in tumbleweed release 20160607 did not have the fix. After updating to that version, I had to downgrade the kernel to 4.6.0 and then apply the special Takashi fix RPM. Is there any easy way to know when a kernel update has the fix?
Take a look at rpm changelog and see the bugzilla number reference. Takashi -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-factory+owner@opensuse.org
participants (3)
-
Larry Finger
-
Moby
-
Takashi Iwai