diff options
author | Sage Weil <sage@newdream.net> | 2010-05-14 16:06:30 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-05-17 18:25:41 -0400 |
commit | 23804d91f112df09b832cd091b71af4dc2831aa8 (patch) | |
tree | 4b77c43b47d58f08ab02220c507dabfc8f6daf7a /fs/ceph/super.h | |
parent | 366837706bae00abc2edd75add2579c1be18b2b8 (diff) |
ceph: specify max_bytes on readdir replies
Specify max bytes in request to bound size of reply. Add associated
mount option with default value of 512 KB.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/super.h')
-rw-r--r-- | fs/ceph/super.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ceph/super.h b/fs/ceph/super.h index 395adc5fcebb..3725c9ee9d08 100644 --- a/fs/ceph/super.h +++ b/fs/ceph/super.h | |||
@@ -66,7 +66,8 @@ struct ceph_mount_args { | |||
66 | int congestion_kb; /* max writeback in flight */ | 66 | int congestion_kb; /* max writeback in flight */ |
67 | int caps_wanted_delay_min, caps_wanted_delay_max; | 67 | int caps_wanted_delay_min, caps_wanted_delay_max; |
68 | int cap_release_safety; | 68 | int cap_release_safety; |
69 | int max_readdir; /* max readdir size */ | 69 | int max_readdir; /* max readdir result (entires) */ |
70 | int max_readdir_bytes; /* max readdir result (bytes) */ | ||
70 | char *snapdir_name; /* default ".snap" */ | 71 | char *snapdir_name; /* default ".snap" */ |
71 | char *name; | 72 | char *name; |
72 | char *secret; | 73 | char *secret; |
@@ -81,6 +82,7 @@ struct ceph_mount_args { | |||
81 | #define CEPH_OSD_IDLE_TTL_DEFAULT 60 | 82 | #define CEPH_OSD_IDLE_TTL_DEFAULT 60 |
82 | #define CEPH_MOUNT_RSIZE_DEFAULT (512*1024) /* readahead */ | 83 | #define CEPH_MOUNT_RSIZE_DEFAULT (512*1024) /* readahead */ |
83 | #define CEPH_MAX_READDIR_DEFAULT 1024 | 84 | #define CEPH_MAX_READDIR_DEFAULT 1024 |
85 | #define CEPH_MAX_READDIR_BYTES_DEFAULT (512*1024) | ||
84 | 86 | ||
85 | #define CEPH_MSG_MAX_FRONT_LEN (16*1024*1024) | 87 | #define CEPH_MSG_MAX_FRONT_LEN (16*1024*1024) |
86 | #define CEPH_MSG_MAX_DATA_LEN (16*1024*1024) | 88 | #define CEPH_MSG_MAX_DATA_LEN (16*1024*1024) |