Return-Path: linux-nfs-owner@vger.kernel.org Received: from fieldses.org ([174.143.236.118]:60928 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750908AbaH0R7X (ORCPT ); Wed, 27 Aug 2014 13:59:23 -0400 Date: Wed, 27 Aug 2014 13:59:10 -0400 From: "J. Bruce Fields" To: bjschuma@netapp.com Cc: linux-nfs@vger.kernel.org Subject: Re: [PATCH 1/3] NFSD: Update error codes Message-ID: <20140827175910.GA13910@fieldses.org> References: <1409152678-7806-1-git-send-email-bjschuma@netapp.com> <1409152678-7806-2-git-send-email-bjschuma@netapp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1409152678-7806-2-git-send-email-bjschuma@netapp.com> Sender: linux-nfs-owner@vger.kernel.org List-ID: On Wed, Aug 27, 2014 at 11:17:56AM -0400, bjschuma@netapp.com wrote: > From: Anna Schumaker > > Recent NFS v4.2 drafts have removed NFS4ERR_METADATA_NOTSUPP and > reassigned the error code to NFS4ERR_UNION_NOTSUPP. And these have no users, so fine. Applying. --b. > > I also add in the NFS4ERR_OFFLOAD_NO_REQS error code. > > Signed-off-by: Anna Schumaker > --- > fs/nfsd/nfsd.h | 2 +- > include/linux/nfs4.h | 3 ++- > 2 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/fs/nfsd/nfsd.h b/fs/nfsd/nfsd.h > index 847daf3..747f3b95 100644 > --- a/fs/nfsd/nfsd.h > +++ b/fs/nfsd/nfsd.h > @@ -251,7 +251,7 @@ void nfsd_lockd_shutdown(void); > #define nfserr_deleg_revoked cpu_to_be32(NFS4ERR_DELEG_REVOKED) > #define nfserr_partner_notsupp cpu_to_be32(NFS4ERR_PARTNER_NOTSUPP) > #define nfserr_partner_no_auth cpu_to_be32(NFS4ERR_PARTNER_NO_AUTH) > -#define nfserr_metadata_notsupp cpu_to_be32(NFS4ERR_METADATA_NOTSUPP) > +#define nfserr_union_notsupp cpu_to_be32(NFS4ERR_UNION_NOTSUPP) > #define nfserr_offload_denied cpu_to_be32(NFS4ERR_OFFLOAD_DENIED) > #define nfserr_wrong_lfs cpu_to_be32(NFS4ERR_WRONG_LFS) > #define nfserr_badlabel cpu_to_be32(NFS4ERR_BADLABEL) > diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h > index a1e3064..79b2a0f 100644 > --- a/include/linux/nfs4.h > +++ b/include/linux/nfs4.h > @@ -235,10 +235,11 @@ enum nfsstat4 { > /* nfs42 */ > NFS4ERR_PARTNER_NOTSUPP = 10088, > NFS4ERR_PARTNER_NO_AUTH = 10089, > - NFS4ERR_METADATA_NOTSUPP = 10090, > + NFS4ERR_UNION_NOTSUPP = 10090, > NFS4ERR_OFFLOAD_DENIED = 10091, > NFS4ERR_WRONG_LFS = 10092, > NFS4ERR_BADLABEL = 10093, > + NFS4ERR_OFFLOAD_NO_REQS = 10094, > }; > > static inline bool seqid_mutating_err(u32 err) > -- > 2.1.0 >