Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1247242 > unrolled thread
| Started by | Stephen Rothwell <sfr@canb.auug.org.au> |
|---|---|
| First post | 2015-10-15 01:00 +0200 |
| Last post | 2015-10-15 17:00 +0200 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
linux-next: build failure after merge of the asm-generic tree Stephen Rothwell <sfr@canb.auug.org.au> - 2015-10-15 01:00 +0200
Re: linux-next: build failure after merge of the asm-generic tree kbuild test robot <lkp@intel.com> - 2015-10-15 01:40 +0200
Re: linux-next: build failure after merge of the asm-generic tree Stephen Rothwell <sfr@canb.auug.org.au> - 2015-10-15 04:40 +0200
Re: [kbuild-all] linux-next: build failure after merge of the asm-generic tree Fengguang Wu <lkp@intel.com> - 2015-10-15 16:50 +0200
Re: [kbuild-all] linux-next: build failure after merge of the asm-generic tree Stephen Rothwell <sfr@canb.auug.org.au> - 2015-10-15 17:00 +0200
| From | Stephen Rothwell <sfr@canb.auug.org.au> |
|---|---|
| Date | 2015-10-15 01:00 +0200 |
| Subject | linux-next: build failure after merge of the asm-generic tree |
| Message-ID | <qjDbA-4sf-7@gated-at.bofh.it> |
Hi Arnd,
After merging the asm-generic tree, today's linux-next build (x86_64
allmodconfig) failed like this:
drivers/acpi/osl.c:46:47: fatal error: asm-generic/io-64-nonatomic-lo-hi.h: No such file or directory
#include <asm-generic/io-64-nonatomic-lo-hi.h>
^
Caused by commit
f626fe17485b ("move io-64-nonatomic*.h out of asm-generic")
interacting with commit
3277b4ea216e ("ACPI / osl: replace custom implementation of readq / writeq")
from Linus' tree (added before v4.3-rc1).
I added the following build fix:
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 15 Oct 2015 09:50:08 +1100
Subject: [PATCH] fix for "move io-64-nonatomic*.h out of asm-generic"
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
drivers/acpi/osl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c
index 739a4a6b3b9b..ed219da94904 100644
--- a/drivers/acpi/osl.c
+++ b/drivers/acpi/osl.c
@@ -40,10 +40,10 @@
#include <linux/list.h>
#include <linux/jiffies.h>
#include <linux/semaphore.h>
+#include <linux/io-64-nonatomic-lo-hi.h>
#include <asm/io.h>
#include <asm/uaccess.h>
-#include <asm-generic/io-64-nonatomic-lo-hi.h>
#include "internal.h"
--
2.5.1
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | kbuild test robot <lkp@intel.com> |
|---|---|
| Date | 2015-10-15 01:40 +0200 |
| Message-ID | <qjDOh-5ts-7@gated-at.bofh.it> |
| In reply to | #1247242 |
[Multipart message — attachments visible in raw view] — view raw
Hi Stephen,
[auto build test ERROR on v4.3-rc5 -- if it's inappropriate base, please suggest rules for selecting the more suitable base]
url: https://github.com/0day-ci/linux/commits/Stephen-Rothwell/linux-next-build-failure-after-merge-of-the-asm-generic-tree/20151015-065548
config: i386-randconfig-i1-201541 (attached as .config)
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All errors (new ones prefixed by >>):
>> drivers/acpi/osl.c:43:41: fatal error: linux/io-64-nonatomic-lo-hi.h: No such file or directory
compilation terminated.
vim +43 drivers/acpi/osl.c
37 #include <linux/acpi.h>
38 #include <linux/efi.h>
39 #include <linux/ioport.h>
40 #include <linux/list.h>
41 #include <linux/jiffies.h>
42 #include <linux/semaphore.h>
> 43 #include <linux/io-64-nonatomic-lo-hi.h>
44
45 #include <asm/io.h>
46 #include <asm/uaccess.h>
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[toc] | [prev] | [next] | [standalone]
| From | Stephen Rothwell <sfr@canb.auug.org.au> |
|---|---|
| Date | 2015-10-15 04:40 +0200 |
| Message-ID | <qjGCt-1cI-1@gated-at.bofh.it> |
| In reply to | #1247251 |
Hi, On Thu, 15 Oct 2015 07:32:27 +0800 kbuild test robot <lkp@intel.com> wrote: > > [auto build test ERROR on v4.3-rc5 -- if it's inappropriate base, please suggest rules for selecting the more suitable base] I think you should just ignore any patches from me that have "linux-next:" in the subject line as they need to be applied either to a branch I have merged or to a combination of branches I have merged. -- Cheers, Stephen Rothwell sfr@canb.auug.org.au -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Fengguang Wu <lkp@intel.com> |
|---|---|
| Date | 2015-10-15 16:50 +0200 |
| Subject | Re: [kbuild-all] linux-next: build failure after merge of the asm-generic tree |
| Message-ID | <qjS0W-Yf-21@gated-at.bofh.it> |
| In reply to | #1247348 |
Hi Stephen, On Thu, Oct 15, 2015 at 01:37:34PM +1100, Stephen Rothwell wrote: > Hi, > > On Thu, 15 Oct 2015 07:32:27 +0800 kbuild test robot <lkp@intel.com> wrote: > > > > [auto build test ERROR on v4.3-rc5 -- if it's inappropriate base, please suggest rules for selecting the more suitable base] > > I think you should just ignore any patches from me that have > "linux-next:" in the subject line as they need to be applied either to > a branch I have merged or to a combination of branches I have merged. OK. Sorry for the noise! Thanks, Fengguang -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Stephen Rothwell <sfr@canb.auug.org.au> |
|---|---|
| Date | 2015-10-15 17:00 +0200 |
| Subject | Re: [kbuild-all] linux-next: build failure after merge of the asm-generic tree |
| Message-ID | <qjSaB-19v-1@gated-at.bofh.it> |
| In reply to | #1247864 |
Hi Fengguang, On Thu, 15 Oct 2015 22:45:32 +0800 Fengguang Wu <lkp@intel.com> wrote: > > On Thu, Oct 15, 2015 at 01:37:34PM +1100, Stephen Rothwell wrote: > > > > On Thu, 15 Oct 2015 07:32:27 +0800 kbuild test robot <lkp@intel.com> wrote: > > > > > > [auto build test ERROR on v4.3-rc5 -- if it's inappropriate base, please suggest rules for selecting the more suitable base] > > > > I think you should just ignore any patches from me that have > > "linux-next:" in the subject line as they need to be applied either to > > a branch I have merged or to a combination of branches I have merged. > > OK. Sorry for the noise! No worries, keep up the good work! -- Cheers, Stephen Rothwell sfr@canb.auug.org.au -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web