From patchwork Fri May 23 12:56:16 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kinglong Mee X-Patchwork-Id: 4232621 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 308C7BF90B for ; Fri, 23 May 2014 12:56:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 70026201DC for ; Fri, 23 May 2014 12:56:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A7F40203A9 for ; Fri, 23 May 2014 12:56:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752631AbaEWM4i (ORCPT ); Fri, 23 May 2014 08:56:38 -0400 Received: from mail-qc0-f178.google.com ([209.85.216.178]:60971 "EHLO mail-qc0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751454AbaEWM4h (ORCPT ); Fri, 23 May 2014 08:56:37 -0400 Received: by mail-qc0-f178.google.com with SMTP id l6so8035388qcy.9 for ; Fri, 23 May 2014 05:56:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; bh=UwEB12J503i8Ev+gw4szszusNH+Nahi47qIPQICoz8E=; b=NR+X19RW98Km5vObrOIGfjPKpQR9tBBG0STM3MHmyd3ASN7dA3CA/jwDsTM3r/1jE2 jWC2CVkm4si53KExNxUmEWJTwROuOOQX+HZ14RoGwdKeM1odb7rQUevG9H+dF3DL0A/Z /4k7KxannT6/MGn0sGvabzkKl4yWkvebI0BFjO3q9HIDUC5na2XsCsRAsiNi/msnUX7x MJwo5+SINyrv8RDCvQ5uflgnQH9Mpz5nvWUytmfdVqsK2i/NejW7IWFaG/jCEbE5NeB4 /JhE6vXjEZDwRUFUU1xhPbk/L8QNt5rNXi4xq+LJY078GfmeRgfqHNvOSUaGHquRQK+8 5zVA== X-Received: by 10.224.10.195 with SMTP id q3mr6153028qaq.65.1400849796742; Fri, 23 May 2014 05:56:36 -0700 (PDT) Received: from [192.168.31.158] ([118.117.113.227]) by mx.google.com with ESMTPSA id l61sm1895747qge.11.2014.05.23.05.56.32 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 23 May 2014 05:56:36 -0700 (PDT) Message-ID: <537F4570.8070903@gmail.com> Date: Fri, 23 May 2014 20:56:16 +0800 From: Kinglong Mee User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: "J. Bruce Fields" CC: Linux NFS Mailing List , kinglongmee@gmail.com Subject: [PATCH 5/5] NFSD: Add missing comment of "expiry" in expkey_parse() 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.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham 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 Signed-off-by: Kinglong Mee --- fs/nfsd/export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index 39d15ce..dd32f3e 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c @@ -68,7 +68,7 @@ static struct svc_expkey *svc_expkey_lookup(struct cache_detail *cd, struct svc_ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen) { - /* client fsidtype fsid [path] */ + /* client fsidtype fsid expiry [path] */ char *buf; int len; struct auth_domain *dom = NULL;