* Re: linux-next: build failure after merge of the drivers-x86 tree [not found] <20250515164620.071d70e3@canb.auug.org.au> @ 2025-05-15 8:32 ` Ilpo Järvinen 2025-05-15 9:22 ` Ingo Molnar 0 siblings, 1 reply; 12+ messages in thread From: Ilpo Järvinen @ 2025-05-15 8:32 UTC (permalink / raw) To: Stephen Rothwell, Ingo Molnar, PDx86 ML, Suma Hegde Cc: Hans de Goede, Mark Gross, Linux Kernel Mailing List, Linux Next Mailing List, x86, Thomas Gleixner, Borislav Petkov, Dave Hansen On Thu, 15 May 2025, Stephen Rothwell wrote: > Hi all, > > After merging the drivers-x86 tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > drivers/platform/x86/amd/hsmp/hwmon.c: In function 'hsmp_hwmon_write': > drivers/platform/x86/amd/hsmp/hwmon.c:38:16: error: implicit declaration of function 'hsmp_send_message' [-Wimplicit-function-declaration] > 38 | return hsmp_send_message(&msg); > | ^~~~~~~~~~~~~~~~~ > > Caused by commit > > 92c025db52bb ("platform/x86/amd/hsmp: Report power via hwmon sensors") > > I have used the drivers-x86 tree from next-20250514 for today. Hi Stephen, This is a direct result of moving a pdx86 related header behind my back: https://lore.kernel.org/all/20250413084144.3746608-5-mingo@kernel.org/ That change wasn't sent to the relevant MAINTAINERS entries (and obviously then does not contain my ack either). Ingo, any suggestion how to deal with this breakage? Do you have e.g. an IB which I could pull into pdx86 tree which has only these header moves? -- i. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: linux-next: build failure after merge of the drivers-x86 tree 2025-05-15 8:32 ` linux-next: build failure after merge of the drivers-x86 tree Ilpo Järvinen @ 2025-05-15 9:22 ` Ingo Molnar 2025-05-15 12:19 ` Stephen Rothwell 0 siblings, 1 reply; 12+ messages in thread From: Ingo Molnar @ 2025-05-15 9:22 UTC (permalink / raw) To: Ilpo Järvinen Cc: Stephen Rothwell, PDx86 ML, Suma Hegde, Hans de Goede, Mark Gross, Linux Kernel Mailing List, Linux Next Mailing List, x86, Thomas Gleixner, Borislav Petkov, Dave Hansen * Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> wrote: > On Thu, 15 May 2025, Stephen Rothwell wrote: > > > Hi all, > > > > After merging the drivers-x86 tree, today's linux-next build (x86_64 > > allmodconfig) failed like this: > > > > drivers/platform/x86/amd/hsmp/hwmon.c: In function 'hsmp_hwmon_write': > > drivers/platform/x86/amd/hsmp/hwmon.c:38:16: error: implicit declaration of function 'hsmp_send_message' [-Wimplicit-function-declaration] > > 38 | return hsmp_send_message(&msg); > > | ^~~~~~~~~~~~~~~~~ > > > > Caused by commit > > > > 92c025db52bb ("platform/x86/amd/hsmp: Report power via hwmon sensors") > > > > I have used the drivers-x86 tree from next-20250514 for today. > > Hi Stephen, > > This is a direct result of moving a pdx86 related header behind my back: > > https://lore.kernel.org/all/20250413084144.3746608-5-mingo@kernel.org/ > > That change wasn't sent to the relevant MAINTAINERS entries (and obviously > then does not contain my ack either). Sorry about that! I always try to over- Cc:, but missed you this time. > Ingo, any suggestion how to deal with this breakage? Do you have e.g. > an IB which I could pull into pdx86 tree which has only these header > moves? I'm not sure that's needed, the above build failure is not really a build failure caused by the platform-drivers-x86.git tree, it is a semantic merge conflict that should be resolved at the linux-next level I think. (And which conflict should be mentioned to Linus by whoever sends their tree second.) Stephen, could you apply the patch below perhaps? If not then I'll add back an <asm/amd_hsmp.h> wrapper to the x86 tree. Thanks, Ingo ================> drivers/platform/x86/amd/hsmp/hwmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/platform/x86/amd/hsmp/hwmon.c b/drivers/platform/x86/amd/hsmp/hwmon.c index 7ffb61e0ef62..0cc9a742497f 100644 --- a/drivers/platform/x86/amd/hsmp/hwmon.c +++ b/drivers/platform/x86/amd/hsmp/hwmon.c @@ -7,7 +7,7 @@ * This file provides hwmon implementation for HSMP interface. */ -#include <asm/amd_hsmp.h> +#include <asm/amd/hsmp.h> #include <linux/device.h> #include <linux/err.h> ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: linux-next: build failure after merge of the drivers-x86 tree 2025-05-15 9:22 ` Ingo Molnar @ 2025-05-15 12:19 ` Stephen Rothwell 2025-05-15 12:57 ` Ingo Molnar 0 siblings, 1 reply; 12+ messages in thread From: Stephen Rothwell @ 2025-05-15 12:19 UTC (permalink / raw) To: Ingo Molnar Cc: Ilpo Järvinen, PDx86 ML, Suma Hegde, Hans de Goede, Mark Gross, Linux Kernel Mailing List, Linux Next Mailing List, x86, Thomas Gleixner, Borislav Petkov, Dave Hansen [-- Attachment #1: Type: text/plain, Size: 1105 bytes --] Hi Ingo, On Thu, 15 May 2025 11:22:50 +0200 Ingo Molnar <mingo@kernel.org> wrote: > > I'm not sure that's needed, the above build failure is not really a > build failure caused by the platform-drivers-x86.git tree, it is a > semantic merge conflict that should be resolved at the linux-next level > I think. (And which conflict should be mentioned to Linus by whoever > sends their tree second.) > > Stephen, could you apply the patch below perhaps? Thanks for the fix. Applied from tomorrow. > drivers/platform/x86/amd/hsmp/hwmon.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/platform/x86/amd/hsmp/hwmon.c b/drivers/platform/x86/amd/hsmp/hwmon.c > index 7ffb61e0ef62..0cc9a742497f 100644 > --- a/drivers/platform/x86/amd/hsmp/hwmon.c > +++ b/drivers/platform/x86/amd/hsmp/hwmon.c > @@ -7,7 +7,7 @@ > * This file provides hwmon implementation for HSMP interface. > */ > > -#include <asm/amd_hsmp.h> > +#include <asm/amd/hsmp.h> > > #include <linux/device.h> > #include <linux/err.h> -- Cheers, Stephen Rothwell [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: linux-next: build failure after merge of the drivers-x86 tree 2025-05-15 12:19 ` Stephen Rothwell @ 2025-05-15 12:57 ` Ingo Molnar 0 siblings, 0 replies; 12+ messages in thread From: Ingo Molnar @ 2025-05-15 12:57 UTC (permalink / raw) To: Stephen Rothwell Cc: Ilpo Järvinen, PDx86 ML, Suma Hegde, Hans de Goede, Mark Gross, Linux Kernel Mailing List, Linux Next Mailing List, x86, Thomas Gleixner, Borislav Petkov, Dave Hansen * Stephen Rothwell <sfr@canb.auug.org.au> wrote: > Hi Ingo, > > On Thu, 15 May 2025 11:22:50 +0200 Ingo Molnar <mingo@kernel.org> wrote: > > > > I'm not sure that's needed, the above build failure is not really a > > build failure caused by the platform-drivers-x86.git tree, it is a > > semantic merge conflict that should be resolved at the linux-next level > > I think. (And which conflict should be mentioned to Linus by whoever > > sends their tree second.) > > > > Stephen, could you apply the patch below perhaps? > > Thanks for the fix. Applied from tomorrow. Thank you Stephen!! Ingo ^ permalink raw reply [flat|nested] 12+ messages in thread
* linux-next: build failure after merge of the drivers-x86 tree
@ 2021-07-28 16:48 Mark Brown
2021-07-28 17:01 ` Andy Shevchenko
0 siblings, 1 reply; 12+ messages in thread
From: Mark Brown @ 2021-07-28 16:48 UTC (permalink / raw)
To: Hans de Goede, Mark Gross, Gayatri Kammela, Andy Shevchenko,
Rajneesh Bhardwaj
Cc: Linux Kernel Mailing List, Linux Next Mailing List,
platform-driver-x86
Hi all,
After merging the drivers-x86 tree, today's linux-next build
(x86 allmodconfig) failed like this:
error: the following would cause module name conflict:
drivers/misc/c2port/core.ko
drivers/platform/x86/intel/pmc/core.ko
Caused by commit
29036fcc92b22d ("platform/x86/intel: intel_pmc_core: Move intel_pmc_core* files to pmc subfolder")
Since there was nothing in the branch yesterday I've just dropped the
tree entirely.
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: linux-next: build failure after merge of the drivers-x86 tree 2021-07-28 16:48 Mark Brown @ 2021-07-28 17:01 ` Andy Shevchenko 2021-07-28 17:27 ` Kammela, Gayatri 0 siblings, 1 reply; 12+ messages in thread From: Andy Shevchenko @ 2021-07-28 17:01 UTC (permalink / raw) To: Mark Brown Cc: Hans de Goede, Mark Gross, Gayatri Kammela, Rajneesh Bhardwaj, Linux Kernel Mailing List, Linux Next Mailing List, Platform Driver On Wed, Jul 28, 2021 at 7:49 PM Mark Brown <broonie@kernel.org> wrote: > > Hi all, > > After merging the drivers-x86 tree, today's linux-next build > (x86 allmodconfig) failed like this: > > error: the following would cause module name conflict: > drivers/misc/c2port/core.ko > drivers/platform/x86/intel/pmc/core.ko > > Caused by commit > > 29036fcc92b22d ("platform/x86/intel: intel_pmc_core: Move intel_pmc_core* files to pmc subfolder") > > Since there was nothing in the branch yesterday I've just dropped the > tree entirely. Yeah, PMC Makefile should keep the object name the same, something like obj-$(..._PMC_...) += intel_pmc_....o intel-pmc_...-y := core.o ... -- With Best Regards, Andy Shevchenko ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: linux-next: build failure after merge of the drivers-x86 tree 2021-07-28 17:01 ` Andy Shevchenko @ 2021-07-28 17:27 ` Kammela, Gayatri 2021-07-28 17:55 ` Hans de Goede 0 siblings, 1 reply; 12+ messages in thread From: Kammela, Gayatri @ 2021-07-28 17:27 UTC (permalink / raw) To: Andy Shevchenko, Mark Brown Cc: Hans de Goede, Gross, Mark, Rajneesh Bhardwaj, Linux Kernel Mailing List, Linux Next Mailing List, Platform Driver > -----Original Message----- > From: Andy Shevchenko <andy.shevchenko@gmail.com> > Sent: Wednesday, July 28, 2021 10:02 AM > To: Mark Brown <broonie@kernel.org> > Cc: Hans de Goede <hdegoede@redhat.com>; Gross, Mark > <mark.gross@intel.com>; Kammela, Gayatri <gayatri.kammela@intel.com>; > Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>; Linux Kernel Mailing List > <linux-kernel@vger.kernel.org>; Linux Next Mailing List <linux- > next@vger.kernel.org>; Platform Driver <platform-driver- > x86@vger.kernel.org> > Subject: Re: linux-next: build failure after merge of the drivers-x86 tree > > On Wed, Jul 28, 2021 at 7:49 PM Mark Brown <broonie@kernel.org> wrote: > > > > Hi all, > > > > After merging the drivers-x86 tree, today's linux-next build > > (x86 allmodconfig) failed like this: > > > > error: the following would cause module name conflict: > > drivers/misc/c2port/core.ko > > drivers/platform/x86/intel/pmc/core.ko > > > > Caused by commit > > > > 29036fcc92b22d ("platform/x86/intel: intel_pmc_core: Move > > intel_pmc_core* files to pmc subfolder") > > > > Since there was nothing in the branch yesterday I've just dropped the > > tree entirely. > > Yeah, PMC Makefile should keep the object name the same, something like > > obj-$(..._PMC_...) += intel_pmc_....o > intel-pmc_...-y := core.o ... > Hi Andy and Mark, We've found the issue on our side as well and planning to push the fix soon. Would you prefer to have the whole patch series redone or just the fix ? > > -- > With Best Regards, > Andy Shevchenko ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: linux-next: build failure after merge of the drivers-x86 tree 2021-07-28 17:27 ` Kammela, Gayatri @ 2021-07-28 17:55 ` Hans de Goede 2021-07-28 17:59 ` Kammela, Gayatri 0 siblings, 1 reply; 12+ messages in thread From: Hans de Goede @ 2021-07-28 17:55 UTC (permalink / raw) To: Kammela, Gayatri, Andy Shevchenko, Mark Brown Cc: Gross, Mark, Rajneesh Bhardwaj, Linux Kernel Mailing List, Linux Next Mailing List, Platform Driver Hi, On 7/28/21 7:27 PM, Kammela, Gayatri wrote: >> -----Original Message----- >> From: Andy Shevchenko <andy.shevchenko@gmail.com> >> Sent: Wednesday, July 28, 2021 10:02 AM >> To: Mark Brown <broonie@kernel.org> >> Cc: Hans de Goede <hdegoede@redhat.com>; Gross, Mark >> <mark.gross@intel.com>; Kammela, Gayatri <gayatri.kammela@intel.com>; >> Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>; Linux Kernel Mailing List >> <linux-kernel@vger.kernel.org>; Linux Next Mailing List <linux- >> next@vger.kernel.org>; Platform Driver <platform-driver- >> x86@vger.kernel.org> >> Subject: Re: linux-next: build failure after merge of the drivers-x86 tree >> >> On Wed, Jul 28, 2021 at 7:49 PM Mark Brown <broonie@kernel.org> wrote: >>> >>> Hi all, >>> >>> After merging the drivers-x86 tree, today's linux-next build >>> (x86 allmodconfig) failed like this: >>> >>> error: the following would cause module name conflict: >>> drivers/misc/c2port/core.ko >>> drivers/platform/x86/intel/pmc/core.ko >>> >>> Caused by commit >>> >>> 29036fcc92b22d ("platform/x86/intel: intel_pmc_core: Move >>> intel_pmc_core* files to pmc subfolder") >>> >>> Since there was nothing in the branch yesterday I've just dropped the >>> tree entirely. >> >> Yeah, PMC Makefile should keep the object name the same, something like >> >> obj-$(..._PMC_...) += intel_pmc_....o >> intel-pmc_...-y := core.o ... Right, I will drop the patches from pdx86/for-next and do a forced push. > Hi Andy and Mark, > We've found the issue on our side as well and planning to push the fix soon. Would you prefer to have the whole patch series redone or just the fix ? I've just dropped the current version of the patches, please send the whole patch series redone. Thanks & Regards, Hans ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: linux-next: build failure after merge of the drivers-x86 tree 2021-07-28 17:55 ` Hans de Goede @ 2021-07-28 17:59 ` Kammela, Gayatri 0 siblings, 0 replies; 12+ messages in thread From: Kammela, Gayatri @ 2021-07-28 17:59 UTC (permalink / raw) To: Hans de Goede, Andy Shevchenko, Mark Brown Cc: Gross, Mark, Rajneesh Bhardwaj, Linux Kernel Mailing List, Linux Next Mailing List, Platform Driver > -----Original Message----- > From: Hans de Goede <hdegoede@redhat.com> > Sent: Wednesday, July 28, 2021 10:56 AM > To: Kammela, Gayatri <gayatri.kammela@intel.com>; Andy Shevchenko > <andy.shevchenko@gmail.com>; Mark Brown <broonie@kernel.org> > Cc: Gross, Mark <mark.gross@intel.com>; Rajneesh Bhardwaj > <irenic.rajneesh@gmail.com>; Linux Kernel Mailing List <linux- > kernel@vger.kernel.org>; Linux Next Mailing List <linux- > next@vger.kernel.org>; Platform Driver <platform-driver- > x86@vger.kernel.org> > Subject: Re: linux-next: build failure after merge of the drivers-x86 tree > > Hi, > > On 7/28/21 7:27 PM, Kammela, Gayatri wrote: > >> -----Original Message----- > >> From: Andy Shevchenko <andy.shevchenko@gmail.com> > >> Sent: Wednesday, July 28, 2021 10:02 AM > >> To: Mark Brown <broonie@kernel.org> > >> Cc: Hans de Goede <hdegoede@redhat.com>; Gross, Mark > >> <mark.gross@intel.com>; Kammela, Gayatri > <gayatri.kammela@intel.com>; > >> Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>; Linux Kernel Mailing > >> List <linux-kernel@vger.kernel.org>; Linux Next Mailing List <linux- > >> next@vger.kernel.org>; Platform Driver <platform-driver- > >> x86@vger.kernel.org> > >> Subject: Re: linux-next: build failure after merge of the drivers-x86 > >> tree > >> > >> On Wed, Jul 28, 2021 at 7:49 PM Mark Brown <broonie@kernel.org> > wrote: > >>> > >>> Hi all, > >>> > >>> After merging the drivers-x86 tree, today's linux-next build > >>> (x86 allmodconfig) failed like this: > >>> > >>> error: the following would cause module name conflict: > >>> drivers/misc/c2port/core.ko > >>> drivers/platform/x86/intel/pmc/core.ko > >>> > >>> Caused by commit > >>> > >>> 29036fcc92b22d ("platform/x86/intel: intel_pmc_core: Move > >>> intel_pmc_core* files to pmc subfolder") > >>> > >>> Since there was nothing in the branch yesterday I've just dropped > >>> the tree entirely. > >> > >> Yeah, PMC Makefile should keep the object name the same, something > >> like > >> > >> obj-$(..._PMC_...) += intel_pmc_....o intel-pmc_...-y := core.o ... > > Right, I will drop the patches from pdx86/for-next and do a forced push. > > > Hi Andy and Mark, > > We've found the issue on our side as well and planning to push the fix > soon. Would you prefer to have the whole patch series redone or just the fix > ? > > I've just dropped the current version of the patches, please send the whole > patch series redone. Sure Hans! I will send the whole patch series redone. > > Thanks & Regards, > > Hans ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20110222162206.c3fb0636.sfr@canb.auug.org.au>]
[parent not found: <a8c6f32c-ccb5-4f65-b537-8bd1c11f7336@email.android.com>]
* Re: linux-next: build failure after merge of the drivers-x86 tree [not found] ` <a8c6f32c-ccb5-4f65-b537-8bd1c11f7336@email.android.com> @ 2011-02-22 11:46 ` Mattia Dongili 2011-02-22 14:34 ` Matthew Garrett 0 siblings, 1 reply; 12+ messages in thread From: Mattia Dongili @ 2011-02-22 11:46 UTC (permalink / raw) To: Stephen Rothwell, Matthew Garrett Cc: linux-next, linux-kernel, platform-driver-x86 On Tue, Feb 22, 2011 at 03:26:53PM +0900, Mattia Dongili wrote: > > > Stephen Rothwell <sfr@canb.auug.org.au> wrote: > > >Hi Matthew, > > > >After merging the drivers-x86 tree, today's linux-next build (x86_64 > >allmodconfig) failed like this: > > Apologies, I didn't test my code with > DEBUG_LOCK_ALLOC=y. > I'll send a fix in as soon as I get around a usable network > connection. the below patch fixes the build failure. how does linux-next work? should this patch be a separate commit or can it be folded into the offending one? diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index a097a27..a0ba0e7 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c @@ -769,7 +769,7 @@ static int sony_nc_handles_setup(struct platform_device *pd) handles = kzalloc(sizeof(*handles), GFP_KERNEL); - sysfs_attr_init(handles->devattr); + sysfs_attr_init(&handles->devattr.attr); handles->devattr.attr.name = "handles"; handles->devattr.attr.mode = S_IRUGO; handles->devattr.show = sony_nc_handles_show; @@ -1459,13 +1459,13 @@ static int sony_nc_kbd_backlight_setup(struct platform_device *pd) kbdbl_handle = kzalloc(sizeof(*kbdbl_handle), GFP_KERNEL); - sysfs_attr_init(kbdbl_handle->mode_attr); + sysfs_attr_init(&kbdbl_handle->mode_attr.attr); kbdbl_handle->mode_attr.attr.name = "kbd_backlight"; kbdbl_handle->mode_attr.attr.mode = S_IRUGO | S_IWUSR; kbdbl_handle->mode_attr.show = sony_nc_kbd_backlight_mode_show; kbdbl_handle->mode_attr.store = sony_nc_kbd_backlight_mode_store; - sysfs_attr_init(kbdbl_handle->timeout_attr); + sysfs_attr_init(&kbdbl_handle->timeout_attr.attr); kbdbl_handle->timeout_attr.attr.name = "kbd_backlight_timeout"; kbdbl_handle->timeout_attr.attr.mode = S_IRUGO | S_IWUSR; kbdbl_handle->timeout_attr.show = sony_nc_kbd_backlight_timeout_show; -- mattia :wq! ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: linux-next: build failure after merge of the drivers-x86 tree 2011-02-22 11:46 ` Mattia Dongili @ 2011-02-22 14:34 ` Matthew Garrett 2011-02-22 22:22 ` Stephen Rothwell 0 siblings, 1 reply; 12+ messages in thread From: Matthew Garrett @ 2011-02-22 14:34 UTC (permalink / raw) To: Mattia Dongili Cc: Stephen Rothwell, linux-next, linux-kernel, platform-driver-x86 On Tue, Feb 22, 2011 at 08:46:01PM +0900, Mattia Dongili wrote: > how does linux-next work? should this patch be a separate commit or can > it be folded into the offending one? I'll fold it into the offending one and repush. Sorry about the breakage, Stephen - I don't have DEBUG_ALLOC enabled so didn't see the failure. Do you build with a defined configuration I can test against? -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: linux-next: build failure after merge of the drivers-x86 tree 2011-02-22 14:34 ` Matthew Garrett @ 2011-02-22 22:22 ` Stephen Rothwell 0 siblings, 0 replies; 12+ messages in thread From: Stephen Rothwell @ 2011-02-22 22:22 UTC (permalink / raw) To: Matthew Garrett Cc: Mattia Dongili, linux-next, linux-kernel, platform-driver-x86 [-- Attachment #1: Type: text/plain, Size: 675 bytes --] On Tue, 22 Feb 2011 14:34:34 +0000 Matthew Garrett <mjg59@srcf.ucam.org> wrote: > > On Tue, Feb 22, 2011 at 08:46:01PM +0900, Mattia Dongili wrote: > > > how does linux-next work? should this patch be a separate commit or can > > it be folded into the offending one? > > I'll fold it into the offending one and repush. Sorry about the > breakage, Stephen - I don't have DEBUG_ALLOC enabled so didn't see the > failure. Do you build with a defined configuration I can test against? As the original report said, this was an x86_64 allmodconfig build. -- Cheers, Stephen Rothwell sfr@canb.auug.org.au http://www.canb.auug.org.au/~sfr/ [-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-05-15 12:57 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20250515164620.071d70e3@canb.auug.org.au>
2025-05-15 8:32 ` linux-next: build failure after merge of the drivers-x86 tree Ilpo Järvinen
2025-05-15 9:22 ` Ingo Molnar
2025-05-15 12:19 ` Stephen Rothwell
2025-05-15 12:57 ` Ingo Molnar
2021-07-28 16:48 Mark Brown
2021-07-28 17:01 ` Andy Shevchenko
2021-07-28 17:27 ` Kammela, Gayatri
2021-07-28 17:55 ` Hans de Goede
2021-07-28 17:59 ` Kammela, Gayatri
[not found] <20110222162206.c3fb0636.sfr@canb.auug.org.au>
[not found] ` <a8c6f32c-ccb5-4f65-b537-8bd1c11f7336@email.android.com>
2011-02-22 11:46 ` Mattia Dongili
2011-02-22 14:34 ` Matthew Garrett
2011-02-22 22:22 ` Stephen Rothwell
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox