From patchwork Tue Oct 22 14:21:16 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Adamson X-Patchwork-Id: 3083051 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id AE41CBF924 for ; Tue, 22 Oct 2013 14:21:49 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 301242026D for ; Tue, 22 Oct 2013 14:21:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 132422030D for ; Tue, 22 Oct 2013 14:21:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752707Ab3JVOV2 (ORCPT ); Tue, 22 Oct 2013 10:21:28 -0400 Received: from mx12.netapp.com ([216.240.18.77]:60003 "EHLO mx12.netapp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753393Ab3JVOV0 (ORCPT ); Tue, 22 Oct 2013 10:21:26 -0400 X-IronPort-AV: E=Sophos;i="4.93,548,1378882800"; d="scan'208";a="103748347" Received: from vmwexceht01-prd.hq.netapp.com ([10.106.76.239]) by mx12-out.netapp.com with ESMTP; 22 Oct 2013 07:21:26 -0700 Received: from smtp2.corp.netapp.com (10.57.159.114) by VMWEXCEHT01-PRD.hq.netapp.com (10.106.76.239) with Microsoft SMTP Server id 14.3.123.3; Tue, 22 Oct 2013 07:21:25 -0700 Received: from fc19-2.androsad.fake (vpn2ntap-399080.vpn.netapp.com [10.55.72.146]) by smtp2.corp.netapp.com (8.13.1/8.13.1/NTAP-1.6) with ESMTP id r9MELKV5023414; Tue, 22 Oct 2013 07:21:24 -0700 (PDT) From: To: CC: , Andy Adamson Subject: [PATCH Version 2 5/5] SUNRPC add EKEYEXPIRED case to call_bind_status Date: Tue, 22 Oct 2013 10:21:16 -0400 Message-ID: <1382451676-2963-6-git-send-email-andros@netapp.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1382451676-2963-1-git-send-email-andros@netapp.com> References: <1382451676-2963-1-git-send-email-andros@netapp.com> MIME-Version: 1.0 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Andy Adamson Signed-off-by: Andy Adamson --- net/sunrpc/clnt.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 7352aef..8a5c5b6 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -1622,6 +1622,11 @@ call_bind_status(struct rpc_task *task) dprintk("RPC: %5u unrecognized remote rpcbind service\n", task->tk_pid); break; + case -EKEYEXPIRED: + /* credential key has expired */ + dprintk("RPC: %5u Credential key has expired\n", + task->tk_pid); + break; case -EPROTONOSUPPORT: dprintk("RPC: %5u remote rpcbind version unavailable, retrying\n", task->tk_pid);