diff options
author | David Howells <dhowells@redhat.com> | 2020-04-16 18:17:13 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2020-04-24 16:33:32 +0100 |
commit | c4bfda16d1b40d1c5941c61b5aa336bdd2d9904a (patch) | |
tree | 4072cea58ebb9e178ee96fa53818e5b20669f2a6 /fs/afs/internal.h | |
parent | 69cf3978f3ada4e54beae4ad44868b5627864884 (diff) |
afs: Make record checking use TASK_UNINTERRUPTIBLE when appropriate
When an operation is meant to be done uninterruptibly (such as
FS.StoreData), we should not be allowing volume and server record checking
to be interrupted.
Fixes: d2ddc776a458 ("afs: Overhaul volume and server record caching and fileserver rotation")
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/afs/internal.h')
-rw-r--r-- | fs/afs/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/internal.h b/fs/afs/internal.h index 69052c98de92..80255513e230 100644 --- a/fs/afs/internal.h +++ b/fs/afs/internal.h @@ -1333,7 +1333,7 @@ extern struct afs_volume *afs_create_volume(struct afs_fs_context *); extern void afs_activate_volume(struct afs_volume *); extern void afs_deactivate_volume(struct afs_volume *); extern void afs_put_volume(struct afs_cell *, struct afs_volume *); -extern int afs_check_volume_status(struct afs_volume *, struct key *); +extern int afs_check_volume_status(struct afs_volume *, struct afs_fs_cursor *); /* * write.c |