Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 1 | /* |
| 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 Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 16 | #include <linux/cgroup.h> |
| 17 | #include <linux/hardirq.h> |
| 18 | #include <linux/rcupdate.h> |
| 19 | |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 20 | |
Daniel Wagner | 51e4e7f | 2012-09-12 16:12:03 +0200 | [diff] [blame] | 21 | #if IS_ENABLED(CONFIG_NETPRIO_CGROUP) |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 22 | struct netprio_map { |
| 23 | struct rcu_head rcu; |
| 24 | u32 priomap_len; |
| 25 | u32 priomap[]; |
| 26 | }; |
| 27 | |
Neil Horman | 8c21522 | 2011-11-23 15:52:58 -0500 | [diff] [blame] | 28 | struct cgroup_netprio_state { |
| 29 | struct cgroup_subsys_state css; |
| 30 | u32 prioidx; |
| 31 | }; |
| 32 | |
John Fastabend | 406a3c6 | 2012-07-20 10:39:25 +0000 | [diff] [blame] | 33 | extern void sock_update_netprioidx(struct sock *sk, struct task_struct *task); |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 34 | |
Neil Horman | 2b73bc6 | 2012-02-10 05:43:38 +0000 | [diff] [blame] | 35 | #if IS_BUILTIN(CONFIG_NETPRIO_CGROUP) |
| 36 | |
| 37 | static inline u32 task_netprioidx(struct task_struct *p) |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 38 | { |
Neil Horman | 2b73bc6 | 2012-02-10 05:43:38 +0000 | [diff] [blame] | 39 | struct cgroup_netprio_state *state; |
| 40 | u32 idx; |
| 41 | |
| 42 | rcu_read_lock(); |
| 43 | state = container_of(task_subsys_state(p, net_prio_subsys_id), |
| 44 | struct cgroup_netprio_state, css); |
| 45 | idx = state->prioidx; |
| 46 | rcu_read_unlock(); |
| 47 | return idx; |
| 48 | } |
| 49 | |
| 50 | #elif IS_MODULE(CONFIG_NETPRIO_CGROUP) |
| 51 | |
| 52 | static inline u32 task_netprioidx(struct task_struct *p) |
| 53 | { |
Daniel Wagner | 8a8e04d | 2012-09-12 16:12:07 +0200 | [diff] [blame] | 54 | struct cgroup_subsys_state *css; |
Neil Horman | 2b73bc6 | 2012-02-10 05:43:38 +0000 | [diff] [blame] | 55 | u32 idx = 0; |
| 56 | |
| 57 | rcu_read_lock(); |
Daniel Wagner | 8a8e04d | 2012-09-12 16:12:07 +0200 | [diff] [blame] | 58 | css = task_subsys_state(p, net_prio_subsys_id); |
| 59 | if (css) |
| 60 | idx = container_of(css, |
| 61 | struct cgroup_netprio_state, css)->prioidx; |
Neil Horman | 2b73bc6 | 2012-02-10 05:43:38 +0000 | [diff] [blame] | 62 | rcu_read_unlock(); |
| 63 | return idx; |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 64 | } |
Daniel Wagner | 51e4e7f | 2012-09-12 16:12:03 +0200 | [diff] [blame] | 65 | #endif |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 66 | |
Daniel Wagner | 51e4e7f | 2012-09-12 16:12:03 +0200 | [diff] [blame] | 67 | #else /* !CONFIG_NETPRIO_CGROUP */ |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 68 | |
Neil Horman | 2b73bc6 | 2012-02-10 05:43:38 +0000 | [diff] [blame] | 69 | static inline u32 task_netprioidx(struct task_struct *p) |
| 70 | { |
| 71 | return 0; |
| 72 | } |
| 73 | |
John Fastabend | 406a3c6 | 2012-07-20 10:39:25 +0000 | [diff] [blame] | 74 | #define sock_update_netprioidx(sk, task) |
Daniel Wagner | 51e4e7f | 2012-09-12 16:12:03 +0200 | [diff] [blame] | 75 | |
| 76 | #endif /* CONFIG_NETPRIO_CGROUP */ |
Neil Horman | 5bc1421 | 2011-11-22 05:10:51 +0000 | [diff] [blame] | 77 | |
| 78 | #endif /* _NET_CLS_CGROUP_H */ |