From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 35CBBC282CE for ; Thu, 11 Apr 2019 23:18:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F018421872 for ; Thu, 11 Apr 2019 23:18:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555024715; bh=BMuc8dves8EqlQlm2Lde5OeL9OiM7R1Z0KTaP7erRIk=; h=From:To:Subject:Date:In-Reply-To:References:List-ID:From; b=OeVzTAuyO0f0cY1sbT+kJ8GzsGgSvlEqs5r8ZmI9SrQla4mwhYgkVDTC5ErbR4b3g up2JRXuGs4XlKfChnkKrp3hVd7LywmbOlKiNnJ9prQTwE4wQcGkiOok847UpVGjtqH VYNDpnjnN1mshqMyBd8PzCCrORcJcj6rglMSGk7A= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726788AbfDKXSc (ORCPT ); Thu, 11 Apr 2019 19:18:32 -0400 Received: from mail.kernel.org ([198.145.29.99]:32942 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726646AbfDKXSc (ORCPT ); Thu, 11 Apr 2019 19:18:32 -0400 Received: from ebiggers-linuxstation.mtv.corp.google.com (unknown [104.132.1.77]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6BB4F2186A; Thu, 11 Apr 2019 23:18:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555024711; bh=BMuc8dves8EqlQlm2Lde5OeL9OiM7R1Z0KTaP7erRIk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=aw5vrd2ZADD/SmLMgmyJjMti7eh2h9wHDuG8OTTK/+q6Y1UQwMTGsnY14C8Tl7ORH u1cpwdZB7nBV10BygWcTp7u8V4EdRkj4T65MG3BaCZKnjCDFpi4fRE8MYjdlq1KqFe iqBatMPcjKwi/19DGQkvXouKhGSD/YTcIF9YoN1E= From: Eric Biggers To: linux-fsdevel@vger.kernel.org, Al Viro Subject: [PATCH 3/4] Documentation/filesystems/Locking: fix ->get_link() prototype Date: Thu, 11 Apr 2019 16:16:29 -0700 Message-Id: <20190411231630.50177-4-ebiggers@kernel.org> X-Mailer: git-send-email 2.21.0.392.gf8f6787159e-goog In-Reply-To: <20190411231630.50177-1-ebiggers@kernel.org> References: <20190411231630.50177-1-ebiggers@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org From: Eric Biggers Signed-off-by: Eric Biggers --- Documentation/filesystems/Locking | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index efea228ccd8af..428455bf9c97a 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking @@ -52,7 +52,7 @@ prototypes: int (*rename) (struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); int (*readlink) (struct dentry *, char __user *,int); - const char *(*get_link) (struct dentry *, struct inode *, void **); + const char *(*get_link) (struct dentry *, struct inode *, struct delayed_call *); void (*truncate) (struct inode *); int (*permission) (struct inode *, int, unsigned int); int (*get_acl)(struct inode *, int); -- 2.21.0.392.gf8f6787159e-goog