* v4.10-rc1 - build failure arm64?
@ 2016-12-26 18:30 Nishanth Menon
2016-12-26 18:46 ` Nishanth Menon
0 siblings, 1 reply; 7+ messages in thread
From: Nishanth Menon @ 2016-12-26 18:30 UTC (permalink / raw)
To: linux-arm-kernel
Hi,
Not sure if this was already reported (but searching linux-arm and
linux-next MLs did not quickly show something)
* master 7ce7d89f4883 Linux 4.10-rc1
-> http://pastebin.ubuntu.com/23689404/
Backtracking:
next-20161224, next-20161223, next-20161222->
http://pastebin.ubuntu.com/23689415/ (different from master)
next-20161221 -> Builds fine (last clean build)
GCC:
https://releases.linaro.org/components/toolchain/binaries/latest-6/aarch64-linux-gnu/
$ aarch64-linux-gnu-gcc --version
aarch64-linux-gnu-gcc (Linaro GCC 6.2-2016.11) 6.2.1 20161016
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
Reproduction steps:
$ make CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 defconfig
$ make CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 Image
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 7+ messages in thread
* v4.10-rc1 - build failure arm64?
2016-12-26 18:30 v4.10-rc1 - build failure arm64? Nishanth Menon
@ 2016-12-26 18:46 ` Nishanth Menon
0 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2016-12-26 18:46 UTC (permalink / raw)
To: linux-arm-kernel
On 12/26/2016 12:30 PM, Nishanth Menon wrote:
> Hi,
> Not sure if this was already reported (but searching linux-arm and
> linux-next MLs did not quickly show something)
>
> * master 7ce7d89f4883 Linux 4.10-rc1
> -> http://pastebin.ubuntu.com/23689404/
>
> Backtracking:
> next-20161224, next-20161223, next-20161222->
> http://pastebin.ubuntu.com/23689415/ (different from master)
>
> next-20161221 -> Builds fine (last clean build)
>
> GCC:
> https://releases.linaro.org/components/toolchain/binaries/latest-6/aarch64-linux-gnu/
> $ aarch64-linux-gnu-gcc --version
> aarch64-linux-gnu-gcc (Linaro GCC 6.2-2016.11) 6.2.1 20161016
> Copyright (C) 2016 Free Software Foundation, Inc.
> This is free software; see the source for copying conditions. There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
> PURPOSE.
>
> Reproduction steps:
>
> $ make CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 defconfig
> $ make CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 Image
>
>
A bit of bisect later, looks like reverting the following commit
allows the build to proceed. -> note: there is no fail on
multi_v7_defconfig or omap2plus_defconfig even without the revert.
commit 7c0f6ba682b9c7632072ffbedf8d328c8f3c42ba
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date: Sat Dec 24 11:46:01 2016 -0800
Replace <asm/uaccess.h> with <linux/uaccess.h> globally
This was entirely automated, using the script by Al:
PATT='^[[:blank:]]*#[[:blank:]]*include[[:blank:]]*<asm/uaccess.h>'
sed -i -e "s!$PATT!#include <linux/uaccess.h>!" \
$(git grep -l "$PATT"|grep -v ^include/linux/uaccess.h)
to do the replacement at the end of the merge window.
Requested-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v4.10-rc1 - build failure arm64?
@ 2016-12-26 18:46 ` Nishanth Menon
0 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2016-12-26 18:46 UTC (permalink / raw)
To: linux-arm-kernel; +Cc: lkml
On 12/26/2016 12:30 PM, Nishanth Menon wrote:
> Hi,
> Not sure if this was already reported (but searching linux-arm and
> linux-next MLs did not quickly show something)
>
> * master 7ce7d89f4883 Linux 4.10-rc1
> -> http://pastebin.ubuntu.com/23689404/
>
> Backtracking:
> next-20161224, next-20161223, next-20161222->
> http://pastebin.ubuntu.com/23689415/ (different from master)
>
> next-20161221 -> Builds fine (last clean build)
>
> GCC:
> https://releases.linaro.org/components/toolchain/binaries/latest-6/aarch64-linux-gnu/
> $ aarch64-linux-gnu-gcc --version
> aarch64-linux-gnu-gcc (Linaro GCC 6.2-2016.11) 6.2.1 20161016
> Copyright (C) 2016 Free Software Foundation, Inc.
> This is free software; see the source for copying conditions. There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
> PURPOSE.
>
> Reproduction steps:
>
> $ make CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 defconfig
> $ make CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64 Image
>
>
A bit of bisect later, looks like reverting the following commit
allows the build to proceed. -> note: there is no fail on
multi_v7_defconfig or omap2plus_defconfig even without the revert.
commit 7c0f6ba682b9c7632072ffbedf8d328c8f3c42ba
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date: Sat Dec 24 11:46:01 2016 -0800
Replace <asm/uaccess.h> with <linux/uaccess.h> globally
This was entirely automated, using the script by Al:
PATT='^[[:blank:]]*#[[:blank:]]*include[[:blank:]]*<asm/uaccess.h>'
sed -i -e "s!$PATT!#include <linux/uaccess.h>!" \
$(git grep -l "$PATT"|grep -v ^include/linux/uaccess.h)
to do the replacement at the end of the merge window.
Requested-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 7+ messages in thread
* v4.10-rc1 - build failure arm64?
2016-12-26 18:46 ` Nishanth Menon
@ 2016-12-26 18:49 ` Al Viro
-1 siblings, 0 replies; 7+ messages in thread
From: Al Viro @ 2016-12-26 18:49 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Dec 26, 2016 at 12:46:58PM -0600, Nishanth Menon wrote:
> A bit of bisect later, looks like reverting the following commit allows the
> build to proceed. -> note: there is no fail on multi_v7_defconfig or
> omap2plus_defconfig even without the revert.
See git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git#arm64-fix
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v4.10-rc1 - build failure arm64?
@ 2016-12-26 18:49 ` Al Viro
0 siblings, 0 replies; 7+ messages in thread
From: Al Viro @ 2016-12-26 18:49 UTC (permalink / raw)
To: Nishanth Menon; +Cc: linux-arm-kernel, lkml
On Mon, Dec 26, 2016 at 12:46:58PM -0600, Nishanth Menon wrote:
> A bit of bisect later, looks like reverting the following commit allows the
> build to proceed. -> note: there is no fail on multi_v7_defconfig or
> omap2plus_defconfig even without the revert.
See git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git#arm64-fix
^ permalink raw reply [flat|nested] 7+ messages in thread
* v4.10-rc1 - build failure arm64?
2016-12-26 18:49 ` Al Viro
@ 2016-12-26 18:56 ` Nishanth Menon
-1 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2016-12-26 18:56 UTC (permalink / raw)
To: linux-arm-kernel
On 12/26/2016 12:49 PM, Al Viro wrote:
> On Mon, Dec 26, 2016 at 12:46:58PM -0600, Nishanth Menon wrote:
>
>> A bit of bisect later, looks like reverting the following commit allows the
>> build to proceed. -> note: there is no fail on multi_v7_defconfig or
>> omap2plus_defconfig even without the revert.
>
> See git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git#arm64-fix
>
Thanks. [1] does indeed fix the build fail I had noticed.
[1]
https://git.kernel.org/cgit/linux/kernel/git/viro/vfs.git/patch/?id=b4b8664d291ac1998e0f0bcdc96b6397f0fe68b3
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: v4.10-rc1 - build failure arm64?
@ 2016-12-26 18:56 ` Nishanth Menon
0 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2016-12-26 18:56 UTC (permalink / raw)
To: Al Viro; +Cc: linux-arm-kernel, lkml
On 12/26/2016 12:49 PM, Al Viro wrote:
> On Mon, Dec 26, 2016 at 12:46:58PM -0600, Nishanth Menon wrote:
>
>> A bit of bisect later, looks like reverting the following commit allows the
>> build to proceed. -> note: there is no fail on multi_v7_defconfig or
>> omap2plus_defconfig even without the revert.
>
> See git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git#arm64-fix
>
Thanks. [1] does indeed fix the build fail I had noticed.
[1]
https://git.kernel.org/cgit/linux/kernel/git/viro/vfs.git/patch/?id=b4b8664d291ac1998e0f0bcdc96b6397f0fe68b3
--
Regards,
Nishanth Menon
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-12-26 18:57 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-26 18:30 v4.10-rc1 - build failure arm64? Nishanth Menon
2016-12-26 18:46 ` Nishanth Menon
2016-12-26 18:46 ` Nishanth Menon
2016-12-26 18:49 ` Al Viro
2016-12-26 18:49 ` Al Viro
2016-12-26 18:56 ` Nishanth Menon
2016-12-26 18:56 ` Nishanth Menon
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.