From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from userp2130.oracle.com ([156.151.31.86]:58924 "EHLO userp2130.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728762AbfDDSBz (ORCPT ); Thu, 4 Apr 2019 14:01:55 -0400 Date: Thu, 4 Apr 2019 11:01:48 -0700 From: "Darrick J. Wong" Subject: Re: [PATCH] scrub: fix typo in unicrash header file Message-ID: <20190404180148.GT5147@magnolia> References: <9e34ab3e-b9ed-6c4c-ce69-97f0f78b9503@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9e34ab3e-b9ed-6c4c-ce69-97f0f78b9503@redhat.com> Sender: linux-xfs-owner@vger.kernel.org List-ID: List-Id: xfs To: Eric Sandeen Cc: linux-xfs On Thu, Apr 04, 2019 at 12:24:40PM -0500, Eric Sandeen wrote: > The no-op #definintion was missing 'fs_' so remained undefined > in the #else case. > > Signed-off-by: Eric Sandeen LGTM, Reviewed-by: Darrick J. Wong --D > --- > > diff --git a/scrub/unicrash.h b/scrub/unicrash.h > index 85fcabc..fb8f5f7 100644 > --- a/scrub/unicrash.h > +++ b/scrub/unicrash.h > @@ -28,7 +28,7 @@ bool unicrash_check_fs_label(struct unicrash *uc, const char *descr, > #else > # define unicrash_dir_init(u, c, b) (true) > # define unicrash_xattr_init(u, c, b) (true) > -# define unicrash_label_init(u, c) (true) > +# define unicrash_fs_label_init(u, c) (true) > # define unicrash_free(u) do {(u) = (u);} while (0) > # define unicrash_check_dir_name(u, d, n) (true) > # define unicrash_check_xattr_name(u, d, n) (true) >