2 * netprio_cgroup.h Control Group Priority set
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
14 #ifndef _NETPRIO_CGROUP_H
15 #define _NETPRIO_CGROUP_H
16 #include <linux/cgroup.h>
17 #include <linux/hardirq.h>
18 #include <linux/rcupdate.h>
21 #if IS_ENABLED(CONFIG_NETPRIO_CGROUP)
28 struct cgroup_netprio_state {
29 struct cgroup_subsys_state css;
33 extern void sock_update_netprioidx(struct sock *sk, struct task_struct *task);
35 #if IS_BUILTIN(CONFIG_NETPRIO_CGROUP)
37 static inline u32 task_netprioidx(struct task_struct *p)
39 struct cgroup_netprio_state *state;
43 state = container_of(task_subsys_state(p, net_prio_subsys_id),
44 struct cgroup_netprio_state, css);
50 #elif IS_MODULE(CONFIG_NETPRIO_CGROUP)
52 static inline u32 task_netprioidx(struct task_struct *p)
54 struct cgroup_subsys_state *css;
58 css = task_subsys_state(p, net_prio_subsys_id);
60 idx = container_of(css,
61 struct cgroup_netprio_state, css)->prioidx;
67 #else /* !CONFIG_NETPRIO_CGROUP */
69 static inline u32 task_netprioidx(struct task_struct *p)
74 #define sock_update_netprioidx(sk, task)
76 #endif /* CONFIG_NETPRIO_CGROUP */
78 #endif /* _NET_CLS_CGROUP_H */