* 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
@ 2018-07-11 19:35 Sudip Mukherjee
2018-07-12 6:30 ` Greg KH
0 siblings, 1 reply; 6+ messages in thread
From: Sudip Mukherjee @ 2018-07-11 19:35 UTC (permalink / raw)
To: Greg KH; +Cc: stable
Hi Greg,
I think you have missed 6ed66c3ce095ae65bbc976b5817c318653745736 for
the v4.14-stable tree. No backport needed, it will apply cleanly.
--
Regards
Sudip
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
2018-07-11 19:35 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable Sudip Mukherjee
@ 2018-07-12 6:30 ` Greg KH
2018-07-12 6:30 ` Greg KH
2018-07-12 10:18 ` Sudip Mukherjee
0 siblings, 2 replies; 6+ messages in thread
From: Greg KH @ 2018-07-12 6:30 UTC (permalink / raw)
To: Sudip Mukherjee; +Cc: stable
On Wed, Jul 11, 2018 at 08:35:17PM +0100, Sudip Mukherjee wrote:
> Hi Greg,
>
> I think you have missed 6ed66c3ce095ae65bbc976b5817c318653745736 for
> the v4.14-stable tree. No backport needed, it will apply cleanly.
No, I didn't miss it, it failed to apply to 4.17.y and I sent out
rejection emails. Why would I apply it to 4.14.y if it is not in
4.17.y?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
2018-07-12 6:30 ` Greg KH
@ 2018-07-12 6:30 ` Greg KH
2018-07-12 10:18 ` Sudip Mukherjee
1 sibling, 0 replies; 6+ messages in thread
From: Greg KH @ 2018-07-12 6:30 UTC (permalink / raw)
To: Sudip Mukherjee; +Cc: stable
On Thu, Jul 12, 2018 at 08:30:10AM +0200, Greg KH wrote:
> On Wed, Jul 11, 2018 at 08:35:17PM +0100, Sudip Mukherjee wrote:
> > Hi Greg,
> >
> > I think you have missed 6ed66c3ce095ae65bbc976b5817c318653745736 for
> > the v4.14-stable tree. No backport needed, it will apply cleanly.
>
> No, I didn't miss it, it failed to apply to 4.17.y and I sent out
> rejection emails. Why would I apply it to 4.14.y if it is not in
> 4.17.y?
It also failed to apply to 4.16.y at the time.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
2018-07-12 6:30 ` Greg KH
2018-07-12 6:30 ` Greg KH
@ 2018-07-12 10:18 ` Sudip Mukherjee
2018-07-12 13:53 ` Mario.Limonciello
1 sibling, 1 reply; 6+ messages in thread
From: Sudip Mukherjee @ 2018-07-12 10:18 UTC (permalink / raw)
To: Greg KH, Mario Limonciello; +Cc: stable
[-- Attachment #1: Type: text/plain, Size: 904 bytes --]
On Thu, Jul 12, 2018 at 08:30:10AM +0200, Greg KH wrote:
> On Wed, Jul 11, 2018 at 08:35:17PM +0100, Sudip Mukherjee wrote:
> > Hi Greg,
> >
> > I think you have missed 6ed66c3ce095ae65bbc976b5817c318653745736 for
> > the v4.14-stable tree. No backport needed, it will apply cleanly.
>
> No, I didn't miss it, it failed to apply to 4.17.y and I sent out
> rejection emails. Why would I apply it to 4.14.y if it is not in
> 4.17.y?
But it was added in v4.17-rc4.6 via:
7fe3fa3b5ec8 ("platform/x86: Kconfig: Fix dell-laptop dependency chain.")
in v4.16.8 via:
0897d3c34dae ("platform/x86: Kconfig: Fix dell-laptop dependency chain.")
missing only in v4.14.y.
The attached patch should be good for 4.14-stable.
But now I have a little confusion here, the commit says that it fixes
32d7b19bad96 which was added in v4.16. So, is it needed in 4.14.y?
Added Mario for his comments.
--
Regards
Sudip
[-- Attachment #2: 0001-platform-x86-Kconfig-Fix-dell-laptop-dependency-chai.patch --]
[-- Type: text/x-diff, Size: 1844 bytes --]
>From f6c7352c09ea461316e7ef5ce40ee49b03c178d6 Mon Sep 17 00:00:00 2001
From: Mario Limonciello <mario.limonciello@dell.com>
Date: Fri, 20 Apr 2018 12:42:11 -0500
Subject: [PATCH] platform/x86: Kconfig: Fix dell-laptop dependency chain.
commit 7fe3fa3b5ec8e75389cce4bf5d052a52e6198d59 upstream
As reported by Randy Dunlap:
>> WARNING: unmet direct dependencies detected for DELL_SMBIOS
>> Depends on [m]: X86 [=y] && X86_PLATFORM_DEVICES [=y]
>> && (DCDBAS [=m] ||
>> DCDBAS [=m]=n) && (ACPI_WMI [=n] || ACPI_WMI [=n]=n)
>> Selected by [y]:
>> - DELL_LAPTOP [=y] && X86 [=y] && X86_PLATFORM_DEVICES [=y]
>> && DMI [=y]
>> && BACKLIGHT_CLASS_DEVICE [=y] && (ACPI_VIDEO [=n] ||
>> ACPI_VIDEO [=n]=n)
>> && (RFKILL [=n] || RFKILL [=n]=n) && SERIO_I8042 [=y]
>>
Right now it's possible to set dell laptop to compile in but this
causes dell-smbios to compile in which breaks if dcdbas is a module.
Dell laptop shouldn't select dell-smbios anymore, but depend on it.
Fixes: 32d7b19bad96 (platform/x86: dell-smbios: Resolve dependency error on DCDBAS)
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Mario Limonciello <mario.limonciello@dell.com>
Cc: stable@vger.kernel.org
Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
---
drivers/platform/x86/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index 80b87954f6dd..136a8f49ff92 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -107,7 +107,7 @@ config DELL_LAPTOP
depends on ACPI_VIDEO || ACPI_VIDEO = n
depends on RFKILL || RFKILL = n
depends on SERIO_I8042
- select DELL_SMBIOS
+ depends on DELL_SMBIOS
select POWER_SUPPLY
select LEDS_CLASS
select NEW_LEDS
--
2.11.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* RE: 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
2018-07-12 10:18 ` Sudip Mukherjee
@ 2018-07-12 13:53 ` Mario.Limonciello
2018-07-12 14:26 ` Sudip Mukherjee
0 siblings, 1 reply; 6+ messages in thread
From: Mario.Limonciello @ 2018-07-12 13:53 UTC (permalink / raw)
To: sudipm.mukherjee, gregkh; +Cc: stable
> -----Original Message-----
> From: Sudip Mukherjee [mailto:sudipm.mukherjee@gmail.com]
> Sent: Thursday, July 12, 2018 5:19 AM
> To: Greg KH; Limonciello, Mario
> Cc: stable@vger.kernel.org
> Subject: Re: 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
>
> On Thu, Jul 12, 2018 at 08:30:10AM +0200, Greg KH wrote:
> > On Wed, Jul 11, 2018 at 08:35:17PM +0100, Sudip Mukherjee wrote:
> > > Hi Greg,
> > >
> > > I think you have missed 6ed66c3ce095ae65bbc976b5817c318653745736 for
> > > the v4.14-stable tree. No backport needed, it will apply cleanly.
> >
> > No, I didn't miss it, it failed to apply to 4.17.y and I sent out
> > rejection emails. Why would I apply it to 4.14.y if it is not in
> > 4.17.y?
>
> But it was added in v4.17-rc4.6 via:
> 7fe3fa3b5ec8 ("platform/x86: Kconfig: Fix dell-laptop dependency chain.")
>
> in v4.16.8 via:
> 0897d3c34dae ("platform/x86: Kconfig: Fix dell-laptop dependency chain.")
>
> missing only in v4.14.y.
>
> The attached patch should be good for 4.14-stable.
>
> But now I have a little confusion here, the commit says that it fixes
> 32d7b19bad96 which was added in v4.16. So, is it needed in 4.14.y?
>
> Added Mario for his comments.
>
>
Although it will apply to 4.14.y I don't believe it's needed there. This problem
was related to the split to multiple modules for dell-smbios which happened later.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
2018-07-12 13:53 ` Mario.Limonciello
@ 2018-07-12 14:26 ` Sudip Mukherjee
0 siblings, 0 replies; 6+ messages in thread
From: Sudip Mukherjee @ 2018-07-12 14:26 UTC (permalink / raw)
To: Mario.Limonciello; +Cc: gregkh, stable
On Thu, Jul 12, 2018 at 01:53:14PM +0000, Mario.Limonciello@dell.com wrote:
> > -----Original Message-----
> > From: Sudip Mukherjee [mailto:sudipm.mukherjee@gmail.com]
> > Sent: Thursday, July 12, 2018 5:19 AM
> > To: Greg KH; Limonciello, Mario
> > Cc: stable@vger.kernel.org
> > Subject: Re: 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable
> >
<snip>
> >
> > Added Mario for his comments.
> >
> >
>
> Although it will apply to 4.14.y I don't believe it's needed there. This problem
> was related to the split to multiple modules for dell-smbios which happened later.
>
Thanks Mario.
Greg, please ignore this one.
--
Regards
Sudip
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-07-12 14:36 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-11 19:35 6ed66c3ce095ae65bbc976b5817c318653745736 for 4.14-stable Sudip Mukherjee
2018-07-12 6:30 ` Greg KH
2018-07-12 6:30 ` Greg KH
2018-07-12 10:18 ` Sudip Mukherjee
2018-07-12 13:53 ` Mario.Limonciello
2018-07-12 14:26 ` Sudip Mukherjee
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.