[PATCH] afs: add lock annotations to afs_proc_cell_servers_{start,stop}
afs_proc_cell_servers_start acquires a lock, and afs_proc_cell_servers_stop releases that lock. Add lock annotations to these two functions so that sparse can check callers for lock pairing, and so that sparse will not complain about these functions since they intentionally use locks in this manner. Signed-off-by: Josh Triplett <josh@freedesktop.org> Acked-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Родитель
58f555e5f6
Коммит
99fc705996
|
@ -775,6 +775,7 @@ static int afs_proc_cell_servers_release(struct inode *inode,
|
||||||
* first item
|
* first item
|
||||||
*/
|
*/
|
||||||
static void *afs_proc_cell_servers_start(struct seq_file *m, loff_t *_pos)
|
static void *afs_proc_cell_servers_start(struct seq_file *m, loff_t *_pos)
|
||||||
|
__acquires(m->private->sv_lock)
|
||||||
{
|
{
|
||||||
struct list_head *_p;
|
struct list_head *_p;
|
||||||
struct afs_cell *cell = m->private;
|
struct afs_cell *cell = m->private;
|
||||||
|
@ -823,6 +824,7 @@ static void *afs_proc_cell_servers_next(struct seq_file *p, void *v,
|
||||||
* clean up after reading from the cells list
|
* clean up after reading from the cells list
|
||||||
*/
|
*/
|
||||||
static void afs_proc_cell_servers_stop(struct seq_file *p, void *v)
|
static void afs_proc_cell_servers_stop(struct seq_file *p, void *v)
|
||||||
|
__releases(p->private->sv_lock)
|
||||||
{
|
{
|
||||||
struct afs_cell *cell = p->private;
|
struct afs_cell *cell = p->private;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче