Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

signal: Kill bogus dependency on list.h

list_head is in types.h, not list.h.

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>

+2 -1
+1
include/linux/signal.h
··· 3 3 #define _LINUX_SIGNAL_H 4 4 5 5 #include <linux/bug.h> 6 + #include <linux/list.h> 6 7 #include <linux/signal_types.h> 7 8 #include <linux/string.h> 8 9
+1 -1
include/linux/signal_types.h
··· 6 6 * Basic signal handling related data type definitions: 7 7 */ 8 8 9 - #include <linux/list.h> 9 + #include <linux/types.h> 10 10 #include <uapi/linux/signal.h> 11 11 12 12 typedef struct kernel_siginfo {