From: wessels <> Date: Sat, 18 Oct 1997 05:32:15 +0000 (+0000) Subject: for new swapout scheme we need to separately track the number of X-Git-Tag: SQUID_3_0_PRE1~4772 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1c2cc744a002544790a4d9c6e9df8896e5dcd925;p=thirdparty%2Fsquid.git for new swapout scheme we need to separately track the number of bytes queued for disk write and the number actually written --- diff --git a/src/structs.h b/src/structs.h index 200157d1ae..2601d14b6b 100644 --- a/src/structs.h +++ b/src/structs.h @@ -743,7 +743,8 @@ struct _MemObject { struct _store_client *clients; int nclients; struct { - off_t offset; + off_t queue_offset; + off_t done_offset; int fd; } swapout; struct _http_reply *reply;