mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 13:44:15 +08:00
0fb9dc2867
Userspace cannot compile <asm/sembuf.h> due to some missing type definitions. For example, building it for x86 fails as follows: CC usr/include/asm/sembuf.h.s In file included from <command-line>:32:0: usr/include/asm/sembuf.h:17:20: error: field `sem_perm' has incomplete type struct ipc64_perm sem_perm; /* permissions .. see ipc.h */ ^~~~~~~~ usr/include/asm/sembuf.h:24:2: error: unknown type name `__kernel_time_t' __kernel_time_t sem_otime; /* last semop time */ ^~~~~~~~~~~~~~~ usr/include/asm/sembuf.h:25:2: error: unknown type name `__kernel_ulong_t' __kernel_ulong_t __unused1; ^~~~~~~~~~~~~~~~ usr/include/asm/sembuf.h:26:2: error: unknown type name `__kernel_time_t' __kernel_time_t sem_ctime; /* last change time */ ^~~~~~~~~~~~~~~ usr/include/asm/sembuf.h:27:2: error: unknown type name `__kernel_ulong_t' __kernel_ulong_t __unused2; ^~~~~~~~~~~~~~~~ usr/include/asm/sembuf.h:29:2: error: unknown type name `__kernel_ulong_t' __kernel_ulong_t sem_nsems; /* no. of semaphores in array */ ^~~~~~~~~~~~~~~~ usr/include/asm/sembuf.h:30:2: error: unknown type name `__kernel_ulong_t' __kernel_ulong_t __unused3; ^~~~~~~~~~~~~~~~ usr/include/asm/sembuf.h:31:2: error: unknown type name `__kernel_ulong_t' __kernel_ulong_t __unused4; ^~~~~~~~~~~~~~~~ It is just a matter of missing include directive. Include <asm/ipcbuf.h> to make it self-contained, and add it to the compile-test coverage. Link: http://lkml.kernel.org/r/20191030063855.9989-3-yamada.masahiro@socionext.com Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
107 lines
3.1 KiB
Makefile
107 lines
3.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# Unlike the kernel space, exported headers are written in standard C.
|
|
# - Forbid C++ style comments
|
|
# - Use '__inline__', '__asm__' instead of 'inline', 'asm'
|
|
#
|
|
# -std=c90 (equivalent to -ansi) catches the violation of those.
|
|
# We cannot go as far as adding -Wpedantic since it emits too many warnings.
|
|
UAPI_CFLAGS := -std=c90 -Wall -Werror=implicit-function-declaration
|
|
|
|
override c_flags = $(UAPI_CFLAGS) -Wp,-MD,$(depfile) -I$(objtree)/usr/include
|
|
|
|
# The following are excluded for now because they fail to build.
|
|
#
|
|
# Do not add a new header to the blacklist without legitimate reason.
|
|
# Please consider to fix the header first.
|
|
#
|
|
# Sorted alphabetically.
|
|
header-test- += asm/shmbuf.h
|
|
header-test- += asm/signal.h
|
|
header-test- += asm/ucontext.h
|
|
header-test- += drm/vmwgfx_drm.h
|
|
header-test- += linux/am437x-vpfe.h
|
|
header-test- += linux/android/binder.h
|
|
header-test- += linux/android/binderfs.h
|
|
header-test- += linux/coda.h
|
|
header-test- += linux/elfcore.h
|
|
header-test- += linux/errqueue.h
|
|
header-test- += linux/fsmap.h
|
|
header-test- += linux/hdlc/ioctl.h
|
|
header-test- += linux/ivtv.h
|
|
header-test- += linux/kexec.h
|
|
header-test- += linux/matroxfb.h
|
|
header-test- += linux/nfc.h
|
|
header-test- += linux/omap3isp.h
|
|
header-test- += linux/omapfb.h
|
|
header-test- += linux/patchkey.h
|
|
header-test- += linux/phonet.h
|
|
header-test- += linux/reiserfs_xattr.h
|
|
header-test- += linux/sctp.h
|
|
header-test- += linux/signal.h
|
|
header-test- += linux/sysctl.h
|
|
header-test- += linux/usb/audio.h
|
|
header-test- += linux/v4l2-mediabus.h
|
|
header-test- += linux/v4l2-subdev.h
|
|
header-test- += linux/videodev2.h
|
|
header-test- += linux/vm_sockets.h
|
|
header-test- += sound/asequencer.h
|
|
header-test- += sound/asoc.h
|
|
header-test- += sound/asound.h
|
|
header-test- += sound/compress_offload.h
|
|
header-test- += sound/emu10k1.h
|
|
header-test- += sound/sfnt_info.h
|
|
header-test- += xen/evtchn.h
|
|
header-test- += xen/gntdev.h
|
|
header-test- += xen/privcmd.h
|
|
|
|
# More headers are broken in some architectures
|
|
|
|
ifeq ($(SRCARCH),arc)
|
|
header-test- += linux/bpf_perf_event.h
|
|
endif
|
|
|
|
ifeq ($(SRCARCH),ia64)
|
|
header-test- += asm/setup.h
|
|
header-test- += asm/sigcontext.h
|
|
header-test- += asm/perfmon.h
|
|
header-test- += asm/perfmon_default_smpl.h
|
|
header-test- += linux/if_bonding.h
|
|
endif
|
|
|
|
ifeq ($(SRCARCH),mips)
|
|
header-test- += asm/stat.h
|
|
endif
|
|
|
|
ifeq ($(SRCARCH),powerpc)
|
|
header-test- += asm/stat.h
|
|
header-test- += linux/bpf_perf_event.h
|
|
endif
|
|
|
|
ifeq ($(SRCARCH),riscv)
|
|
header-test- += linux/bpf_perf_event.h
|
|
endif
|
|
|
|
ifeq ($(SRCARCH),sparc)
|
|
header-test- += asm/stat.h
|
|
header-test- += asm/uctx.h
|
|
header-test- += asm/fbio.h
|
|
endif
|
|
|
|
# asm-generic/*.h is used by asm/*.h, and should not be included directly
|
|
header-test- += asm-generic/%
|
|
|
|
extra-y := $(patsubst $(obj)/%.h,%.hdrtest, $(shell find $(obj) -name '*.h'))
|
|
|
|
quiet_cmd_hdrtest = HDRTEST $<
|
|
cmd_hdrtest = \
|
|
$(CC) $(c_flags) -S -o /dev/null -x c /dev/null \
|
|
$(if $(filter-out $(header-test-), $*.h), -include $<); \
|
|
$(PERL) $(srctree)/scripts/headers_check.pl $(obj) $(SRCARCH) $<; \
|
|
touch $@
|
|
|
|
$(obj)/%.hdrtest: $(obj)/%.h FORCE
|
|
$(call if_changed_dep,hdrtest)
|
|
|
|
clean-files += $(filter-out Makefile, $(notdir $(wildcard $(obj)/*)))
|