From e2eb1abb105aa52e25fbf8973595ed2b6c64416d Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Thu, 19 Sep 2024 15:09:04 +0200 Subject: Add FUSE_CAP_NO_EXPORT and use it in passthrough_hp This should stop some more xfstest test failures. --- example/printcap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'example/printcap.c') diff --git a/example/printcap.c b/example/printcap.c index bbbc1b8..01b4d3f 100644 --- a/example/printcap.c +++ b/example/printcap.c @@ -88,7 +88,9 @@ static void pc_init(void *userdata, if(conn->capable & FUSE_CAP_HANDLE_KILLPRIV_V2) printf("\tFUSE_CAP_HANDLE_KILLPRIV_V2\n"); if(conn->capable & FUSE_CAP_DIRECT_IO_ALLOW_MMAP) - printf("\tFUSE_CAP_DIRECT_IO_ALLOW_MMAP\n"); + printf("\tFUSE_CAP_DIRECT_IO_ALLOW_MMAP\n"); + if (conn->capable & FUSE_CAP_NO_EXPORT_SUPPORT) + printf("\tFUSE_CAP_NO_EXPORT_SUPPORT\n"); fuse_session_exit(se); } -- cgit v1.2.3