Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1513046 > unrolled thread
| Started by | Marcos Paulo de Souza <marcos.souza.org@gmail.com> |
|---|---|
| First post | 2016-11-01 03:00 +0100 |
| Last post | 2016-11-08 01:20 +0100 |
| Articles | 6 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH v2] platform/x86/asus-nb-wmi.c: Add X45U quirk Marcos Paulo de Souza <marcos.souza.org@gmail.com> - 2016-11-01 03:00 +0100
Re: [PATCH v2] platform/x86/asus-nb-wmi.c: Add X45U quirk Darren Hart <dvhart@infradead.org> - 2016-11-05 19:30 +0100
Re: [PATCH v2] platform/x86/asus-nb-wmi.c: Add X45U quirk Marcos Paulo de Souza <marcos.souza.org@gmail.com> - 2016-11-06 03:10 +0100
Re: [PATCH v2] platform/x86/asus-nb-wmi.c: Add X45U quirk Darren Hart <dvhart@infradead.org> - 2016-11-07 19:40 +0100
Re: [PATCH v2] platform/x86/asus-nb-wmi.c: Add X45U quirk Marcos Paulo de Souza <marcos.souza.org@gmail.com> - 2016-11-07 21:20 +0100
Re: [PATCH v2] platform/x86/asus-nb-wmi.c: Add X45U quirk Marcos Paulo de Souza <marcos.souza.org@gmail.com> - 2016-11-08 01:20 +0100
| From | Marcos Paulo de Souza <marcos.souza.org@gmail.com> |
|---|---|
| Date | 2016-11-01 03:00 +0100 |
| Subject | [PATCH v2] platform/x86/asus-nb-wmi.c: Add X45U quirk |
| Message-ID | <sywwN-1Yd-1@gated-at.bofh.it> |
Without this patch, the Asus X45U wireless card can't be turned
on (hard-blocked), but after a suspend/resume it just starts working.
Following this bug report[1], there are other cases like this one, but
this Asus is the only model that I can test.
[1] https://ubuntuforums.org/showthread.php?t=2181558
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Cc: <stable@vger.kernel.org>
---
This patch applies smoothly in 4.8.6 and 4.4.29. I hope now I followed
the instructions correctly.
v1 -> v2:
Add stable copy and specify the stable version to apply this patch
drivers/platform/x86/asus-nb-wmi.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/platform/x86/asus-nb-wmi.c b/drivers/platform/x86/asus-nb-wmi.c
index 26e4cbc..6032b70 100644
--- a/drivers/platform/x86/asus-nb-wmi.c
+++ b/drivers/platform/x86/asus-nb-wmi.c
@@ -175,6 +175,15 @@ static const struct dmi_system_id asus_quirks[] = {
},
{
.callback = dmi_matched,
+ .ident = "ASUSTeK COMPUTER INC. X45U",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "X45U"),
+ },
+ .driver_data = &quirk_asus_wapf4,
+ },
+ {
+ .callback = dmi_matched,
.ident = "ASUSTeK COMPUTER INC. X456UA",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
--
2.7.4
[toc] | [next] | [standalone]
| From | Darren Hart <dvhart@infradead.org> |
|---|---|
| Date | 2016-11-05 19:30 +0100 |
| Message-ID | <sAdT4-2WL-19@gated-at.bofh.it> |
| In reply to | #1513046 |
On Mon, Oct 31, 2016 at 11:56:10PM -0200, Marcos Paulo de Souza wrote: > Without this patch, the Asus X45U wireless card can't be turned > on (hard-blocked), but after a suspend/resume it just starts working. > > Following this bug report[1], there are other cases like this one, but > this Asus is the only model that I can test. > > [1] https://ubuntuforums.org/showthread.php?t=2181558 > > Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> > Cc: <stable@vger.kernel.org> > > --- > This patch applies smoothly in 4.8.6 and 4.4.29. I hope now I followed > the instructions correctly. Hi Marcos, You'll find exact steps in the stable_kernel_rules.txt document regarding how to annotate the commit message with Cc lines indicating to which versions this patch should be applied. If, for example, you have verified that this patch is relevant only to 4.4 and forward, you would include: Cc: <stable@vger.kernel.org> # 4.4.x- But this should mean that the patch is explicitly broken or otherwise inappropriate for 4.3 and earlier. Thanks, -- Darren Hart Intel Open Source Technology Center
[toc] | [prev] | [next] | [standalone]
| From | Marcos Paulo de Souza <marcos.souza.org@gmail.com> |
|---|---|
| Date | 2016-11-06 03:10 +0100 |
| Message-ID | <sAl4d-7IG-5@gated-at.bofh.it> |
| In reply to | #1515603 |
Hi Darren, On Sat, Nov 05, 2016 at 11:24:04AM -0700, Darren Hart wrote: > On Mon, Oct 31, 2016 at 11:56:10PM -0200, Marcos Paulo de Souza wrote: > > Without this patch, the Asus X45U wireless card can't be turned > > on (hard-blocked), but after a suspend/resume it just starts working. > > > > Following this bug report[1], there are other cases like this one, but > > this Asus is the only model that I can test. > > > > [1] https://ubuntuforums.org/showthread.php?t=2181558 > > > > Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> > > Cc: <stable@vger.kernel.org> > > > > --- > > This patch applies smoothly in 4.8.6 and 4.4.29. I hope now I followed > > the instructions correctly. > > Hi Marcos, > > You'll find exact steps in the stable_kernel_rules.txt document regarding how to > annotate the commit message with Cc lines indicating to which versions this > patch should be applied. > > If, for example, you have verified that this patch is relevant only to 4.4 and > forward, you would include: > > Cc: <stable@vger.kernel.org> # 4.4.x- > > But this should mean that the patch is explicitly broken or otherwise > inappropriate for 4.3 and earlier. Yes, I have misread the documentation. I could apply the patch as is just in the versions 4.8.6 and 4.4.29, but maybe I could rework te patch earlier versions. But, aside from stable tree, do you agree with this change, since it fixes the wireless problem in this laptop? Thanks, > > Thanks, > > -- > Darren Hart > Intel Open Source Technology Center
[toc] | [prev] | [next] | [standalone]
| From | Darren Hart <dvhart@infradead.org> |
|---|---|
| Date | 2016-11-07 19:40 +0100 |
| Message-ID | <sAWZQ-6Y4-35@gated-at.bofh.it> |
| In reply to | #1515650 |
On Sun, Nov 06, 2016 at 12:05:12AM -0200, Marcos Paulo de Souza wrote: > Hi Darren, > > On Sat, Nov 05, 2016 at 11:24:04AM -0700, Darren Hart wrote: > > On Mon, Oct 31, 2016 at 11:56:10PM -0200, Marcos Paulo de Souza wrote: > > > Without this patch, the Asus X45U wireless card can't be turned > > > on (hard-blocked), but after a suspend/resume it just starts working. > > > > > > Following this bug report[1], there are other cases like this one, but > > > this Asus is the only model that I can test. > > > > > > [1] https://ubuntuforums.org/showthread.php?t=2181558 > > > > > > Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> > > > Cc: <stable@vger.kernel.org> > > > > > > --- > > > This patch applies smoothly in 4.8.6 and 4.4.29. I hope now I followed > > > the instructions correctly. > > > > Hi Marcos, > > > > You'll find exact steps in the stable_kernel_rules.txt document regarding how to > > annotate the commit message with Cc lines indicating to which versions this > > patch should be applied. > > > > If, for example, you have verified that this patch is relevant only to 4.4 and > > forward, you would include: > > > > Cc: <stable@vger.kernel.org> # 4.4.x- > > > > But this should mean that the patch is explicitly broken or otherwise > > inappropriate for 4.3 and earlier. > > Yes, I have misread the documentation. I could apply the patch as is just in > the versions 4.8.6 and 4.4.29, but maybe I could rework te patch earlier versions. > > But, aside from stable tree, do you agree with this change, since it fixes the > wireless problem in this laptop? Yes, no objection to the patch. It happened to land right about the time we were having the "be better about how you manage your stable commits" discussion at kernel summit, so it got some extra focus :-) Care to resend with the Cc stable tag corrected? -- Darren Hart Intel Open Source Technology Center
[toc] | [prev] | [next] | [standalone]
| From | Marcos Paulo de Souza <marcos.souza.org@gmail.com> |
|---|---|
| Date | 2016-11-07 21:20 +0100 |
| Message-ID | <sAYyC-84g-23@gated-at.bofh.it> |
| In reply to | #1516453 |
Hi Darren, On Mon, Nov 07, 2016 at 10:35:05AM -0800, Darren Hart wrote: > On Sun, Nov 06, 2016 at 12:05:12AM -0200, Marcos Paulo de Souza wrote: > > Hi Darren, > > > > On Sat, Nov 05, 2016 at 11:24:04AM -0700, Darren Hart wrote: > > > On Mon, Oct 31, 2016 at 11:56:10PM -0200, Marcos Paulo de Souza wrote: > > > > Without this patch, the Asus X45U wireless card can't be turned > > > > on (hard-blocked), but after a suspend/resume it just starts working. > > > > > > > > Following this bug report[1], there are other cases like this one, but > > > > this Asus is the only model that I can test. > > > > > > > > [1] https://ubuntuforums.org/showthread.php?t=2181558 > > > > > > > > Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> > > > > Cc: <stable@vger.kernel.org> > > > > > > > > --- > > > > This patch applies smoothly in 4.8.6 and 4.4.29. I hope now I followed > > > > the instructions correctly. > > > > > > Hi Marcos, > > > > > > You'll find exact steps in the stable_kernel_rules.txt document regarding how to > > > annotate the commit message with Cc lines indicating to which versions this > > > patch should be applied. > > > > > > If, for example, you have verified that this patch is relevant only to 4.4 and > > > forward, you would include: > > > > > > Cc: <stable@vger.kernel.org> # 4.4.x- > > > > > > But this should mean that the patch is explicitly broken or otherwise > > > inappropriate for 4.3 and earlier. > > > > Yes, I have misread the documentation. I could apply the patch as is just in > > the versions 4.8.6 and 4.4.29, but maybe I could rework te patch earlier versions. > > > > But, aside from stable tree, do you agree with this change, since it fixes the > > wireless problem in this laptop? > > Yes, no objection to the patch. It happened to land right about the time we were > having the "be better about how you manage your stable commits" discussion at > kernel summit, so it got some extra focus :-) > > Care to resend with the Cc stable tag corrected? Absolutely not. I just sent a new version with the version along with the stable email. Thanks for your patience in this subject :) > > -- > Darren Hart > Intel Open Source Technology Center
[toc] | [prev] | [next] | [standalone]
| From | Marcos Paulo de Souza <marcos.souza.org@gmail.com> |
|---|---|
| Date | 2016-11-08 01:20 +0100 |
| Message-ID | <sB2iR-23v-15@gated-at.bofh.it> |
| In reply to | #1516453 |
Hi Darren, On Mon, Nov 07, 2016 at 10:35:05AM -0800, Darren Hart wrote: > On Sun, Nov 06, 2016 at 12:05:12AM -0200, Marcos Paulo de Souza wrote: > > Hi Darren, > > > > On Sat, Nov 05, 2016 at 11:24:04AM -0700, Darren Hart wrote: > > > On Mon, Oct 31, 2016 at 11:56:10PM -0200, Marcos Paulo de Souza wrote: > > > > Without this patch, the Asus X45U wireless card can't be turned > > > > on (hard-blocked), but after a suspend/resume it just starts working. > > > > > > > > Following this bug report[1], there are other cases like this one, but > > > > this Asus is the only model that I can test. > > > > > > > > [1] https://ubuntuforums.org/showthread.php?t=2181558 > > > > > > > > Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> > > > > Cc: <stable@vger.kernel.org> > > > > > > > > --- > > > > This patch applies smoothly in 4.8.6 and 4.4.29. I hope now I followed > > > > the instructions correctly. > > > > > > Hi Marcos, > > > > > > You'll find exact steps in the stable_kernel_rules.txt document regarding how to > > > annotate the commit message with Cc lines indicating to which versions this > > > patch should be applied. > > > > > > If, for example, you have verified that this patch is relevant only to 4.4 and > > > forward, you would include: > > > > > > Cc: <stable@vger.kernel.org> # 4.4.x- > > > > > > But this should mean that the patch is explicitly broken or otherwise > > > inappropriate for 4.3 and earlier. > > > > Yes, I have misread the documentation. I could apply the patch as is just in > > the versions 4.8.6 and 4.4.29, but maybe I could rework te patch earlier versions. > > > > But, aside from stable tree, do you agree with this change, since it fixes the > > wireless problem in this laptop? > > Yes, no objection to the patch. It happened to land right about the time we were > having the "be better about how you manage your stable commits" discussion at > kernel summit, so it got some extra focus :-) > > Care to resend with the Cc stable tag corrected? I had some problem to send the patch through git send-email and mutt, because the stable address and the version always got merged. So Laura Abbott helped me with the tip of --suppress-cc=bodycc, and then I added stable address manually. Is there a new procedure to send a patch to stable, without being this tricky? Is there is, I would be happy to send a patch to fix our documentation, since even people from kernel newbies are suffering by the same problem[1] Thanks in advance. [1] https://lists.kernelnewbies.org/pipermail/kernelnewbies/2016-April/016194.html > > -- > Darren Hart > Intel Open Source Technology Center
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web