On Mon, Jun 30, 2025 at 07:08:58PM +0100, Tim Woodall wrote: > Package: e2fsprogs > Version: 1.47.0-2 > Severity: minor > > Dear Maintainer, > > Without using fuse at all: > # touch x > # setfacl -m u:root:rw x > # getfattr -m - -d x > # file: x > system.posix_acl_access=0sAgAAAAEABgD/////AgAGAAAAAAAEAAQA/////xAABgD/////IAAEAP////8= > > > When done via fuse2fs: > # which fuse2fs > /usr/bin/fuse2fs > # mkdir mnt > # fuse2fs img mnt > # touch mnt/x > # setfacl -m u:root:rw mnt/x > # getfattr -m - -d mnt/x > # file: mnt/x > system.posix_acl_access=0sAgAAAAEABgAAAAAAAgAGAAAAAAAEAAQAAAAAABAABgAAAAAAIAAEAAAAAAA= >
Hmm, I can't replicate this on e2fsprogs 1.47.3~rc2-1. I believe this was fixed by this commit: commit 0111bdb70a9c460052387111414a2e2dc8c06822 Author: Darrick J. Wong <djw...@kernel.org> Date: Thu Apr 24 14:41:49 2025 -0700 fuse2fs: remove posix acl translation Remove the POSIX ACL format translation since libext2fs takes care of that now. - Ted