treewide: add "WITH Linux-syscall-note" to SPDX tag of uapi headers
UAPI headers licensed under GPL are supposed to have exception "WITH Linux-syscall-note" so that they can be included into non-GPL user space application code. The exception note is missing in some UAPI headers. Some of them slipped in by the treewide conversion commit b2441318 ("License cleanup: add SPDX GPL-2.0 license identifier to files with no license"). Just run: $ git show --oneline b2441318 -- arch/x86/include/uapi/asm/ I believe they are not intentional, and should be fixed too. This patch was generated by the following script: git grep -l --not -e Linux-syscall-note --and -e SPDX-License-Identifier \ -- :arch/*/include/uapi/asm/*.h :include/uapi/ :^*/Kbuild | while read file do sed -i -e '/[[:space:]]OR[[:space:]]/s/\(GPL-[^[:space:]]*\)/(\1 WITH Linux-syscall-note)/g' \ -e '/[[:space:]]or[[:space:]]/s/\(GPL-[^[:space:]]*\)/(\1 WITH Linux-syscall-note)/g' \ -e '/[[:space:]]OR[[:space:]]/!{/[[:space:]]or[[:space:]]/!s/\(GPL-[^[:space:]]*\)/\1 WITH Linux-syscall-note/g}' $file done After this patch is applied, there are 5 UAPI headers that do not contain "WITH Linux-syscall-note". They are kept untouched since this exception applies only to GPL variants. $ git grep --not -e Linux-syscall-note --and -e SPDX-License-Identifier \ -- :arch/*/include/uapi/asm/*.h :include/uapi/ :^*/Kbuild include/uapi/drm/panfrost_drm.h:/* SPDX-License-Identifier: MIT */ include/uapi/linux/batman_adv.h:/* SPDX-License-Identifier: MIT */ include/uapi/linux/qemu_fw_cfg.h:/* SPDX-License-Identifier: BSD-3-Clause */ include/uapi/linux/vbox_err.h:/* SPDX-License-Identifier: MIT */ include/uapi/linux/virtio_iommu.h:/* SPDX-License-Identifier: BSD-3-Clause */ Signed-off-by:Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by:
Thomas Gleixner <tglx@linutronix.de> Signed-off-by:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Showing
- arch/arm64/include/uapi/asm/bpf_perf_event.h 1 addition, 1 deletionarch/arm64/include/uapi/asm/bpf_perf_event.h
- arch/csky/include/uapi/asm/byteorder.h 1 addition, 1 deletionarch/csky/include/uapi/asm/byteorder.h
- arch/csky/include/uapi/asm/cachectl.h 1 addition, 1 deletionarch/csky/include/uapi/asm/cachectl.h
- arch/csky/include/uapi/asm/perf_regs.h 1 addition, 1 deletionarch/csky/include/uapi/asm/perf_regs.h
- arch/csky/include/uapi/asm/ptrace.h 1 addition, 1 deletionarch/csky/include/uapi/asm/ptrace.h
- arch/csky/include/uapi/asm/sigcontext.h 1 addition, 1 deletionarch/csky/include/uapi/asm/sigcontext.h
- arch/csky/include/uapi/asm/unistd.h 1 addition, 1 deletionarch/csky/include/uapi/asm/unistd.h
- arch/nds32/include/uapi/asm/auxvec.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/auxvec.h
- arch/nds32/include/uapi/asm/byteorder.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/byteorder.h
- arch/nds32/include/uapi/asm/cachectl.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/cachectl.h
- arch/nds32/include/uapi/asm/fp_udfiex_crtl.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/fp_udfiex_crtl.h
- arch/nds32/include/uapi/asm/param.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/param.h
- arch/nds32/include/uapi/asm/ptrace.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/ptrace.h
- arch/nds32/include/uapi/asm/sigcontext.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/sigcontext.h
- arch/nds32/include/uapi/asm/unistd.h 1 addition, 1 deletionarch/nds32/include/uapi/asm/unistd.h
- arch/powerpc/include/uapi/asm/bpf_perf_event.h 1 addition, 1 deletionarch/powerpc/include/uapi/asm/bpf_perf_event.h
- arch/riscv/include/uapi/asm/auxvec.h 1 addition, 1 deletionarch/riscv/include/uapi/asm/auxvec.h
- arch/riscv/include/uapi/asm/bitsperlong.h 1 addition, 1 deletionarch/riscv/include/uapi/asm/bitsperlong.h
- arch/riscv/include/uapi/asm/byteorder.h 1 addition, 1 deletionarch/riscv/include/uapi/asm/byteorder.h
- arch/riscv/include/uapi/asm/hwcap.h 1 addition, 1 deletionarch/riscv/include/uapi/asm/hwcap.h
Loading
Please register or sign in to comment