-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 277918 b: refs/heads/master c: 5bc1421 h: refs/heads/master v: v3
- Loading branch information
Neil Horman
authored and
David S. Miller
committed
Nov 22, 2011
1 parent
bddc5bc
commit 7f7bf62
Showing
11 changed files
with
470 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 202ff1c26c768efeead20b388556eda265dc8352 | ||
refs/heads/master: 5bc1421e34ecfe0bd4b26dc3232b7d5e25179144 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* netprio_cgroup.h Control Group Priority set | ||
* | ||
* | ||
* Authors: Neil Horman <nhorman@tuxdriver.com> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the Free | ||
* Software Foundation; either version 2 of the License, or (at your option) | ||
* any later version. | ||
* | ||
*/ | ||
|
||
#ifndef _NETPRIO_CGROUP_H | ||
#define _NETPRIO_CGROUP_H | ||
#include <linux/module.h> | ||
#include <linux/cgroup.h> | ||
#include <linux/hardirq.h> | ||
#include <linux/rcupdate.h> | ||
|
||
struct cgroup_netprio_state | ||
{ | ||
struct cgroup_subsys_state css; | ||
u32 prioidx; | ||
}; | ||
|
||
struct netprio_map { | ||
struct rcu_head rcu; | ||
u32 priomap_len; | ||
u32 priomap[]; | ||
}; | ||
|
||
#ifdef CONFIG_CGROUPS | ||
|
||
#ifndef CONFIG_NETPRIO_CGROUP | ||
extern int net_prio_subsys_id; | ||
#endif | ||
|
||
extern void sock_update_netprioidx(struct sock *sk); | ||
|
||
static inline struct cgroup_netprio_state | ||
*task_netprio_state(struct task_struct *p) | ||
{ | ||
#if IS_ENABLED(CONFIG_NETPRIO_CGROUP) | ||
return container_of(task_subsys_state(p, net_prio_subsys_id), | ||
struct cgroup_netprio_state, css); | ||
#else | ||
return NULL; | ||
#endif | ||
} | ||
|
||
#else | ||
|
||
#define sock_update_netprioidx(sk) | ||
#define skb_update_prio(skb) | ||
|
||
static inline struct cgroup_netprio_state | ||
*task_netprio_state(struct task_struct *p) | ||
{ | ||
return NULL; | ||
} | ||
|
||
#endif | ||
|
||
#endif /* _NET_CLS_CGROUP_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.