2 * netprio_cgroup.h Control Group Priority set
5 * Authors: Neil Horman <nhorman@tuxdriver.com>
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
17 #include <linux/cgroup.h>
18 #include <linux/hardirq.h>
19 #include <linux/rcupdate.h>
21 #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
28 static inline u32 task_netprioidx(struct task_struct *p)
30 struct cgroup_subsys_state *css;
34 css = task_css(p, net_prio_cgrp_id);
35 idx = css->cgroup->id;
40 static inline void sock_update_netprioidx(struct sock_cgroup_data *skcd)
45 sock_cgroup_set_prioidx(skcd, task_netprioidx(current));
48 #else /* !CONFIG_CGROUP_NET_PRIO */
50 static inline u32 task_netprioidx(struct task_struct *p)
55 static inline void sock_update_netprioidx(struct sock_cgroup_data *skcd)
59 #endif /* CONFIG_CGROUP_NET_PRIO */
60 #endif /* _NET_CLS_CGROUP_H */