Skip to content

Commit 22c336d

Browse files
author
Kent Overstreet
committed
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>
1 parent eee51b0 commit 22c336d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

include/linux/signal.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#define _LINUX_SIGNAL_H
44

55
#include <linux/bug.h>
6+
#include <linux/list.h>
67
#include <linux/signal_types.h>
78
#include <linux/string.h>
89

include/linux/signal_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Basic signal handling related data type definitions:
77
*/
88

9-
#include <linux/list.h>
9+
#include <linux/types.h>
1010
#include <uapi/linux/signal.h>
1111

1212
typedef struct kernel_siginfo {

0 commit comments

Comments
 (0)