diff options
author | Viacheslav Dubeyko <Slava.Dubeyko@ibm.com> | 2025-01-24 11:46:23 -0800 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2025-01-27 16:07:42 +0100 |
commit | 3981be13ec1baf811bfb93ed6a98bafc85cdeab1 (patch) | |
tree | 4ed7c3aa135e4666b9d2dbf88b44d8f2a59cc410 /fs/ceph | |
parent | 2f0805d7c08bea71c95561bfb3e45d93b05196b9 (diff) |
ceph: exchange hardcoded value on NAME_MAX
Initially, ceph_fs_debugfs_init() had temporary
name buffer with hardcoded length of 80 symbols.
Then, it was hardcoded again for 100 symbols.
Finally, it makes sense to exchange hardcoded
value on properly defined constant and 255 symbols
should be enough for any name case.
Signed-off-by: Viacheslav Dubeyko <Slava.Dubeyko@ibm.com>
Reviewed-by: Patrick Donnelly <pdonnell@ibm.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/debugfs.c b/fs/ceph/debugfs.c index fdf9dc15eafa..fdd404fc8112 100644 --- a/fs/ceph/debugfs.c +++ b/fs/ceph/debugfs.c @@ -412,7 +412,7 @@ void ceph_fs_debugfs_cleanup(struct ceph_fs_client *fsc) void ceph_fs_debugfs_init(struct ceph_fs_client *fsc) { - char name[100]; + char name[NAME_MAX]; doutc(fsc->client, "begin\n"); fsc->debugfs_congestion_kb = |