Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95913
b: refs/heads/master
c: f37f2c6
h: refs/heads/master
i:
  95911: 11fa1ea
v: v3
  • Loading branch information
Bernard Pidoux authored and David S. Miller committed May 3, 2008
1 parent c292c26 commit 29366d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 4ac2ccd01646e08d7176185c94e5b19404a25998
refs/heads/master: f37f2c62a28e848e06399ea2f9be1e098212625c
8 changes: 4 additions & 4 deletions trunk/net/rose/rose_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -1066,12 +1066,12 @@ int rose_route_frame(struct sk_buff *skb, ax25_cb *ax25)
#ifdef CONFIG_PROC_FS

static void *rose_node_start(struct seq_file *seq, loff_t *pos)
__acquires(rose_neigh_list_lock)
__acquires(rose_node_list_lock)
{
struct rose_node *rose_node;
int i = 1;

spin_lock_bh(&rose_neigh_list_lock);
spin_lock_bh(&rose_node_list_lock);
if (*pos == 0)
return SEQ_START_TOKEN;

Expand All @@ -1090,9 +1090,9 @@ static void *rose_node_next(struct seq_file *seq, void *v, loff_t *pos)
}

static void rose_node_stop(struct seq_file *seq, void *v)
__releases(rose_neigh_list_lock)
__releases(rose_node_list_lock)
{
spin_unlock_bh(&rose_neigh_list_lock);
spin_unlock_bh(&rose_node_list_lock);
}

static int rose_node_show(struct seq_file *seq, void *v)
Expand Down

0 comments on commit 29366d6

Please sign in to comment.