From 09dbfb968c4ef469f4a43dad3b9818fd2ed4ef82 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Thu, 15 Mar 2018 22:03:36 +0100 Subject: [SERVER] Experimental support for sparse files in proxy mode Will not preallocate images in this mode. Old images are only deleted if the disk is full, determined by write() calls to the cache file yielding ENOSPC or EDQUOT. In such a case, the least recently used image(s) will be deleted to free up at least 256MiB, and then the write() call will be repeated. This *should* work somewhat reliably unless the cache partition is ridiculously small. Performance might suffer a little, and disk fragmentation might occur much faster than in prealloc mode. Testing is needed. --- src/server/image.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/server/image.h') diff --git a/src/server/image.h b/src/server/image.h index 213734d..2290744 100644 --- a/src/server/image.h +++ b/src/server/image.h @@ -43,6 +43,8 @@ int image_getCompletenessEstimate(dnbd3_image_t * const image); void image_closeUnusedFd(); +bool image_ensureDiskSpaceLocked(uint64_t size, bool force); + // one byte in the map covers 8 4kib blocks, so 32kib per byte // "+ (1 << 15) - 1" is required to account for the last bit of // the image that is smaller than 32kib -- cgit v1.2.3-55-g7522