diff options
author | Raghavendra G <rgowdapp@redhat.com> | 2017-05-05 15:21:30 +0530 |
---|---|---|
committer | Raghavendra G <rgowdapp@redhat.com> | 2017-05-12 05:26:42 +0000 |
commit | cea8b702506ff914deadd056f4b7dd20a3ca7670 (patch) | |
tree | 954ca7e37696d57725d06343168bf7c6ed8bf22d /cli | |
parent | 333474e0d6efe1a2b3a9ecffc9bdff3e49325910 (diff) |
event/epoll: Add back socket for polling of events immediately after
reading the entire rpc message from the wire
Currently socket is added back for future events after higher layers
(rpc, xlators etc) have processed the message. If message processing
involves signficant delay (as in writev replies processed by Erasure
Coding), performance takes hit. Hence this patch modifies
transport/socket to add back the socket for polling of events
immediately after reading the entire rpc message, but before
notification to higher layers.
credits: Thanks to "Kotresh Hiremath Ravishankar"
<khiremat@redhat.com> for assitance in fixing a regression in
bitrot caused by this patch.
Change-Id: I04b6b9d0b51a1cfb86ecac3c3d87a5f388cf5800
BUG: 1448364
Signed-off-by: Raghavendra G <rgowdapp@redhat.com>
Reviewed-on: https://review.gluster.org/15036
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/src/cli-rl.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cli/src/cli-rl.c b/cli/src/cli-rl.c index bca37d9c509..4745cf49369 100644 --- a/cli/src/cli-rl.c +++ b/cli/src/cli-rl.c @@ -108,11 +108,17 @@ cli_rl_process_line (char *line) int -cli_rl_stdin (int fd, int idx, void *data, +cli_rl_stdin (int fd, int idx, int gen, void *data, int poll_out, int poll_in, int poll_err) { + struct cli_state *state = NULL; + + state = data; + rl_callback_read_char (); + event_handled (state->ctx->event_pool, fd, idx, gen); + return 0; } |