summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-09-03 11:43:06 +0200
committerantirez <antirez@gmail.com>2010-09-03 11:43:06 +0200
commit7caf0591a770d3b09fb62304710c2711e0fc2413 (patch)
treed779d6d3eaf2cb4043e82e15c4c58d56e510b76e
parenteaaf62f6a4268d95f63265dc2cc3c3fe8b47689c (diff)
downloadredis-7caf0591a770d3b09fb62304710c2711e0fc2413.tar.gz
Fix for bug 312 (VM bug) backported from master
-rw-r--r--redis.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/redis.c b/redis.c
index fe6d88043..5f5bdb389 100644
--- a/redis.c
+++ b/redis.c
@@ -9365,7 +9365,15 @@ static void freeIOJob(iojob *j) {
/* Every time a thread finished a Job, it writes a byte into the write side
* of an unix pipe in order to "awake" the main thread, and this function
- * is called. */
+ * is called.
+ *
+ * Note that this is called both by the event loop, when a I/O thread
+ * sends a byte in the notification pipe, and is also directly called from
+ * waitEmptyIOJobsQueue().
+ *
+ * In the latter case we don't want to swap more, so we use the
+ * "privdata" argument setting it to a not NULL value to signal this
+ * condition. */
static void vmThreadedIOCompletedJob(aeEventLoop *el, int fd, void *privdata,
int mask)
{
@@ -9375,6 +9383,8 @@ static void vmThreadedIOCompletedJob(aeEventLoop *el, int fd, void *privdata,
REDIS_NOTUSED(mask);
REDIS_NOTUSED(privdata);
+ if (privdata == NULL) trytoswap = 0; /* check the comments above... */
+
/* For every byte we read in the read side of the pipe, there is one
* I/O job completed to process. */
while((retval = read(fd,buf,1)) == 1) {
@@ -9684,7 +9694,8 @@ static void waitEmptyIOJobsQueue(void) {
io_processed_len = listLength(server.io_processed);
unlockThreadedIO();
if (io_processed_len) {
- vmThreadedIOCompletedJob(NULL,server.io_ready_pipe_read,NULL,0);
+ vmThreadedIOCompletedJob(NULL,server.io_ready_pipe_read,
+ (void*)0xdeadbeef,0);
usleep(1000); /* 1 millisecond */
} else {
usleep(10000); /* 10 milliseconds */