diff options
author | Horst Birthelmer <hbirthelmer@ddn.com> | 2024-11-20 16:14:43 +0100 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-11-27 13:38:56 +0100 |
commit | 4ec109d1c447bbf5be05854e32d8683bb1df5a80 (patch) | |
tree | 4283922b8aee6846ea111499285174232ed062b8 /test/stracedecode.c | |
parent | 8b34ed03682bb7806a6083b05187c4fc5475a135 (diff) | |
download | libfuse-4ec109d1c447bbf5be05854e32d8683bb1df5a80.tar.gz |
support FUSE_TMPFILE in the low level API
Note that name hashes and using paths as parameters
makes it very hard to support
anonymous files in the high level API.
Known Issues:
- tests have to bail out when O_TMPFILE is not supported.
This will always be the case with high level passthrough implementations.
- test_create_and_link_tmpfile has to be skipped
due to unidentified problems with github runner
Diffstat (limited to 'test/stracedecode.c')
-rw-r--r-- | test/stracedecode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/stracedecode.c b/test/stracedecode.c index 940438a..01bf523 100644 --- a/test/stracedecode.c +++ b/test/stracedecode.c @@ -38,6 +38,7 @@ static struct { [FUSE_SETLKW] = { "SETLKW" }, [FUSE_ACCESS] = { "ACCESS" }, [FUSE_CREATE] = { "CREATE" }, + [FUSE_TMPFILE] = { "TMPFILE" }, [FUSE_INTERRUPT] = { "INTERRUPT" }, [FUSE_BMAP] = { "BMAP" }, [FUSE_DESTROY] = { "DESTROY" }, |