Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78845
b: refs/heads/master
c: ca629f2
h: refs/heads/master
i:
  78843: ec65691
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Jan 28, 2008
1 parent c799f77 commit bf3fdc3
Show file tree
Hide file tree
Showing 3 changed files with 9 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: c71e9167081a6a0d2a076cda674b696b89bb31c2
refs/heads/master: ca629f2472762088b105cd6081bf9aaa56d4547d
2 changes: 2 additions & 0 deletions trunk/net/appletalk/aarp.c
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,7 @@ static struct aarp_entry *iter_next(struct aarp_iter_state *iter, loff_t *pos)
}

static void *aarp_seq_start(struct seq_file *seq, loff_t *pos)
__acquires(aarp_lock)
{
struct aarp_iter_state *iter = seq->private;

Expand Down Expand Up @@ -975,6 +976,7 @@ static void *aarp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
}

static void aarp_seq_stop(struct seq_file *seq, void *v)
__releases(aarp_lock)
{
read_unlock_bh(&aarp_lock);
}
Expand Down
6 changes: 6 additions & 0 deletions trunk/net/appletalk/atalk_proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ static __inline__ struct atalk_iface *atalk_get_interface_idx(loff_t pos)
}

static void *atalk_seq_interface_start(struct seq_file *seq, loff_t *pos)
__acquires(atalk_interfaces_lock)
{
loff_t l = *pos;

Expand All @@ -52,6 +53,7 @@ static void *atalk_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos
}

static void atalk_seq_interface_stop(struct seq_file *seq, void *v)
__releases(atalk_interfaces_lock)
{
read_unlock_bh(&atalk_interfaces_lock);
}
Expand Down Expand Up @@ -86,6 +88,7 @@ static __inline__ struct atalk_route *atalk_get_route_idx(loff_t pos)
}

static void *atalk_seq_route_start(struct seq_file *seq, loff_t *pos)
__acquires(atalk_routes_lock)
{
loff_t l = *pos;

Expand All @@ -111,6 +114,7 @@ static void *atalk_seq_route_next(struct seq_file *seq, void *v, loff_t *pos)
}

static void atalk_seq_route_stop(struct seq_file *seq, void *v)
__releases(atalk_routes_lock)
{
read_unlock_bh(&atalk_routes_lock);
}
Expand Down Expand Up @@ -154,6 +158,7 @@ static __inline__ struct sock *atalk_get_socket_idx(loff_t pos)
}

static void *atalk_seq_socket_start(struct seq_file *seq, loff_t *pos)
__acquires(atalk_sockets_lock)
{
loff_t l = *pos;

Expand All @@ -176,6 +181,7 @@ static void *atalk_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos)
}

static void atalk_seq_socket_stop(struct seq_file *seq, void *v)
__releases(atalk_sockets_lock)
{
read_unlock_bh(&atalk_sockets_lock);
}
Expand Down

0 comments on commit bf3fdc3

Please sign in to comment.