From: Eric Sandeen Date: Fri, 12 Jul 2019 22:07:05 +0000 (-0700) Subject: xfs: move xfs_trans_inode.c to libxfs/ X-Git-Tag: v5.3-rc1~41^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3f6d70e88555d2513b0199c0c383602bf8aec059;p=thirdparty%2Fkernel%2Flinux.git xfs: move xfs_trans_inode.c to libxfs/ Userspace now has an identical xfs_trans_inode.c which it has already moved to libxfs/ so do the same move for kernelspace. Signed-off-by: Eric Sandeen Reviewed-by: Brian Foster Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong --- diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index b74a471692970..06b68b6115bcd 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -49,6 +49,7 @@ xfs-y += $(addprefix libxfs/, \ xfs_refcount_btree.o \ xfs_sb.o \ xfs_symlink_remote.o \ + xfs_trans_inode.o \ xfs_trans_resv.o \ xfs_types.o \ ) @@ -107,8 +108,7 @@ xfs-y += xfs_log.o \ xfs_rmap_item.o \ xfs_log_recover.o \ xfs_trans_ail.o \ - xfs_trans_buf.o \ - xfs_trans_inode.o + xfs_trans_buf.o # optional features xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \ diff --git a/fs/xfs/xfs_trans_inode.c b/fs/xfs/libxfs/xfs_trans_inode.c similarity index 100% rename from fs/xfs/xfs_trans_inode.c rename to fs/xfs/libxfs/xfs_trans_inode.c