summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMax Reitz2020-10-27 20:05:46 +0100
committerKevin Wolf2020-12-11 17:52:40 +0100
commitdf4ea7091b744c8568e8bd9212a756ac504c43d4 (patch)
tree4bb9ba1819d02bb97343e03def3f6ca06ac54251 /meson_options.txt
parentfuse: (Partially) implement fallocate() (diff)
downloadqemu-df4ea7091b744c8568e8bd9212a756ac504c43d4.tar.gz
qemu-df4ea7091b744c8568e8bd9212a756ac504c43d4.tar.xz
qemu-df4ea7091b744c8568e8bd9212a756ac504c43d4.zip
fuse: Implement hole detection through lseek
This is a relatively new feature in libfuse (available since 3.8.0, which was released in November 2019), so we have to add a dedicated check whether it is available before making use of it. Signed-off-by: Max Reitz <mreitz@redhat.com> Message-Id: <20201027190600.192171-7-mreitz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 8f9f2e3df6..74ac853548 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -68,6 +68,8 @@ option('vhost_user_blk_server', type: 'feature', value: 'auto',
description: 'build vhost-user-blk server')
option('fuse', type: 'feature', value: 'auto',
description: 'FUSE block device export')
+option('fuse_lseek', type : 'feature', value : 'auto',
+ description: 'SEEK_HOLE/SEEK_DATA support for FUSE exports')
option('capstone', type: 'combo', value: 'auto',
choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],