forked from mirrors/linux
		
	 d6b02199cd
			
		
	
	
		d6b02199cd
		
	
	
	
	
		
			
			reservation" from Sourabh Jain changes powerpc's kexec code to use more of the generic layers. - The 2 patch series "get_maintainer: report subsystem status separately" from Vlastimil Babka makes some long-requested improvements to the get_maintainer output. - The 4 patch series "ucount: Simplify refcounting with rcuref_t" from Sebastian Siewior cleans up and optimizing the refcounting in the ucount code. - The 12 patch series "reboot: support runtime configuration of emergency hw_protection action" from Ahmad Fatoum improves the ability for a driver to perform an emergency system shutdown or reboot. - The 16 patch series "Converge on using secs_to_jiffies() part two" from Easwar Hariharan performs further migrations from msecs_to_jiffies() to secs_to_jiffies(). - The 7 patch series "lib/interval_tree: add some test cases and cleanup" from Wei Yang permits more userspace testing of kernel library code, adds some more tests and performs some cleanups. - The 2 patch series "hung_task: Dump the blocking task stacktrace" from Masami Hiramatsu arranges for the hung_task detector to dump the stack of the blocking task and not just that of the blocked task. - The 4 patch series "resource: Split and use DEFINE_RES*() macros" from Andy Shevchenko provides some cleanups to the resource definition macros. - Plus the usual shower of singleton patches - please see the individual changelogs for details. -----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQTTMBEPP41GrTpTJgfdBJ7gKXxAjgUCZ+nuqwAKCRDdBJ7gKXxA jtNqAQDxqJpjWkzn4yN9CNSs1ivVx3fr6SqazlYCrt3u89WQvwEA1oRrGpETzUGq r6khQUIcQImPPcjFqEFpuiSOU0MBZA0= =Kii8 -----END PGP SIGNATURE----- Merge tag 'mm-nonmm-stable-2025-03-30-18-23' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Pull non-MM updates from Andrew Morton: - The series "powerpc/crash: use generic crashkernel reservation" from Sourabh Jain changes powerpc's kexec code to use more of the generic layers. - The series "get_maintainer: report subsystem status separately" from Vlastimil Babka makes some long-requested improvements to the get_maintainer output. - The series "ucount: Simplify refcounting with rcuref_t" from Sebastian Siewior cleans up and optimizing the refcounting in the ucount code. - The series "reboot: support runtime configuration of emergency hw_protection action" from Ahmad Fatoum improves the ability for a driver to perform an emergency system shutdown or reboot. - The series "Converge on using secs_to_jiffies() part two" from Easwar Hariharan performs further migrations from msecs_to_jiffies() to secs_to_jiffies(). - The series "lib/interval_tree: add some test cases and cleanup" from Wei Yang permits more userspace testing of kernel library code, adds some more tests and performs some cleanups. - The series "hung_task: Dump the blocking task stacktrace" from Masami Hiramatsu arranges for the hung_task detector to dump the stack of the blocking task and not just that of the blocked task. - The series "resource: Split and use DEFINE_RES*() macros" from Andy Shevchenko provides some cleanups to the resource definition macros. - Plus the usual shower of singleton patches - please see the individual changelogs for details. * tag 'mm-nonmm-stable-2025-03-30-18-23' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (77 commits) mailmap: consolidate email addresses of Alexander Sverdlin fs/procfs: fix the comment above proc_pid_wchan() relay: use kasprintf() instead of fixed buffer formatting resource: replace open coded variant of DEFINE_RES() resource: replace open coded variants of DEFINE_RES_*_NAMED() resource: replace open coded variant of DEFINE_RES_NAMED_DESC() resource: split DEFINE_RES_NAMED_DESC() out of DEFINE_RES_NAMED() samples: add hung_task detector mutex blocking sample hung_task: show the blocker task if the task is hung on mutex kexec_core: accept unaccepted kexec segments' destination addresses watchdog/perf: optimize bytes copied and remove manual NUL-termination lib/interval_tree: fix the comment of interval_tree_span_iter_next_gap() lib/interval_tree: skip the check before go to the right subtree lib/interval_tree: add test case for span iteration lib/interval_tree: add test case for interval_tree_iter_xxx() helpers lib/rbtree: add random seed lib/rbtree: split tests lib/rbtree: enable userland test suite for rbtree related data structure checkpatch: describe --min-conf-desc-length scripts/gdb/symbols: determine KASLR offset on s390 ...
		
			
				
	
	
		
			265 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			265 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #ifndef _LINUX_TYPES_H
 | |
