Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 346457
b: refs/heads/master
c: 7b9a7ec
h: refs/heads/master
i:
  346455: 51251af
v: v3
  • Loading branch information
Andrew Vagin authored and Linus Torvalds committed Dec 18, 2012
1 parent 6989d21 commit 29f4314
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 992fb6e170639b0849bace8e49bf31bd37c4123c
refs/heads/master: 7b9a7ec565505699f503b4fcf61500dceb36e744
9 changes: 9 additions & 0 deletions trunk/fs/proc/array.c
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,10 @@ static void render_cap_t(struct seq_file *m, const char *header,
seq_putc(m, '\n');
}

/* Remove non-existent capabilities */
#define NORM_CAPS(v) (v.cap[CAP_TO_INDEX(CAP_LAST_CAP)] &= \
CAP_TO_MASK(CAP_LAST_CAP + 1) - 1)

static inline void task_cap(struct seq_file *m, struct task_struct *p)
{
const struct cred *cred;
Expand All @@ -321,6 +325,11 @@ static inline void task_cap(struct seq_file *m, struct task_struct *p)
cap_bset = cred->cap_bset;
rcu_read_unlock();

NORM_CAPS(cap_inheritable);
NORM_CAPS(cap_permitted);
NORM_CAPS(cap_effective);
NORM_CAPS(cap_bset);

render_cap_t(m, "CapInh:\t", &cap_inheritable);
render_cap_t(m, "CapPrm:\t", &cap_permitted);
render_cap_t(m, "CapEff:\t", &cap_effective);
Expand Down

0 comments on commit 29f4314

Please sign in to comment.