diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2008-01-02 00:58:02 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:00:31 -0500 |
commit | 9a429c4983deae020f1e757ecc8f547b6d4e2f2b (patch) | |
tree | 172e27a5866e182b902cd77506df1755aafadb60 /net/sunrpc/cache.c | |
parent | b950dfcf504842a0f2bb142a33ef938f1c00d300 (diff) |
[NET]: Add some acquires/releases sparse annotations.
Add __acquires() and __releases() annotations to suppress some sparse
warnings.
example of warnings :
net/ipv4/udp.c:1555:14: warning: context imbalance in 'udp_seq_start' - wrong
count at exit
net/ipv4/udp.c:1571:13: warning: context imbalance in 'udp_seq_stop' -
unexpected unlock
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sunrpc/cache.c')
-rw-r--r-- | net/sunrpc/cache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c index 8e05557414ce..73f053d0cc7a 100644 --- a/net/sunrpc/cache.c +++ b/net/sunrpc/cache.c | |||
@@ -1127,6 +1127,7 @@ struct handle { | |||
1127 | }; | 1127 | }; |
1128 | 1128 | ||
1129 | static void *c_start(struct seq_file *m, loff_t *pos) | 1129 | static void *c_start(struct seq_file *m, loff_t *pos) |
1130 | __acquires(cd->hash_lock) | ||
1130 | { | 1131 | { |
1131 | loff_t n = *pos; | 1132 | loff_t n = *pos; |
1132 | unsigned hash, entry; | 1133 | unsigned hash, entry; |
@@ -1183,6 +1184,7 @@ static void *c_next(struct seq_file *m, void *p, loff_t *pos) | |||
1183 | } | 1184 | } |
1184 | 1185 | ||
1185 | static void c_stop(struct seq_file *m, void *p) | 1186 | static void c_stop(struct seq_file *m, void *p) |
1187 | __releases(cd->hash_lock) | ||
1186 | { | 1188 | { |
1187 | struct cache_detail *cd = ((struct handle*)m->private)->cd; | 1189 | struct cache_detail *cd = ((struct handle*)m->private)->cd; |
1188 | read_unlock(&cd->hash_lock); | 1190 | read_unlock(&cd->hash_lock); |