| #define _LINUX_TYPES_H
 | |
| 
 | |
| #define __EXPORTED_HEADERS__
 | |
| #include <uapi/linux/types.h>
 | |
| 
 | |
| #ifndef __ASSEMBLY__
 | |
| 
 | |
| #define DECLARE_BITMAP(name,bits) \
 | |
| 	unsigned long name[BITS_TO_LONGS(bits)]
 | |
| 
 | |
| #ifdef __SIZEOF_INT128__
 | |
| typedef __s128 s128;
 | |
| typedef __u128 u128;
 | |
| #endif
 | |
| 
 | |
| typedef u32 __kernel_dev_t;
 | |
| 
 | |
| typedef __kernel_fd_set		fd_set;
 | |
| typedef __kernel_dev_t		dev_t;
 | |
| typedef __kernel_ulong_t	ino_t;
 | |
| typedef __kernel_mode_t		mode_t;
 | |
| typedef unsigned short		umode_t;
 | |
| typedef u32			nlink_t;
 | |
| typedef __kernel_off_t		off_t;
 | |
| typedef __kernel_pid_t		pid_t;
 | |
| typedef __kernel_daddr_t	daddr_t;
 | |
| typedef __kernel_key_t		key_t;
 | |
| typedef __kernel_suseconds_t	suseconds_t;
 | |
| typedef __kernel_timer_t	timer_t;
 | |
| typedef __kernel_clockid_t	clockid_t;
 | |
| typedef __kernel_mqd_t		mqd_t;
 | |
| 
 | |
| typedef _Bool			bool;
 | |
| 
 | |
| typedef __kernel_uid32_t	uid_t;
 | |
| typedef __kernel_gid32_t	gid_t;
 | |
| typedef __kernel_uid16_t        uid16_t;
 | |
| typedef __kernel_gid16_t        gid16_t;
 | |
| 
 | |
| typedef unsigned long		uintptr_t;
 | |
| typedef long			intptr_t;
 | |
| 
 | |
| #ifdef CONFIG_HAVE_UID16
 | |
| /* This is defined by arch/{arch}/include/asm/posix_types.h */
 | |
| typedef __kernel_old_uid_t	old_uid_t;
 | |
| typedef __kernel_old_gid_t	old_gid_t;
 | |
| #endif /* CONFIG_UID16 */
 | |
| 
 | |
| #if defined(__GNUC__)
 | |
| typedef __kernel_loff_t		loff_t;
 | |
| #endif
 | |
| 
 | |
| /*
 | |
|  * The following typedefs are also protected by individual ifdefs for
 | |
|  * historical reasons:
 | |
|  */
 | |
| #ifndef _SIZE_T
 | |
| #define _SIZE_T
 | |
| typedef __kernel_size_t		size_t;
 | |
| #endif
 | |
| 
 | |
| #ifndef _SSIZE_T
 | |
| #define _SSIZE_T
 | |
| typedef __kernel_ssize_t	ssize_t;
 | |
| #endif
 | |
| 
 | |
| #ifndef _PTRDIFF_T
 | |
| #define _PTRDIFF_T
 | |
| typedef __kernel_ptrdiff_t	ptrdiff_t;
 | |
| #endif
 | |
| 
 | |
| #ifndef _CLOCK_T
 | |
| #define _CLOCK_T
 | |
| typedef __kernel_clock_t	clock_t;
 | |
| #endif
 | |
| 
 | |
| #ifndef _CADDR_T
 | |
