Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 287545
b: refs/heads/master
c: 2b73bc6
h: refs/heads/master
i:
  287543: 9cf1a51
v: v3
  • Loading branch information
Neil Horman authored and David S. Miller committed Feb 10, 2012
1 parent d90632f commit b927996
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f5c38208d32412d72b97a4f0d44af0eb39feb20b
refs/heads/master: 2b73bc65e2771372c818db7955709c8caedbf8b9
48 changes: 40 additions & 8 deletions trunk/include/net/netprio_cgroup.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,51 @@ extern int net_prio_subsys_id;

extern void sock_update_netprioidx(struct sock *sk);

static inline struct cgroup_netprio_state
*task_netprio_state(struct task_struct *p)
#if IS_BUILTIN(CONFIG_NETPRIO_CGROUP)

static inline u32 task_netprioidx(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
struct cgroup_netprio_state *state;
u32 idx;

rcu_read_lock();
state = container_of(task_subsys_state(p, net_prio_subsys_id),
struct cgroup_netprio_state, css);
idx = state->prioidx;
rcu_read_unlock();
return idx;
}

#elif IS_MODULE(CONFIG_NETPRIO_CGROUP)

static inline u32 task_netprioidx(struct task_struct *p)
{
struct cgroup_netprio_state *state;
int subsys_id;
u32 idx = 0;

rcu_read_lock();
subsys_id = rcu_dereference_index_check(net_prio_subsys_id,
rcu_read_lock_held());
if (subsys_id >= 0) {
state = container_of(task_subsys_state(p, subsys_id),
struct cgroup_netprio_state, css);
idx = state->prioidx;
}
rcu_read_unlock();
return idx;
}

#else

static inline u32 task_netprioidx(struct task_struct *p)
{
return 0;
}

#endif /* CONFIG_NETPRIO_CGROUP */

#else
#define sock_update_netprioidx(sk)
#endif

Expand Down
7 changes: 2 additions & 5 deletions trunk/net/core/sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1171,13 +1171,10 @@ EXPORT_SYMBOL(sock_update_classid);

void sock_update_netprioidx(struct sock *sk)
{
struct cgroup_netprio_state *state;
if (in_interrupt())
return;
rcu_read_lock();
state = task_netprio_state(current);
sk->sk_cgrp_prioidx = state ? state->prioidx : 0;
rcu_read_unlock();

sk->sk_cgrp_prioidx = task_netprioidx(current);
}
EXPORT_SYMBOL_GPL(sock_update_netprioidx);
#endif
Expand Down

0 comments on commit b927996

Please sign in to comment.