core: assorted typos and spelling mistakes from Debian lintian

Plus minor readability improvements.

Reported-by: pmatthaei@debian.org

Change-Id: I5393819a2fc9f240a19811143bb57b127df717cf
BUG: 1466785
Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
Reviewed-on: https://review.gluster.org/17660
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
This commit is contained in:
Kaleb S. KEITHLEY 2017-06-30 09:05:51 -04:00 committed by Shyamsundar Ranganathan
parent 89faa4661d
commit a14475fa83
4 changed files with 21 additions and 19 deletions

View File

@ -482,18 +482,18 @@ event_select_on_epoll (struct event_pool *event_pool, int fd, int idx,
ev_data->gen = slot->gen;
if (slot->in_handler)
/* in_handler indicates at least one thread
executing event_dispatch_epoll_handler()
which will perform epoll_ctl(EPOLL_CTL_MOD)
anyways (because of EPOLLET)
This not only saves a system call, but also
avoids possibility of another epoll thread
parallely picking up the next event while the
ongoing handler is still in progress (and
resulting in unnecessary contention on
rpc_transport_t->mutex).
*/
/*
* in_handler indicates at least one thread
* executing event_dispatch_epoll_handler()
* which will perform epoll_ctl(EPOLL_CTL_MOD)
* anyways (because of EPOLLET)
*
* This not only saves a system call, but also
* avoids possibility of another epoll thread
* picking up the next event while the ongoing
* handler is still in progress (and resulting
* in unnecessary contention on rpc_transport_t->mutex).
*/
goto unlock;
ret = epoll_ctl (event_pool->fd, EPOLL_CTL_MOD, fd,

View File

@ -431,7 +431,7 @@ dht_configure_throttle (xlator_t *this, dht_conf_t *conf, char *temp_str)
DHT_MSG_INVALID_OPTION,
"Invalid option: Reconfigure: "
"rebal-throttle should be {lazy|normal|aggressive}"
" or a number up to 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;

View File

@ -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),

View File

@ -3345,10 +3345,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",