diff options
Diffstat (limited to 'include/net/netprio_cgroup.h')
-rw-r--r-- | include/net/netprio_cgroup.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/include/net/netprio_cgroup.h b/include/net/netprio_cgroup.h index 099d02782e22..dafc09f0fdbc 100644 --- a/include/net/netprio_cgroup.h +++ b/include/net/netprio_cgroup.h | |||
@@ -13,12 +13,12 @@ | |||
13 | 13 | ||
14 | #ifndef _NETPRIO_CGROUP_H | 14 | #ifndef _NETPRIO_CGROUP_H |
15 | #define _NETPRIO_CGROUP_H | 15 | #define _NETPRIO_CGROUP_H |
16 | |||
16 | #include <linux/cgroup.h> | 17 | #include <linux/cgroup.h> |
17 | #include <linux/hardirq.h> | 18 | #include <linux/hardirq.h> |
18 | #include <linux/rcupdate.h> | 19 | #include <linux/rcupdate.h> |
19 | 20 | ||
20 | 21 | #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO) | |
21 | #if IS_ENABLED(CONFIG_NETPRIO_CGROUP) | ||
22 | struct netprio_map { | 22 | struct netprio_map { |
23 | struct rcu_head rcu; | 23 | struct rcu_head rcu; |
24 | u32 priomap_len; | 24 | u32 priomap_len; |
@@ -27,8 +27,7 @@ struct netprio_map { | |||
27 | 27 | ||
28 | void sock_update_netprioidx(struct sock *sk); | 28 | void sock_update_netprioidx(struct sock *sk); |
29 | 29 | ||
30 | #if IS_BUILTIN(CONFIG_NETPRIO_CGROUP) | 30 | #if IS_BUILTIN(CONFIG_CGROUP_NET_PRIO) |
31 | |||
32 | static inline u32 task_netprioidx(struct task_struct *p) | 31 | static inline u32 task_netprioidx(struct task_struct *p) |
33 | { | 32 | { |
34 | struct cgroup_subsys_state *css; | 33 | struct cgroup_subsys_state *css; |
@@ -40,9 +39,7 @@ static inline u32 task_netprioidx(struct task_struct *p) | |||
40 | rcu_read_unlock(); | 39 | rcu_read_unlock(); |
41 | return idx; | 40 | return idx; |
42 | } | 41 | } |
43 | 42 | #elif IS_MODULE(CONFIG_CGROUP_NET_PRIO) | |
44 | #elif IS_MODULE(CONFIG_NETPRIO_CGROUP) | ||
45 | |||
46 | static inline u32 task_netprioidx(struct task_struct *p) | 43 | static inline u32 task_netprioidx(struct task_struct *p) |
47 | { | 44 | { |
48 | struct cgroup_subsys_state *css; | 45 | struct cgroup_subsys_state *css; |
@@ -56,9 +53,7 @@ static inline u32 task_netprioidx(struct task_struct *p) | |||
56 | return idx; | 53 | return idx; |
57 | } | 54 | } |
58 | #endif | 55 | #endif |
59 | 56 | #else /* !CONFIG_CGROUP_NET_PRIO */ | |
60 | #else /* !CONFIG_NETPRIO_CGROUP */ | ||
61 | |||
62 | static inline u32 task_netprioidx(struct task_struct *p) | 57 | static inline u32 task_netprioidx(struct task_struct *p) |
63 | { | 58 | { |
64 | return 0; | 59 | return 0; |
@@ -66,6 +61,5 @@ static inline u32 task_netprioidx(struct task_struct *p) | |||
66 | 61 | ||
67 | #define sock_update_netprioidx(sk) | 62 | #define sock_update_netprioidx(sk) |
68 | 63 | ||
69 | #endif /* CONFIG_NETPRIO_CGROUP */ | 64 | #endif /* CONFIG_CGROUP_NET_PRIO */ |
70 | |||
71 | #endif /* _NET_CLS_CGROUP_H */ | 65 | #endif /* _NET_CLS_CGROUP_H */ |