[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxc: save: move static "write_count" variable into outbuf.
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1306228450 -3600 # Node ID 98fed9c5aa7823b5186fa00a49f6c4477997f40b # Parent 74b56732e324f7628e77cbdbd45613265f5aceb0 libxc: save: move static "write_count" variable into outbuf. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson.citrix.com> Committed-by: Ian Jackson <ian.jackson.citrix.com> --- diff -r 74b56732e324 -r 98fed9c5aa78 tools/libxc/xc_domain_save.c --- a/tools/libxc/xc_domain_save.c Tue May 24 10:14:10 2011 +0100 +++ b/tools/libxc/xc_domain_save.c Tue May 24 10:14:10 2011 +0100 @@ -59,6 +59,7 @@ void* buf; size_t size; size_t pos; + int write_count; }; #define OUTBUF_SIZE (16384 * 1024) @@ -152,19 +153,19 @@ } static int noncached_write(xc_interface *xch, + struct outbuf* ob, int fd, void *buffer, int len) { - static int write_count = 0; int rc = (write_exact(fd, buffer, len) == 0) ? len : -1; - write_count += len; - if ( write_count >= (MAX_PAGECACHE_USAGE * PAGE_SIZE) ) + ob->write_count += len; + if ( ob->write_count >= (MAX_PAGECACHE_USAGE * PAGE_SIZE) ) { /* Time to discard cache - dont care if this fails */ int saved_errno = errno; discard_file_cache(xch, fd, 0 /* no flush */); errno = saved_errno; - write_count = 0; + ob->write_count = 0; } return rc; @@ -260,7 +261,7 @@ if ( dobuf ) return outbuf_hardwrite(xch, ob, fd, buf, len) ? -1 : len; else - return noncached_write(xch, fd, buf, len); + return noncached_write(xch, ob, fd, buf, len); } static int print_stats(xc_interface *xch, uint32_t domid, int pages_sent, _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |