diff options
author | Sage Weil <sage@newdream.net> | 2010-04-29 19:38:32 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-05-17 18:25:29 -0400 |
commit | 6e19a16ef28aee09dbcbb9f3ff24ac4f439def7d (patch) | |
tree | e66eb2ff60ebd79eec5d06dd6360b3046d294da0 /fs/ceph/super.h | |
parent | 1cd3935bedccf592d44343890251452a6dd74fc4 (diff) |
ceph: clean up mount options, ->show_options()
Ensure all options are included in /proc/mounts. Some cleanup.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/super.h')
-rw-r--r-- | fs/ceph/super.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/fs/ceph/super.h b/fs/ceph/super.h index 51b3ff238454..395adc5fcebb 100644 --- a/fs/ceph/super.h +++ b/fs/ceph/super.h | |||
@@ -52,24 +52,24 @@ | |||
52 | 52 | ||
53 | struct ceph_mount_args { | 53 | struct ceph_mount_args { |
54 | int sb_flags; | 54 | int sb_flags; |
55 | int flags; | ||
56 | struct ceph_fsid fsid; | ||
57 | struct ceph_entity_addr my_addr; | ||
55 | int num_mon; | 58 | int num_mon; |
56 | struct ceph_entity_addr *mon_addr; | 59 | struct ceph_entity_addr *mon_addr; |
57 | int flags; | ||
58 | int mount_timeout; | 60 | int mount_timeout; |
59 | int osd_idle_ttl; | 61 | int osd_idle_ttl; |
60 | int caps_wanted_delay_min, caps_wanted_delay_max; | 62 | int osd_timeout; |
61 | struct ceph_fsid fsid; | 63 | int osd_keepalive_timeout; |
62 | struct ceph_entity_addr my_addr; | ||
63 | int wsize; | 64 | int wsize; |
64 | int rsize; /* max readahead */ | 65 | int rsize; /* max readahead */ |
66 | int congestion_kb; /* max writeback in flight */ | ||
67 | int caps_wanted_delay_min, caps_wanted_delay_max; | ||
68 | int cap_release_safety; | ||
65 | int max_readdir; /* max readdir size */ | 69 | int max_readdir; /* max readdir size */ |
66 | int congestion_kb; /* max readdir size */ | ||
67 | int osd_timeout; | ||
68 | int osd_keepalive_timeout; | ||
69 | char *snapdir_name; /* default ".snap" */ | 70 | char *snapdir_name; /* default ".snap" */ |
70 | char *name; | 71 | char *name; |
71 | char *secret; | 72 | char *secret; |
72 | int cap_release_safety; | ||
73 | }; | 73 | }; |
74 | 74 | ||
75 | /* | 75 | /* |
@@ -80,13 +80,13 @@ struct ceph_mount_args { | |||
80 | #define CEPH_OSD_KEEPALIVE_DEFAULT 5 | 80 | #define CEPH_OSD_KEEPALIVE_DEFAULT 5 |
81 | #define CEPH_OSD_IDLE_TTL_DEFAULT 60 | 81 | #define CEPH_OSD_IDLE_TTL_DEFAULT 60 |
82 | #define CEPH_MOUNT_RSIZE_DEFAULT (512*1024) /* readahead */ | 82 | #define CEPH_MOUNT_RSIZE_DEFAULT (512*1024) /* readahead */ |
83 | #define CEPH_MAX_READDIR_DEFAULT 1024 | ||
83 | 84 | ||
84 | #define CEPH_MSG_MAX_FRONT_LEN (16*1024*1024) | 85 | #define CEPH_MSG_MAX_FRONT_LEN (16*1024*1024) |
85 | #define CEPH_MSG_MAX_DATA_LEN (16*1024*1024) | 86 | #define CEPH_MSG_MAX_DATA_LEN (16*1024*1024) |
86 | 87 | ||
87 | #define CEPH_SNAPDIRNAME_DEFAULT ".snap" | 88 | #define CEPH_SNAPDIRNAME_DEFAULT ".snap" |
88 | #define CEPH_AUTH_NAME_DEFAULT "guest" | 89 | #define CEPH_AUTH_NAME_DEFAULT "guest" |
89 | |||
90 | /* | 90 | /* |
91 | * Delay telling the MDS we no longer want caps, in case we reopen | 91 | * Delay telling the MDS we no longer want caps, in case we reopen |
92 | * the file. Delay a minimum amount of time, even if we send a cap | 92 | * the file. Delay a minimum amount of time, even if we send a cap |
@@ -96,6 +96,7 @@ struct ceph_mount_args { | |||
96 | #define CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT 5 /* cap release delay */ | 96 | #define CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT 5 /* cap release delay */ |
97 | #define CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT 60 /* cap release delay */ | 97 | #define CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT 60 /* cap release delay */ |
98 | 98 | ||
99 | #define CEPH_CAP_RELEASE_SAFETY_DEFAULT (CEPH_CAPS_PER_RELEASE * 4) | ||
99 | 100 | ||
100 | /* mount state */ | 101 | /* mount state */ |
101 | enum { | 102 | enum { |