Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 157300
b: refs/heads/master
c: 86abcf9
h: refs/heads/master
v: v3
  • Loading branch information
James Morris committed Jun 24, 2009
1 parent 7a54cb9 commit 9dc8cf5
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 20dda18be9035c487c2e9534e4d18d2a1e1deade
refs/heads/master: 86abcf9cebf7b5ceb33facde297face5ec4d2260
4 changes: 4 additions & 0 deletions trunk/security/keys/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ static int proc_keys_open(struct inode *inode, struct file *file)
}

static void *proc_keys_start(struct seq_file *p, loff_t *_pos)
__acquires(key_serial_lock)
{
struct rb_node *_p;
loff_t pos = *_pos;
Expand All @@ -144,6 +145,7 @@ static void *proc_keys_next(struct seq_file *p, void *v, loff_t *_pos)
}

static void proc_keys_stop(struct seq_file *p, void *v)
__releases(key_serial_lock)
{
spin_unlock(&key_serial_lock);
}
Expand Down Expand Up @@ -257,6 +259,7 @@ static int proc_key_users_open(struct inode *inode, struct file *file)
}

static void *proc_key_users_start(struct seq_file *p, loff_t *_pos)
__acquires(key_user_lock)
{
struct rb_node *_p;
loff_t pos = *_pos;
Expand All @@ -281,6 +284,7 @@ static void *proc_key_users_next(struct seq_file *p, void *v, loff_t *_pos)
}

static void proc_key_users_stop(struct seq_file *p, void *v)
__releases(key_user_lock)
{
spin_unlock(&key_user_lock);
}
Expand Down

0 comments on commit 9dc8cf5

Please sign in to comment.