diff options
| author | Benjamin Coddington <bcodding@redhat.com> | 2023-06-15 14:07:30 -0400 |
|---|---|---|
| committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2023-06-19 15:08:12 -0400 |
| commit | d9615d166c7ede67bf16bdd0772e35e124f305f5 (patch) | |
| tree | 7e527b93c0c0ab2e63f9455bbae7d8c6a8d3d9ae /include/linux/nfs_fs_sb.h | |
| parent | f4057ffd0e134e54a727e00c3c9b0d9a5051eadf (diff) | |
| download | linux-next-d9615d166c7ede67bf16bdd0772e35e124f305f5.tar.gz linux-next-d9615d166c7ede67bf16bdd0772e35e124f305f5.zip | |
NFS: add sysfs shutdown knob
Within each nfs_server sysfs tree, add an entry named "shutdown". Writing
1 to this file will set the cl_shutdown bit on the rpc_clnt structs
associated with that mount. If cl_shutdown is set, the task scheduler
immediately returns -EIO for new tasks.
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'include/linux/nfs_fs_sb.h')
| -rw-r--r-- | include/linux/nfs_fs_sb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index 4bed0b6c79c7..20eeba8b009d 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h @@ -154,6 +154,7 @@ struct nfs_server { #define NFS_MOUNT_WRITE_EAGER 0x01000000 #define NFS_MOUNT_WRITE_WAIT 0x02000000 #define NFS_MOUNT_TRUNK_DISCOVERY 0x04000000 +#define NFS_MOUNT_SHUTDOWN 0x08000000 unsigned int fattr_valid; /* Valid attributes */ unsigned int caps; /* server capabilities */ |
