summaryrefslogtreecommitdiffstats
path: root/xlators
diff options
context:
space:
mode:
Diffstat (limited to 'xlators')
-rw-r--r--xlators/cluster/dht/src/dht-shared.c2
-rw-r--r--xlators/features/trash/src/trash.c5
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-volume-set.c9
3 files changed, 9 insertions, 7 deletions
diff --git a/xlators/cluster/dht/src/dht-shared.c b/xlators/cluster/dht/src/dht-shared.c
index 9c3eb16869c..8f75e023371 100644
--- a/xlators/cluster/dht/src/dht-shared.c
+++ b/xlators/cluster/dht/src/dht-shared.c
@@ -489,7 +489,7 @@ dht_reconfigure (xlator_t *this, dict_t *options)
DHT_MSG_INVALID_OPTION,
"Invalid option: Reconfigure: "
"rebal-throttle should be {lazy|normal|aggressive}"
- " or a number upto number of cores available,"
+ " or a number up to the number of cores available,"
" not (%s), defaulting to (%d)",
temp_str, conf->dthrottle);
ret = -1;
diff --git a/xlators/features/trash/src/trash.c b/xlators/features/trash/src/trash.c
index e321a05a01b..ab01832bb8b 100644
--- a/xlators/features/trash/src/trash.c
+++ b/xlators/features/trash/src/trash.c
@@ -1889,8 +1889,9 @@ trash_truncate_stat_cbk (call_frame_t *frame, void *cookie, xlator_t *this,
*/
if (buf->ia_size > (priv->max_trash_file_size) ||
buf->ia_size <= local->fop_offset) {
- gf_log (this->name, GF_LOG_DEBUG, "%s: not moving to trash , "
- "having inappropiate file size", local->loc.path);
+ gf_log (this->name, GF_LOG_DEBUG,
+ "%s: file is too large to move to trash",
+ local->loc.path);
STACK_WIND (frame, trash_common_unwind_buf_cbk,
FIRST_CHILD(this),
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c
index b2ad136fa72..80592d41e99 100644
--- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c
+++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c
@@ -3275,10 +3275,11 @@ struct volopt_map_entry glusterd_volopt_map[] = {
.type = DOC,
.op_version = GD_OP_VERSION_3_10_0,
.validate_fn = validate_parallel_readdir,
- .description = "If this option is enabled, the readdir operation is "
- "performed parallely on all the bricks, thus improving"
- " the performance of readdir. Note that the performance"
- "improvement is higher in large clusters"
+ .description = "If this option is enabled, the readdir operation "
+ "is performed in parallel on all the bricks, thus "
+ "improving the performance of readdir. Note that "
+ "the performance improvement is higher in large "
+ "clusters"
},
{ .key = "performance.rda-request-size",
.voltype = "performance/readdir-ahead",