- 30 Nov, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 24 Nov, 2017 2 commits
-
-
Greg Kroah-Hartman authored
-
Greg Kroah-Hartman authored
-
- 21 Nov, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 18 Nov, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 15 Nov, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 08 Nov, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 02 Nov, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 27 Oct, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 21 Oct, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 18 Oct, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 12 Oct, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 08 Oct, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 05 Oct, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 27 Sep, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 13 Sep, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 07 Sep, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 02 Sep, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 30 Aug, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 25 Aug, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 16 Aug, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 13 Aug, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 11 Aug, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 07 Aug, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 27 Jul, 2017 2 commits
-
-
Greg Kroah-Hartman authored
-
Linus Torvalds authored
commit bd664f6b upstream. I made the mistake of upgrading my desktop to the new Fedora 26 that comes with gcc-7.1.1. There's nothing wrong per se that I've noticed, but I now have 1500 lines of warnings, mostly from the new format-truncation warning triggering all over the tree. We use 'snprintf()' and friends in a lot of places, and often know that the numbers are fairly small (ie a controller index or similar), but gcc doesn't know that, and sees an 'int', and thinks that it could be some huge number. And then complains when our buffers are not able to fit the name for the ten millionth controller. These warnings aren't necessarily bad per se, and we probably want to look through them subsystem by subsystem, but at least during the merge window they just mean that I can't even see if somebody is introducing any *real* problems when I pull. So warnings disabled for now. Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
- 21 Jul, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 15 Jul, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 05 Jul, 2017 2 commits
-
-
Greg Kroah-Hartman authored
-
Gleb Fotengauer-Malinovskiy authored
commit 7292ae3d upstream. The latest change of asm goto support check added passing of KBUILD_CFLAGS to compiler. When these flags reference gcc plugins that are not built yet, the check fails. When one runs "make bzImage" followed by "make modules", the kernel is always built with HAVE_JUMP_LABEL disabled, while the modules are built depending on CONFIG_JUMP_LABEL. If HAVE_JUMP_LABEL macro happens to be different, modules are built with undefined references, e.g.: ERROR: "static_key_slow_inc" [net/netfilter/xt_TEE.ko] undefined! ERROR: "static_key_slow_dec" [net/netfilter/xt_TEE.ko] undefined! ERROR: "static_key_slow_dec" [net/netfilter/nft_meta.ko] undefined! ERROR: "static_key_slow_inc" [net/netfilter/nft_meta.ko] undefined! ERROR: "nf_hooks_needed" [net/netfilter/ipvs/ip_vs.ko] undefined! ERROR: "nf_hooks_needed" [net/ipv6/ipv6.ko] undefined! ERROR: "static_key_count" [net/ipv6/ipv6.ko] undefined! ERROR: "static_key_slow_inc" [net/ipv6/ipv6.ko] undefined! This change moves the check before all these references are added to KBUILD_CFLAGS. This is correct because subsequent KBUILD_CFLAGS modifications are not relevant to this check. Reported-by:
Anton V. Boyarshinov <boyarsh@altlinux.org> Fixes: 35f860f9 ("jump label: pass kbuild_cflags when checking for asm goto support") Signed-off-by:
Gleb Fotengauer-Malinovskiy <glebfm@altlinux.org> Signed-off-by:
Dmitry V. Levin <ldv@altlinux.org> Acked-by:
Steven Rostedt (VMware) <rostedt@goodmis.org> Acked-by:
David Lin <dtwlin@google.com> Signed-off-by:
Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
- 29 Jun, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 26 Jun, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 17 Jun, 2017 2 commits
-
-
Greg Kroah-Hartman authored
-
David Lin authored
[ Upstream commit 35f860f9 ] Some versions of ARM GCC compiler such as Android toolchain throws in a '-fpic' flag by default. This causes the gcc-goto check script to fail although some config would have '-fno-pic' flag in the KBUILD_CFLAGS. This patch passes the KBUILD_CFLAGS to the check script so that the script does not rely on the default config from different compilers. Link: http://lkml.kernel.org/r/20170120234329.78868-1-dtwlin@google.com Signed-off-by:
David Lin <dtwlin@google.com> Acked-by:
Steven Rostedt <rostedt@goodmis.org> Cc: Michal Marek <mmarek@suse.com> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by:
Sasha Levin <alexander.levin@verizon.com> Signed-off-by:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
- 14 Jun, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 07 Jun, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 25 May, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 20 May, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 14 May, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-
- 08 May, 2017 1 commit
-
-
Greg Kroah-Hartman authored
-