diff options
author | Jeff Layton <jlayton@kernel.org> | 2020-10-06 15:38:20 +0300 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2020-12-15 01:21:46 +0300 |
commit | aa5c791053c7deecded06f6525fc6e917cb2061b (patch) | |
tree | c636d72629ad790449ac88cbd4d51eec5f8de041 | |
parent | dc167e38a014e04e4484b969ee05765232249b0d (diff) | |
download | linux-aa5c791053c7deecded06f6525fc6e917cb2061b.tar.xz |
ceph: make fsc->mount_state an int
This field is an unsigned long currently, which is a bit of a waste on
most arches since this just holds an enum. Make it (signed) int instead.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Xiubo Li <xiubli@redhat.com>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
-rw-r--r-- | fs/ceph/super.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.h b/fs/ceph/super.h index 482473e4cce1..f9e35e81c9af 100644 --- a/fs/ceph/super.h +++ b/fs/ceph/super.h @@ -106,7 +106,7 @@ struct ceph_fs_client { struct ceph_mount_options *mount_options; struct ceph_client *client; - unsigned long mount_state; + int mount_state; unsigned long last_auto_reconnect; bool blocklisted; |