The patch titled Add CONFIG_HEADERS_CHECK option to automatically run 'make headers_check' has been removed from the -mm tree. Its filename is add-config_headers_check-option-to-automatically-run-make-headers_check.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Add CONFIG_HEADERS_CHECK option to automatically run 'make headers_check' From: David Woodhouse <dwmw2@xxxxxxxxxxxxx> In order to encourage people to notice when they break the exported headers, add a config option which automatically runs the sanity checks when building vmlinux. That way, those who use allyesconfig will notice failures. Signed-off-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- Makefile | 3 +++ lib/Kconfig.debug | 13 +++++++++++++ 2 files changed, 16 insertions(+) diff -puN Makefile~add-config_headers_check-option-to-automatically-run-make-headers_check Makefile --- a/Makefile~add-config_headers_check-option-to-automatically-run-make-headers_check +++ a/Makefile @@ -741,6 +741,9 @@ endif # ifdef CONFIG_KALLSYMS # vmlinux image - including updated kernel symbols vmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) FORCE +ifdef CONFIG_HEADERS_CHECK + $(Q)$(MAKE) headers_check +endif $(call if_changed_rule,vmlinux__) $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ $(Q)rm -f .old_version diff -puN lib/Kconfig.debug~add-config_headers_check-option-to-automatically-run-make-headers_check lib/Kconfig.debug --- a/lib/Kconfig.debug~add-config_headers_check-option-to-automatically-run-make-headers_check +++ a/lib/Kconfig.debug @@ -371,6 +371,19 @@ config FORCED_INLINING become the default in the future, until then this option is there to test gcc for this. +config HEADERS_CHECK + bool "Run 'make headers_check' when building vmlinux" + help + This option will extract the user-visible kernel headers whenever + building the kernel, and will run basic sanity checks on them to + ensure that exported files do not attempt to include files which + were not exported, etc. + + If you're making modifications to header files which are + relevant for userspace, say 'Y', and check the headers + exported to $(INSTALL_HDR_PATH) (usually 'usr/include' in + your build tree), to make sure they're suitable. + config RCU_TORTURE_TEST tristate "torture tests for RCU" depends on DEBUG_KERNEL _ Patches currently in -mm which might be from dwmw2@xxxxxxxxxxxxx are origin.patch git-mtd.patch mtd-maps-add-parameter-to-amd76xrom-to-override-rom-window-size-if-set-incorrectly-by-bios.patch mtd-chips-support-for-sst-49lf040b-flash-chip.patch mtd-maps-support-for-bios-flash-chips-on-intel-esb2-southbridge.patch add-config_headers_check-option-to-automatically-run-make-headers_check-nobble.patch debug-shared-irqs.patch debug-shared-irqs-kconfig-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html