From 1c2cc744a002544790a4d9c6e9df8896e5dcd925 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sat, 18 Oct 1997 05:32:15 +0000 Subject: [PATCH] for new swapout scheme we need to separately track the number of bytes queued for disk write and the number actually written --- src/structs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.47.3