From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx2.suse.de ([195.135.220.15]:57214 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725866AbfBUSHw (ORCPT ); Thu, 21 Feb 2019 13:07:52 -0500 Date: Thu, 21 Feb 2019 19:09:13 +0100 From: David Sterba Subject: Re: [PATCH] t_attr_corruption: fix xattr.h include problems Message-ID: <20190221180913.GB9874@suse.cz> Reply-To: dsterba@suse.cz References: <20190220172005.GJ6477@magnolia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190220172005.GJ6477@magnolia> Sender: fstests-owner@vger.kernel.org To: "Darrick J. Wong" Cc: guaneryu@gmail.com, Holger =?iso-8859-1?Q?Hoffst=E4tte?= , linux-xfs@vger.kernel.org, fstests@vger.kernel.org List-ID: On Wed, Feb 20, 2019 at 09:20:05AM -0800, Darrick J. Wong wrote: > From: Darrick J. Wong > > Apparently newer versions of libattr (which haven't yet been picked up > by Debian or Ubuntu) don't ship xattr.h anymore, because we're supposed > to use the libc version in sys/xattr.h. So do that. > > Signed-off-by: Darrick J. Wong > --- > src/t_attr_corruption.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/t_attr_corruption.c b/src/t_attr_corruption.c > index 1fa5e41f..f26611f9 100644 > --- a/src/t_attr_corruption.c > +++ b/src/t_attr_corruption.c > @@ -27,7 +27,7 @@ > #include > #include > #include > -#include > +#include Works for me, thanks Reviewed-by: David Sterba