On Wed, Aug 27, 2025 at 05:15:56PM +0200, Andrey Albershteyn wrote: > rdump just skipped file attributes on special files as copying wasn't > possible. Let's use new file_getattr/file_setattr syscalls to copy > attributes even for special files. > > Signed-off-by: Andrey Albershteyn <aalbersh@xxxxxxxxxx> Looks good! Reviewed-by: "Darrick J. Wong" <djwong@xxxxxxxxxx> --D > --- > db/rdump.c | 20 +++++++++++++++++++- > 1 file changed, 19 insertions(+), 1 deletion(-) > > diff --git a/db/rdump.c b/db/rdump.c > index 9ff833553ccb..82520e37d713 100644 > --- a/db/rdump.c > +++ b/db/rdump.c > @@ -17,6 +17,7 @@ > #include "field.h" > #include "inode.h" > #include "listxattr.h" > +#include "libfrog/file_attr.h" > #include <sys/xattr.h> > #include <linux/xattr.h> > > @@ -152,6 +153,12 @@ rdump_fileattrs_path( > const struct destdir *destdir, > const struct pathbuf *pbuf) > { > + struct file_attr fa = { > + .fa_extsize = ip->i_extsize, > + .fa_projid = ip->i_projid, > + .fa_cowextsize = ip->i_cowextsize, > + .fa_xflags = xfs_ip2xflags(ip), > + }; > int ret; > > ret = fchmodat(destdir->fd, pbuf->path, VFS_I(ip)->i_mode & ~S_IFMT, > @@ -181,7 +188,18 @@ rdump_fileattrs_path( > return 1; > } > > - /* Cannot copy fsxattrs until setfsxattrat gets merged */ > + ret = xfrog_file_setattr(destdir->fd, pbuf->path, NULL, &fa, > + AT_SYMLINK_NOFOLLOW); > + if (ret) { > + if (errno == EOPNOTSUPP || errno == EPERM || errno == ENOTTY) > + lost_mask |= LOST_FSXATTR; > + else > + dbprintf(_("%s%s%s: xfrog_file_setattr %s\n"), > + destdir->path, destdir->sep, pbuf->path, > + strerror(errno)); > + if (strict_errors) > + return 1; > + } > > return 0; > } > > -- > 2.49.0 > >