From: Darrick J. Wong Date: Mon, 29 Jul 2024 23:22:39 +0000 (-0700) Subject: xfs: pass the owner to xfs_symlink_write_target X-Git-Tag: v6.10.0~24^2~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a73bb88013e91c51ebb2f5f92001db8058ea4910;p=thirdparty%2Fxfsprogs-dev.git xfs: pass the owner to xfs_symlink_write_target Source kernel commit: ea8214c3195c2ed3a205dea42bbe7746712fc461 Require callers of xfs_symlink_write_target to pass the owner number explicitly. This sets us up for online repair to be able to write a remote symlink target to sc->tempip with sc->ip's inumber in the block heaader. Signed-off-by: Darrick J. Wong Reviewed-by: Christoph Hellwig --- diff --git a/libxfs/xfs_symlink_remote.c b/libxfs/xfs_symlink_remote.c index fbcd1aeb..2ad586f3 100644 --- a/libxfs/xfs_symlink_remote.c +++ b/libxfs/xfs_symlink_remote.c @@ -308,6 +308,7 @@ int xfs_symlink_write_target( struct xfs_trans *tp, struct xfs_inode *ip, + xfs_ino_t owner, const char *target_path, int pathlen, xfs_fsblock_t fs_blocks, @@ -362,8 +363,7 @@ xfs_symlink_write_target( byte_cnt = min(byte_cnt, pathlen); buf = bp->b_addr; - buf += xfs_symlink_hdr_set(mp, ip->i_ino, offset, byte_cnt, - bp); + buf += xfs_symlink_hdr_set(mp, owner, offset, byte_cnt, bp); memcpy(buf, cur_chunk, byte_cnt); diff --git a/libxfs/xfs_symlink_remote.h b/libxfs/xfs_symlink_remote.h index 83b89a1d..c1672fe1 100644 --- a/libxfs/xfs_symlink_remote.h +++ b/libxfs/xfs_symlink_remote.h @@ -21,8 +21,8 @@ void xfs_symlink_local_to_remote(struct xfs_trans *tp, struct xfs_buf *bp, xfs_failaddr_t xfs_symlink_shortform_verify(void *sfp, int64_t size); int xfs_symlink_remote_read(struct xfs_inode *ip, char *link); int xfs_symlink_write_target(struct xfs_trans *tp, struct xfs_inode *ip, - const char *target_path, int pathlen, xfs_fsblock_t fs_blocks, - uint resblks); + xfs_ino_t owner, const char *target_path, int pathlen, + xfs_fsblock_t fs_blocks, uint resblks); int xfs_symlink_remote_truncate(struct xfs_trans *tp, struct xfs_inode *ip); #endif /* __XFS_SYMLINK_REMOTE_H */ diff --git a/mkfs/proto.c b/mkfs/proto.c index a923f9c1..5125ee44 100644 --- a/mkfs/proto.c +++ b/mkfs/proto.c @@ -252,7 +252,8 @@ writesymlink( xfs_extlen_t nb = XFS_B_TO_FSB(mp, len); int error; - error = -libxfs_symlink_write_target(tp, ip, buf, len, nb, nb); + error = -libxfs_symlink_write_target(tp, ip, ip->i_ino, buf, len, nb, + nb); if (error) { fprintf(stderr, _("%s: error %d creating symlink to '%s'.\n"), progname, error, buf);