diff options
author | Yaniv Kaul <ykaul@redhat.com> | 2019-12-09 21:28:00 +0200 |
---|---|---|
committer | Amar Tumballi <amarts@gmail.com> | 2020-01-14 17:11:22 +0000 |
commit | 9969d1dc2a3e815b161ce8a3dc5d08f84cfe011f (patch) | |
tree | 4ee28dd04d0a16d6057a7913455d9b3e0df5b61d /api | |
parent | dc5b2d3c181020da1644106e5b17f77a4f3e53df (diff) |
multiple xlators: reduce key length
In many cases, we were freely allocating long keys with no need.
Smaller char arrays are just fine almost anywhere, so just went ahead
and looked where they we can use smaller ones.
In some cases, annotated the functions as static and the prefixes
passed as const as it was easier to read and understand.
Where relevant, converted the dict functions to use known key length.
Change-Id: I882ab33ea20d90b63278336cd1370c09ffdab7f2
updates: bz#1193929
Signed-off-by: Yaniv Kaul <ykaul@redhat.com>
Diffstat (limited to 'api')
-rw-r--r-- | api/src/glfs-mgmt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/api/src/glfs-mgmt.c b/api/src/glfs-mgmt.c index ddb506039da..7271e35ec3f 100644 --- a/api/src/glfs-mgmt.c +++ b/api/src/glfs-mgmt.c @@ -255,7 +255,6 @@ mgmt_get_volinfo_cbk(struct rpc_req *req, struct iovec *iov, int count, int ret = 0; char *volume_id_str = NULL; dict_t *dict = NULL; - char key[1024] = {0}; gf_get_volume_info_rsp rsp = { 0, }; @@ -328,8 +327,7 @@ mgmt_get_volinfo_cbk(struct rpc_req *req, struct iovec *iov, int count, goto out; } - snprintf(key, sizeof(key), "volume_id"); - ret = dict_get_str(dict, key, &volume_id_str); + ret = dict_get_str_sizen(dict, "volume_id", &volume_id_str); if (ret) { errno = EINVAL; goto out; |