From patchwork Mon Mar 7 15:02:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Howells X-Patchwork-Id: 615801 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p27F36UI007177 for ; Mon, 7 Mar 2011 15:03:06 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754168Ab1CGPCW (ORCPT ); Mon, 7 Mar 2011 10:02:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39629 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754161Ab1CGPCU (ORCPT ); Mon, 7 Mar 2011 10:02:20 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p27F2Cqd031947 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 7 Mar 2011 10:02:12 -0500 Received: from warthog.procyon.org.uk ([10.3.112.15]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p27F29HU010479; Mon, 7 Mar 2011 10:02:10 -0500 Organization: Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903 From: David Howells Subject: [PATCH 1/2] Define ENOAUTHSERVICE to indicate "Authentication service unavailable" To: linux-security-module@vger.kernel.org, keyrings@linux-nfs.org, linux-nfs@vger.kernel.org, linux-cifs@vger.kernel.org, linux-afs@lists.infradead.org, linux-api@vger.kernel.org Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org Date: Mon, 07 Mar 2011 15:02:08 +0000 Message-ID: <20110307150208.28218.89348.stgit@warthog.procyon.org.uk> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 07 Mar 2011 15:03:07 +0000 (UTC) diff --git a/arch/alpha/include/asm/errno.h b/arch/alpha/include/asm/errno.h index 98099bd..519663c 100644 --- a/arch/alpha/include/asm/errno.h +++ b/arch/alpha/include/asm/errno.h @@ -121,5 +121,6 @@ #define ENOTRECOVERABLE 137 /* State not recoverable */ #define ERFKILL 138 /* Operation not possible due to RF-kill */ +#define ENOAUTHSERVICE 139 /* Authentication service not available */ #endif diff --git a/arch/mips/include/asm/errno.h b/arch/mips/include/asm/errno.h index a0efc73..5fa7fed 100644 --- a/arch/mips/include/asm/errno.h +++ b/arch/mips/include/asm/errno.h @@ -120,6 +120,7 @@ #define ENOTRECOVERABLE 166 /* State not recoverable */ #define ERFKILL 167 /* Operation not possible due to RF-kill */ +#define ENOAUTHSERVICE 168 /* Authentication service not available */ #define EDQUOT 1133 /* Quota exceeded */ diff --git a/arch/parisc/include/asm/errno.h b/arch/parisc/include/asm/errno.h index 9992abd..6a19346 100644 --- a/arch/parisc/include/asm/errno.h +++ b/arch/parisc/include/asm/errno.h @@ -121,5 +121,6 @@ #define ENOTRECOVERABLE 255 /* State not recoverable */ #define ERFKILL 256 /* Operation not possible due to RF-kill */ +#define ENOAUTHSERVICE 257 /* Authentication service not available */ #endif diff --git a/arch/sparc/include/asm/errno.h b/arch/sparc/include/asm/errno.h index 4e2bc49..ab3a26a 100644 --- a/arch/sparc/include/asm/errno.h +++ b/arch/sparc/include/asm/errno.h @@ -111,5 +111,6 @@ #define ENOTRECOVERABLE 133 /* State not recoverable */ #define ERFKILL 134 /* Operation not possible due to RF-kill */ +#define ENOAUTHSERVICE 135 /* Authentication service not available */ #endif diff --git a/include/asm-generic/errno.h b/include/asm-generic/errno.h index 28cc03b..bcf1908 100644 --- a/include/asm-generic/errno.h +++ b/include/asm-generic/errno.h @@ -107,5 +107,6 @@ #define ENOTRECOVERABLE 131 /* State not recoverable */ #define ERFKILL 132 /* Operation not possible due to RF-kill */ +#define ENOAUTHSERVICE 133 /* Authentication service not available */ #endif