On Thu, Jun 20, 2019 at 02:53:14PM -0500, Eric Sandeen wrote: > On 6/20/19 11:50 AM, Darrick J. Wong wrote: > > From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > > > > Now that we're syncing userspace libxfs/ files with kernel fs/xfs/ > > files, teach the diff tool to try fs/xfs/xfs_foo.c if > > fs/xfs/libxfs/xfs_foo.c doesn't exist. > > do we really need this or should I just send a patch for the kernel > to move it? Nah just send a kernel patch. --D > -Eric > > > Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> > > --- > > tools/libxfs-diff | 1 + > > 1 file changed, 1 insertion(+) > > > > > > diff --git a/tools/libxfs-diff b/tools/libxfs-diff > > index fa57c004..c18ad487 100755 > > --- a/tools/libxfs-diff > > +++ b/tools/libxfs-diff > > @@ -22,5 +22,6 @@ dir="$(readlink -m "${dir}/..")" > > > > for i in libxfs/xfs*.[ch]; do > > kfile="${dir}/$i" > > + test -f "${kfile}" || kfile="$(echo "${kfile}" | sed -e 's|libxfs/||g')" > > diff -Naurpw --label "$i" <(sed -e '/#include/d' "$i") --label "${kfile}" <(sed -e '/#include/d' "${kfile}") > > done > >