| #define _CADDR_T
 | |
| typedef __kernel_caddr_t	caddr_t;
 | |
| #endif
 | |
| 
 | |
| /* bsd */
 | |
| typedef unsigned char		u_char;
 | |
| typedef unsigned short		u_short;
 | |
| typedef unsigned int		u_int;
 | |
| typedef unsigned long		u_long;
 | |
| 
 | |
| /* sysv */
 | |
| typedef unsigned char		unchar;
 | |
| typedef unsigned short		ushort;
 | |
| typedef unsigned int		uint;
 | |
| typedef unsigned long		ulong;
 | |
| typedef unsigned long long	ullong;
 | |
| 
 | |
| #ifndef __BIT_TYPES_DEFINED__
 | |
| #define __BIT_TYPES_DEFINED__
 | |
| 
 | |
| typedef u8			u_int8_t;
 | |
| typedef s8			int8_t;
 | |
| typedef u16			u_int16_t;
 | |
| typedef s16			int16_t;
 | |
| typedef u32			u_int32_t;
 | |
| typedef s32			int32_t;
 | |
| 
 | |
| #endif /* !(__BIT_TYPES_DEFINED__) */
 | |
| 
 | |
| typedef u8			uint8_t;
 | |
| typedef u16			uint16_t;
 | |
| typedef u32			uint32_t;
 | |
| 
 | |
| #if defined(__GNUC__)
 | |
| typedef u64			uint64_t;
 | |
| typedef u64			u_int64_t;
 | |
| typedef s64			int64_t;
 | |
| #endif
 | |
| 
 | |
| /* These are the special 64-bit data types that are 8-byte aligned */
 | |
| #define aligned_u64		__aligned_u64
 | |
| #define aligned_s64		__aligned_s64
 | |
| #define aligned_be64		__aligned_be64
 | |
| #define aligned_le64		__aligned_le64
 | |
| 
 | |
| /* Nanosecond scalar representation for kernel time values */
 | |
| typedef s64	ktime_t;
 | |
| 
 | |
| /**
 | |
|  * The type used for indexing onto a disc or disc partition.
 | |
|  *
 | |
|  * Linux always considers sectors to be 512 bytes long independently
 | |
|  * of the devices real block size.
 | |
|  *
 | |
|  * blkcnt_t is the type of the inode's block count.
 | |
|  */
 | |
| typedef u64 sector_t;
 | |
| typedef u64 blkcnt_t;
 | |
| 
 | |
| /*
 | |
|  * The type of an index into the pagecache.
 | |
|  */
 | |
| #define pgoff_t unsigned long
 | |
| 
 | |
| /*
 | |
|  * A dma_addr_t can hold any valid DMA address, i.e., any address returned
 | |
|  * by the DMA API.
 | |
|  *
 | |
|  * If the DMA API only uses 32-bit addresses, dma_addr_t need only be 32
 | |
|  * bits wide.  Bus addresses, e.g., PCI BARs, may be wider than 32 bits,
 | |
|  * but drivers do memory-mapped I/O to ioremapped kernel virtual addresses,
 | |
|  * so they don't care about the size of the actual bus addresses.
 | |
|  */
 | |
| #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
 | |
| typedef u64 dma_addr_t;
 | |
| #else
 | |
| typedef u32 dma_addr_t;
 | |
| #endif
 | |
| 
 | |
| typedef unsigned int __bitwise gfp_t;
 | |
| typedef unsigned int __bitwise slab_flags_t;
 | |
| typedef unsigned int __bitwise fmode_t;
 | |
| 
 | |
| #ifdef CONFIG_PHYS_ADDR_T_64BIT
 | |
| typedef u64 phys_addr_t;
 | |
| #else
 | |
| typedef u32 phys_addr_t;
 | |
| #endif
 | |
| 
 | |
| typedef phys_addr_t resource_size_t;
 | |
| 
 | |
| /*
 | |
|  * This type is the placeholder for a hardware interrupt number. It has to be
 | |
|  * big enough to enclose whatever representation is used by a given platform.
 | |
|  */
 | |
