An error occurred fetching the project authors.
- 01 Jun, 2016 2 commits
-
-
Greg Kroah-Hartman authored
-
Arnd Bergmann authored
commit c9c6837d upstream. gcc-6 started warning by default about variables that are not used anywhere and that are marked 'const', generating many false positives in an allmodconfig build, e.g.: arch/arm/mach-davinci/board-da830-evm.c:282:20: warning: 'da830_evm_emif25_pins' defined but not used [-Wunused-const-variable=] arch/arm/plat-omap/dmtimer.c:958:34: warning: 'omap_timer_match' defined but not used [-Wunused-const-variable=] drivers/bluetooth/hci_bcm.c:625:39: warning: 'acpi_bcm_default_gpios' defined but not used [-Wunused-const-variable=] drivers/char/hw_random/omap-rng.c:92:18: warning: 'reg_map_omap4' defined but not used [-Wunused-const-variable=] drivers/devfreq/exynos/exynos5_bus.c:381:32: warning: 'exynos5_busfreq_int_pm' defined but not used [-Wunused-const-variable=] drivers/dma/mv_xor.c:1139:34: warning: 'mv_xor_dt_ids' defined but not used [-Wunused-const-variable=] This is similar to the existing -Wunused-but-set-variable warning that was added in an earlier release and that we disable by default now and only enable when W=1 is set, so it makes sense to do the same here. Once we have eliminated the majority of the warnings for both, we can put them back into the default list. We probably want this in backport kernels as well, to allow building them with gcc-6 without introducing extra warnings. Signed-off-by:
Arnd Bergmann <arnd@arndb.de> Acked-by:
Olof Johansson <olof@lixom.net> Acked-by:
Lee Jones <lee.jones@linaro.org> Signed-off-by:
Michal Marek <mmarek@suse.com> Signed-off-by:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
- 19 May, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 11 May, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 04 May, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 20 Apr, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 12 Apr, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 16 Mar, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 09 Mar, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 03 Mar, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 25 Feb, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 17 Feb, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 31 Jan, 2016 1 commit
-
-
Greg Kroah-Hartman authored
-
- 10 Jan, 2016 1 commit
-
-
Linus Torvalds authored
-
- 03 Jan, 2016 1 commit
-
-
Linus Torvalds authored
-
- 28 Dec, 2015 1 commit
-
-
Linus Torvalds authored
-
- 21 Dec, 2015 1 commit
-
-
Linus Torvalds authored
-
- 14 Dec, 2015 1 commit
-
-
Linus Torvalds authored
-
- 06 Dec, 2015 1 commit
-
-
Linus Torvalds authored
-
- 30 Nov, 2015 1 commit
-
-
Linus Torvalds authored
-
- 23 Nov, 2015 1 commit
-
-
Linus Torvalds authored
-
- 16 Nov, 2015 1 commit
-
-
Linus Torvalds authored
-
- 02 Nov, 2015 1 commit
-
-
Linus Torvalds authored
-
- 25 Oct, 2015 1 commit
-
-
Linus Torvalds authored
-
- 18 Oct, 2015 1 commit
-
-
Linus Torvalds authored
-
- 11 Oct, 2015 1 commit
-
-
Linus Torvalds authored
-
- 08 Oct, 2015 1 commit
-
-
Wang Long authored
We use $make TARGETS="size timers" kselftest to build and run selftests. but there is no rule for us to clean the kselftest generated files. This patch add the rules, for example: $ make TARGETS="size timers" kselftest-clean can clean all kselftest generated files. Signed-off-by:
Wang Long <long.wanglong@huawei.com> Acked-by:
Michael Ellerman <mpe@ellerman.id.au> Signed-off-by:
Michal Marek <mmarek@suse.com>
-
- 04 Oct, 2015 1 commit
-
-
Linus Torvalds authored
-
- 01 Oct, 2015 1 commit
-
-
Feng Wu authored
We need to build files in virt/lib/, which are now used by KVM and VFIO, so add virt directory to the top Makefile. Signed-off-by:
Feng Wu <feng.wu@intel.com> Acked-by:
Michal Marek <mmarek@suse.com> Signed-off-by:
Paolo Bonzini <pbonzini@redhat.com>
-
- 28 Sep, 2015 1 commit
-
-
Ben Hutchings authored
Currently the encoding of documents generated by DocBook depends on the current locale. Make the output reproducible independently of the locale, by setting the encoding to UTF-8 (LC_CTYPE=C.UTF-8) by preference, or ASCII (LC_CTYPE=C) as a fallback. LC_CTYPE can normally be overridden by LC_ALL, but the top-level Makefile unsets that. Signed-off-by:
Ben Hutchings <ben@decadent.org.uk> [jc: added check-lc_ctype to .gitignore] Signed-off-by:
Jonathan Corbet <corbet@lwn.net>
-
- 27 Sep, 2015 1 commit
-
-
Linus Torvalds authored
-
- 20 Sep, 2015 1 commit
-
-
Linus Torvalds authored
-
- 12 Sep, 2015 1 commit
-
-
Linus Torvalds authored
-
- 04 Sep, 2015 1 commit
-
-
Michal Marek authored
We cannot detect clang before including the arch Makefile, because that can set the default cross compiler. We also cannot detect clang after including the arch Makefile, because powerpc wants to know about clang. Solve this by using an deferred variable. This costs us a few shell invocations, but this is only a constant number. Reported-by:
Behan Webster <behanw@converseincode.com> Reported-by:
Anton Blanchard <anton@samba.org> Signed-off-by:
Michal Marek <mmarek@suse.com>
-
- 30 Aug, 2015 1 commit
-
-
Linus Torvalds authored
-
- 28 Aug, 2015 1 commit
-
-
Rasmus Villemoes authored
Make sure 'make clean' removes *.su files generated by the gcc option -fstack-usage. Signed-off-by:
Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by:
Michal Marek <mmarek@suse.com>
-
- 24 Aug, 2015 1 commit
-
-
Linus Torvalds authored
-
- 16 Aug, 2015 1 commit
-
-
Linus Torvalds authored
-
- 14 Aug, 2015 2 commits
-
-
David Woodhouse authored
Since commit 1329e8cc ("modsign: Extract signing cert from CONFIG_MODULE_SIG_KEY if needed"), the build system has carefully coped with the signing key being specified as a relative path in either the source or or the build trees. However, the actual signing of modules has not worked if the filename is relative to the source tree. Fix that by moving the config_filename helper into scripts/Kbuild.include so that it can be used from elsewhere, and then using it in the top-level Makefile to find the signing key file. Kill the intermediate $(MODPUBKEY) and $(MODSECKEY) variables too, while we're at it. There's no need for them. Signed-off-by:
David Woodhouse <David.Woodhouse@intel.com> Signed-off-by:
David Howells <dhowells@redhat.com>
-
David Howells authored
Move certificate handling out of the kernel/ directory and into a certs/ directory to get all the weird stuff in one place and move the generated signing keys into this directory. Signed-off-by:
David Howells <dhowells@redhat.com> Reviewed-by:
David Woodhouse <David.Woodhouse@intel.com>
-