mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	 d9c5252295
			
		
	
	
		d9c5252295
		
	
	
	
	
		
			
			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 commitb24413180f("License cleanup: add SPDX GPL-2.0 license identifier to files with no license"). Just run: $ git show --onelineb24413180f-- 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>
		
			
				
	
	
		
			42 lines
		
	
	
		
			953 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			953 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
 | |
| 
 | |
| #ifndef __QCOM_FASTRPC_H__
 | |
| #define __QCOM_FASTRPC_H__
 | |
| 
 | |
| #include <linux/types.h>
 | |
| 
 | |
| #define FASTRPC_IOCTL_ALLOC_DMA_BUFF	_IOWR('R', 1, struct fastrpc_alloc_dma_buf)
 | |
| #define FASTRPC_IOCTL_FREE_DMA_BUFF	_IOWR('R', 2, __u32)
 | |
| #define FASTRPC_IOCTL_INVOKE		_IOWR('R', 3, struct fastrpc_invoke)
 | |
| #define FASTRPC_IOCTL_INIT_ATTACH	_IO('R', 4)
 | |
| #define FASTRPC_IOCTL_INIT_CREATE	_IOWR('R', 5, struct fastrpc_init_create)
 | |
| 
 | |
| struct fastrpc_invoke_args {
 | |
| 	__u64 ptr;
 | |
| 	__u64 length;
 | |
| 	__s32 fd;
 | |
| 	__u32 reserved;
 | |
| };
 | |
| 
 | |
| struct fastrpc_invoke {
 | |
| 	__u32 handle;
 | |
| 	__u32 sc;
 | |
| 	__u64 args;
 | |
| };
 | |
| 
 | |
| struct fastrpc_init_create {
 | |
| 	__u32 filelen;	/* elf file length */
 | |
| 	__s32 filefd;	/* fd for the file */
 | |
| 	__u32 attrs;
 | |
| 	__u32 siglen;
 | |
| 	__u64 file;	/* pointer to elf file */
 | |
| };
 | |
| 
 | |
| struct fastrpc_alloc_dma_buf {
 | |
| 	__s32 fd;	/* fd */
 | |
| 	__u32 flags;	/* flags to map with */
 | |
| 	__u64 size;	/* size */
 | |
| };
 | |
| 
 | |
| #endif /* __QCOM_FASTRPC_H__ */
 |