| typedef unsigned long irq_hw_number_t;
 | |
| 
 | |
| typedef struct {
 | |
| 	int counter;
 | |
| } atomic_t;
 | |
| 
 | |
| #define ATOMIC_INIT(i) { (i) }
 | |
| 
 | |
| #ifdef CONFIG_64BIT
 | |
| typedef struct {
 | |
| 	s64 counter;
 | |
| } atomic64_t;
 | |
| #endif
 | |
| 
 | |
| typedef struct {
 | |
| 	atomic_t refcnt;
 | |
| } rcuref_t;
 | |
| 
 | |
| #define RCUREF_INIT(i)	{ .refcnt = ATOMIC_INIT(i - 1) }
 | |
| 
 | |
| struct list_head {
 | |
| 	struct list_head *next, *prev;
 | |
| };
 | |
| 
 | |
| struct hlist_head {
 | |
| 	struct hlist_node *first;
 | |
| };
 | |
| 
 | |
| struct hlist_node {
 | |
| 	struct hlist_node *next, **pprev;
 | |
| };
 | |
| 
 | |
| struct ustat {
 | |
| 	__kernel_daddr_t	f_tfree;
 | |
| #ifdef CONFIG_ARCH_32BIT_USTAT_F_TINODE
 | |
| 	unsigned int		f_tinode;
 | |
| #else
 | |
| 	unsigned long		f_tinode;
 | |
| #endif
 | |
| 	char			f_fname[6];
 | |
| 	char			f_fpack[6];
 | |
| };
 | |
| 
 | |
| /**
 | |
|  * struct callback_head - callback structure for use with RCU and task_work
 | |
|  * @next: next update requests in a list
 | |
|  * @func: actual update function to call after the grace period.
 | |
|  *
 | |
|  * The struct is aligned to size of pointer. On most architectures it happens
 | |
|  * naturally due ABI requirements, but some architectures (like CRIS) have
 | |
|  * weird ABI and we need to ask it explicitly.
 | |
|  *
 | |
|  * The alignment is required to guarantee that bit 0 of @next will be
 | |
|  * clear under normal conditions -- as long as we use call_rcu() or
 | |
|  * call_srcu() to queue the callback.
 | |
|  *
 | |
|  * This guarantee is important for few reasons:
 | |
|  *  - future call_rcu_lazy() will make use of lower bits in the pointer;
 | |
|  *  - the structure shares storage space in struct page with @compound_head,
 | |
|  *    which encode PageTail() in bit 0. The guarantee is needed to avoid
 | |
|  *    false-positive PageTail().
 | |
|  */
 | |
| struct callback_head {
 | |
| 	struct callback_head *next;
 | |
| 	void (*func)(struct callback_head *head);
 | |
| } __attribute__((aligned(sizeof(void *))));
 | |
| #define rcu_head callback_head
 | |
| 
 | |
| typedef void (*rcu_callback_t)(struct rcu_head *head);
 | |
| typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
 | |
| 
 | |
| typedef void (*swap_r_func_t)(void *a, void *b, int size, const void *priv);
 | |
| typedef void (*swap_func_t)(void *a, void *b, int size);
 | |
| 
 | |
| typedef int (*cmp_r_func_t)(const void *a, const void *b, const void *priv);
 | |
| typedef int (*cmp_func_t)(const void *a, const void *b);
 | |
| 
 | |
| /*
 | |
|  * rcuwait provides a way of blocking and waking up a single
 | |
|  * task in an rcu-safe manner.
 | |
|  *
 | |
|  * The only time @task is non-nil is when a user is blocked (or
 | |
|  * checking if it needs to) on a condition, and reset as soon as we
 | |
|  * know that the condition has succeeded and are awoken.
 | |
|  */
 | |
| struct rcuwait {
 | |
| 	struct task_struct __rcu *task;
 | |
| };
 | |
| 
 | |
| #endif /*  __ASSEMBLY__ */
 | |
| #endif /* _LINUX_TYPES_H */
 |