X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f7b9377863c25088412a704cc0834460d0d6c86b..6608462cac742530ed6528bfb5ac7e26f43a31ea:/io.c diff --git a/io.c b/io.c index 7909e0b1..fc62e452 100644 --- a/io.c +++ b/io.c @@ -54,8 +54,8 @@ static void check_timeout(void) t = time(NULL); - if (last_io && io_timeout && (t-last_io)>io_timeout) { - rprintf(FERROR,"read timeout after %d second - exiting\n", + if (last_io && io_timeout && (t-last_io) >= io_timeout) { + rprintf(FERROR,"io timeout after %d second - exiting\n", (int)(t-last_io)); exit_cleanup(1); } @@ -119,7 +119,7 @@ static int read_timeout(int fd, char *buf, int len) if (n == 0) { if (eof_error) { - rprintf(FERROR,"EOF in read_timeout\n"); + rprintf(FERROR,"unexpected EOF in read_timeout\n"); } exit_cleanup(1); } @@ -238,7 +238,7 @@ static void readfd(int fd,char *buffer,int N) int ret; int total=0; - if (read_buffer_len < N && N < 1024) { + if ((read_buffer_len < N) && (N < 1024)) { read_check(buffer_f_in); } @@ -319,17 +319,19 @@ static void writefd_unbuffered(int fd,char *buf,int len) int fd_count, count; struct timeval tv; int reading; + int blocked=0; no_flush++; - reading = (buffer_f_in != -1 && read_buffer_len < MAX_READ_BUFFER); - while (total < len) { FD_ZERO(&w_fds); FD_ZERO(&r_fds); FD_SET(fd,&w_fds); fd_count = fd+1; + reading = (buffer_f_in != -1 && + read_buffer_len < MAX_READ_BUFFER); + if (reading) { FD_SET(buffer_f_in,&r_fds); if (buffer_f_in > fd) @@ -349,8 +351,13 @@ static void writefd_unbuffered(int fd,char *buf,int len) continue; } + if (reading && FD_ISSET(buffer_f_in, &r_fds)) { + read_check(buffer_f_in); + } + if (FD_ISSET(fd, &w_fds)) { - int ret = write(fd,buf+total,len-total); + int n = (len-total)>>blocked; + int ret = write(fd,buf+total,n?n:1); if (ret == -1 && errno == EINTR) { continue; @@ -358,10 +365,7 @@ static void writefd_unbuffered(int fd,char *buf,int len) if (ret == -1 && (errno == EAGAIN || errno == EWOULDBLOCK)) { - /* this shouldn't happen, if it does then - sleep for a short time to prevent us - chewing too much CPU */ - u_sleep(100); + blocked++; continue; } @@ -370,16 +374,12 @@ static void writefd_unbuffered(int fd,char *buf,int len) exit_cleanup(1); } + blocked = 0; total += ret; stats.total_written += ret; if (io_timeout) last_io = time(NULL); - continue; - } - - if (reading && FD_ISSET(buffer_f_in, &r_fds)) { - read_check(buffer_f_in); } }