diff options
| author | Jakob Unterwurzacher | 2025-11-29 22:01:03 +0100 |
|---|---|---|
| committer | Jakob Unterwurzacher | 2025-11-29 22:01:03 +0100 |
| commit | 4c6d3926008347d5034bdbade8077890425a55ec (patch) | |
| tree | 6dcc281b8c81398c4b40962eaf9c3e484a35b6c3 /internal/syscallcompat/quirks_linux.go | |
| parent | 75247e14612d2e71311aeeb7060ea704c96c3154 (diff) | |
quirks: drop tmpfs xattr quirk
tmpfs supports user xattrs since Linux 6.6 (anno 2023):
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=2daf18a7884dc03d5164ab9c7dc3f2ea70638469
Diffstat (limited to 'internal/syscallcompat/quirks_linux.go')
| -rw-r--r-- | internal/syscallcompat/quirks_linux.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/syscallcompat/quirks_linux.go b/internal/syscallcompat/quirks_linux.go index 5ef2d8a..bcdcf07 100644 --- a/internal/syscallcompat/quirks_linux.go +++ b/internal/syscallcompat/quirks_linux.go @@ -27,9 +27,5 @@ func DetectQuirks(cipherdir string) (q uint64) { q |= QuirkBrokenFalloc } - if uint32(st.Type) == unix.TMPFS_MAGIC { - logQuirk("tmpfs detected, no extended attributes except acls will work.") - } - return q } |
