From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com ([209.132.183.28]:9416 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729725AbfGOLaD (ORCPT ); Mon, 15 Jul 2019 07:30:03 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B3C7D307D88D for ; Mon, 15 Jul 2019 11:30:03 +0000 (UTC) Date: Mon, 15 Jul 2019 07:29:59 -0400 From: Brian Foster Subject: Re: [PATCH 1/2] xfs: move xfs_trans_inode.c to libxfs/ Message-ID: <20190715112958.GA23406@bfoster> References: <68ef2df9-3f8e-6547-4e2b-181bce30ca3c@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-xfs-owner@vger.kernel.org List-ID: List-Id: xfs To: Eric Sandeen Cc: linux-xfs On Fri, Jul 12, 2019 at 12:44:48PM -0500, Eric Sandeen wrote: > 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 > > diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile > index b74a47169297..06b68b6115bc 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 >