drm: omapdrm: Drop manual framebuffer pin handling
[linux-2.6/btrfs-unstable.git] / include / net / netprio_cgroup.h
blobf2a9597ff53c089cb3aa4a810e6286355c9f194c
1 /*
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)
10 * any later version.
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)
22 struct netprio_map {
23 struct rcu_head rcu;
24 u32 priomap_len;
25 u32 priomap[];
28 void sock_update_netprioidx(struct sock *sk);
30 static inline u32 task_netprioidx(struct task_struct *p)
32 struct cgroup_subsys_state *css;
33 u32 idx;
35 rcu_read_lock();
36 css = task_css(p, net_prio_cgrp_id);
37 idx = css->cgroup->id;
38 rcu_read_unlock();
39 return idx;
41 #else /* !CONFIG_CGROUP_NET_PRIO */
42 static inline u32 task_netprioidx(struct task_struct *p)
44 return 0;
47 #define sock_update_netprioidx(sk)
49 #endif /* CONFIG_CGROUP_NET_PRIO */
50 #endif /* _NET_CLS_CGROUP_H */