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=-3.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED, 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 6C6E2C10F13 for ; Thu, 11 Apr 2019 23:18:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2EBC9218A6 for ; Thu, 11 Apr 2019 23:18:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555024712; bh=r8vJkvZsUtv33WWrQJuuqdeY1xSFYcg8RgNhAW1uN/w=; h=From:To:Subject:Date:List-ID:From; b=RPWteuKC7uTLdH5KR+pCu6fb557NvLXYNcRL36BLBOYomiLL4O9vscefC+yIhyBek FDHQ1kC9uowJkME/QAv9N3KWYCv7kZSLMcJo9i3bTUktk/H1M1hC8DpuZ+JQn0DyYq Vg3OWnwA+a8gznTQ2HpjRDanCMh6FEXaTzCgyOxo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726770AbfDKXSb (ORCPT ); Thu, 11 Apr 2019 19:18:31 -0400 Received: from mail.kernel.org ([198.145.29.99]:32932 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726646AbfDKXSb (ORCPT ); Thu, 11 Apr 2019 19:18:31 -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 B4CA320850; Thu, 11 Apr 2019 23:18:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555024710; bh=r8vJkvZsUtv33WWrQJuuqdeY1xSFYcg8RgNhAW1uN/w=; h=From:To:Subject:Date:From; b=NDUf3ZhJw4rKs+TB2LzDIenNi5gNiFScHMGCoWjMxj/0YX99Y6J7xZ9VHGLmCzlqD +c8SaPZvPJzPWYK3j8rSBQ7RFqUDvFhLlu8jucnNSP+5Kd+2J+rq4fBm7eI83L6Ld2 7l6jZwhw5ZC5Tfhi1oFh3BxD9Sk/FGZUZJZEzgjA= From: Eric Biggers To: linux-fsdevel@vger.kernel.org, Al Viro Subject: [PATCH 0/4] vfs: update ->get_link() related documentation Date: Thu, 11 Apr 2019 16:16:26 -0700 Message-Id: <20190411231630.50177-1-ebiggers@kernel.org> X-Mailer: git-send-email 2.21.0.392.gf8f6787159e-goog 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 Update the documentation as per the discussion at https://marc.info/?t=155485312800001&r=1. Eric Biggers (4): Documentation/filesystems/vfs.txt: remove bogus "Last updated" date Documentation/filesystems/vfs.txt: document how ->i_link works Documentation/filesystems/Locking: fix ->get_link() prototype libfs: document simple_get_link() Documentation/filesystems/Locking | 2 +- Documentation/filesystems/vfs.txt | 8 ++++++-- fs/libfs.c | 14 ++++++++++++++ 3 files changed, 21 insertions(+), 3 deletions(-) -- 2.21.0.392.gf8f6787159e-goog