blob: 099d02782e22274fb9f7b52abe296cb17d14e45d [file] [log] [blame]
Neil Horman5bc14212011-11-22 05:10:51 +00001/*
2 * netprio_cgroup.h Control Group Priority set
3 *
4 *
5 * Authors: Neil Horman <nhorman@tuxdriver.com>
6 *
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)
10 * any later version.
11 *
12 */
13
14#ifndef _NETPRIO_CGROUP_H
15#define _NETPRIO_CGROUP_H
Neil Horman5bc14212011-11-22 05:10:51 +000016#include <linux/cgroup.h>
17#include <linux/hardirq.h>
18#include <linux/rcupdate.h>
19
Neil Horman5bc14212011-11-22 05:10:51 +000020
Daniel Wagner51e4e7f2012-09-12 16:12:03 +020021#if IS_ENABLED(CONFIG_NETPRIO_CGROUP)
Neil Horman5bc14212011-11-22 05:10:51 +000022struct netprio_map {
23 struct rcu_head rcu;
24 u32 priomap_len;
25 u32 priomap[];
26};
27
Joe Perches37830722013-07-31 17:31:39 -070028void sock_update_netprioidx(struct sock *sk);
Neil Horman5bc14212011-11-22 05:10:51 +000029
Neil Horman2b73bc62012-02-10 05:43:38 +000030#if IS_BUILTIN(CONFIG_NETPRIO_CGROUP)
31
32static inline u32 task_netprioidx(struct task_struct *p)
Neil Horman5bc14212011-11-22 05:10:51 +000033{
Tejun Heo88d642f2012-11-22 07:32:47 -080034 struct cgroup_subsys_state *css;
Neil Horman2b73bc62012-02-10 05:43:38 +000035 u32 idx;
36
37 rcu_read_lock();
Tejun Heo8af01f52013-08-08 20:11:22 -040038 css = task_css(p, net_prio_subsys_id);
Tejun Heo88d642f2012-11-22 07:32:47 -080039 idx = css->cgroup->id;
Neil Horman2b73bc62012-02-10 05:43:38 +000040 rcu_read_unlock();
41 return idx;
42}
43
44#elif IS_MODULE(CONFIG_NETPRIO_CGROUP)
45
46static inline u32 task_netprioidx(struct task_struct *p)
47{
Daniel Wagner8a8e04d2012-09-12 16:12:07 +020048 struct cgroup_subsys_state *css;
Neil Horman2b73bc62012-02-10 05:43:38 +000049 u32 idx = 0;
50
51 rcu_read_lock();
Tejun Heo8af01f52013-08-08 20:11:22 -040052 css = task_css(p, net_prio_subsys_id);
Daniel Wagner8a8e04d2012-09-12 16:12:07 +020053 if (css)
Tejun Heo88d642f2012-11-22 07:32:47 -080054 idx = css->cgroup->id;
Neil Horman2b73bc62012-02-10 05:43:38 +000055 rcu_read_unlock();
56 return idx;
Neil Horman5bc14212011-11-22 05:10:51 +000057}
Daniel Wagner51e4e7f2012-09-12 16:12:03 +020058#endif
Neil Horman5bc14212011-11-22 05:10:51 +000059
Daniel Wagner51e4e7f2012-09-12 16:12:03 +020060#else /* !CONFIG_NETPRIO_CGROUP */
Neil Horman5bc14212011-11-22 05:10:51 +000061
Neil Horman2b73bc62012-02-10 05:43:38 +000062static inline u32 task_netprioidx(struct task_struct *p)
63{
64 return 0;
65}
66
Zefan Li6ffd4642013-04-08 20:03:47 +000067#define sock_update_netprioidx(sk)
Daniel Wagner51e4e7f2012-09-12 16:12:03 +020068
69#endif /* CONFIG_NETPRIO_CGROUP */
Neil Horman5bc14212011-11-22 05:10:51 +000070
71#endif /* _NET_CLS_CGROUP_H */