From patchwork Fri Aug 12 02:47:39 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Kent X-Patchwork-Id: 9276271 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 77E346022E for ; Fri, 12 Aug 2016 02:51:54 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6AA242880A for ; Fri, 12 Aug 2016 02:51:54 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5F6282880C; Fri, 12 Aug 2016 02:51:54 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0BB3B2880A for ; Fri, 12 Aug 2016 02:51:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752212AbcHLCro (ORCPT ); Thu, 11 Aug 2016 22:47:44 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:55352 "EHLO out2-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751443AbcHLCrn (ORCPT ); Thu, 11 Aug 2016 22:47:43 -0400 Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id E93EB203E2; Thu, 11 Aug 2016 22:47:41 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute7.internal (MEProxy); Thu, 11 Aug 2016 22:47:42 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=themaw.net; h=cc :content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=jvJo6CURePcEHR3O3bo9nFC7dXM=; b=Dl19A/ maJ9SG/+fc09r4nUcj3gVwJChJzMHu6Iav15ESQ4s/MnpW3v0T/m5P9tzN/KIV8C YgpKJG/3PHd/wiPi2gRex5olGJ2wz41bquZ2xMAALdLqGTxSR3sLvGH6RK/ijoNl 4cQDq7NLhP6Xz7S+h4MGDJfXesh5OK/NjNBRc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=jvJo6CURePcEHR3 O3bo9nFC7dXM=; b=Zk7DTH2ROJGURroXlStEaH6NKWtPnNtXIMRHqsw8Y6I31Wh M+zNQhG5GXbb90JlFeOZVDR1ExjuqDHDE/46vvQ3wD0MIruXH2F18kCrDrkY7ulD ja+6FZtRuIxxd0UoN6b1Kqqa+sg+t5kkoTOJXU8n836OeYwrDjlZRMdljDnE= X-Sasl-enc: t1jIWfvMigFaH0eI723fugEld5lEMhmoSH/3BNhmVMQS 1470970061 Received: from pluto.themaw.net (58-7-183-14.dyn.iinet.net.au [58.7.183.14]) by mail.messagingengine.com (Postfix) with ESMTPA id 623C4CCD84; Thu, 11 Aug 2016 22:47:41 -0400 (EDT) Received: from pluto.themaw.net (localhost [127.0.0.1]) by pluto.themaw.net (Postfix) with ESMTP id 5CD9DA0078; Fri, 12 Aug 2016 10:47:39 +0800 (AWST) Subject: [PATCH 02/18] autofs: Drop unnecessary extern in autofs_i.h From: Ian Kent To: Andrew Morton Cc: linux-fsdevel , Tomohiro Kusumi , autofs mailing list , Kernel Mailing List Date: Fri, 12 Aug 2016 10:47:39 +0800 Message-ID: <20160812024739.12352.99354.stgit@pluto.themaw.net> In-Reply-To: <20160812024734.12352.17122.stgit@pluto.themaw.net> References: <20160812024734.12352.17122.stgit@pluto.themaw.net> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Tomohiro Kusumi autofs4_kill_sb() doesn't need to be declared as extern, and no other functions in .h are explicitly declared as extern. Signed-off-by: Tomohiro Kusumi Signed-off-by: Ian Kent --- fs/autofs4/autofs_i.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/fs/autofs4/autofs_i.h b/fs/autofs4/autofs_i.h index a439548..eb87055 100644 --- a/fs/autofs4/autofs_i.h +++ b/fs/autofs4/autofs_i.h @@ -271,4 +271,4 @@ static inline void autofs4_del_expiring(struct dentry *dentry) } } -extern void autofs4_kill_sb(struct super_block *); +void autofs4_kill_sb(struct super_block *);