mirror of https://github.com/trapexit/mergerfs.git
Browse Source
Add support for file io passthrough
Add support for file io passthrough
If using Linux 6.9 or above and enabled (passthrough=true) files opened or created will use the FUSE passthrough feature. If direct-io=true / cache.files=off it will override passthrough. If direct-io-allow-mmap is enabled only mmap will passthrough. HANDLE_KILLPRIV and V2 are enabled now by default to remove the kernel's need to issue getattr and getxattr requests. moveonenospc will not work when leveraging passthrough.passthrough2
Antonio SJ Musumeci
8 months ago
18 changed files with 1673 additions and 20 deletions
-
36README.md
-
7libfuse/include/fuse.h
-
19libfuse/include/fuse_common.h
-
39libfuse/include/fuse_kernel.h
-
5libfuse/lib/debug.c
-
34libfuse/lib/fuse.c
-
20libfuse/lib/fuse_lowlevel.c
-
1328src/better_enum.hpp
-
8src/config.cpp
-
6src/config.hpp
-
43src/config_passthrough.cpp
-
28src/config_passthrough.hpp
-
6src/enum.hpp
-
2src/fileinfo.hpp
-
49src/fuse_create.cpp
-
3src/fuse_init.cpp
-
49src/fuse_open.cpp
-
11src/fuse_release.cpp
1328
src/better_enum.hpp
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,43 @@ |
|||
#/*
|
|||
ISC License |
|||
|
|||
Copyright (c) 2024, Antonio SJ Musumeci <trapexit@spawn.link> |
|||
|
|||
Permission to use, copy, modify, and/or distribute this software for any |
|||
purpose with or without fee is hereby granted, provided that the above |
|||
copyright notice and this permission notice appear in all copies. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
|||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
|||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
|||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
|||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
|||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
|||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|||
*/ |
|||
|
|||
#include "config_passthrough.hpp"
|
|||
#include "ef.hpp"
|
|||
#include "errno.hpp"
|
|||
|
|||
template<> |
|||
std::string |
|||
Passthrough::to_string() const |
|||
{ |
|||
return _data._to_string(); |
|||
} |
|||
|
|||
template<> |
|||
int |
|||
Passthrough::from_string(const std::string &s_) |
|||
{ |
|||
better_enums::optional<PassthroughEnum> e; |
|||
|
|||
e = PassthroughEnum::_from_string_nothrow(s_.c_str()); |
|||
if(!e) |
|||
return -EINVAL; |
|||
|
|||
_data = *e; |
|||
|
|||
return 0; |
|||
} |
@ -0,0 +1,28 @@ |
|||
/*
|
|||
ISC License |
|||
|
|||
Copyright (c) 2024, Antonio SJ Musumeci <trapexit@spawn.link> |
|||
|
|||
Permission to use, copy, modify, and/or distribute this software for any |
|||
purpose with or without fee is hereby granted, provided that the above |
|||
copyright notice and this permission notice appear in all copies. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
|||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
|||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
|||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
|||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
|||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
|||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|||
*/ |
|||
|
|||
#pragma once
|
|||
|
|||
#include "better_enum.hpp"
|
|||
|
|||
#include "enum.hpp"
|
|||
|
|||
|
|||
BETTER_ENUM(PassthroughEnum, uint8_t, off, r, w, ro, wo, rw); |
|||
|
|||
typedef Enum<PassthroughEnum> Passthrough; |
Write
Preview
Loading…
Cancel
Save
Reference in new issue