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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7FF9DC433EF for ; Tue, 19 Oct 2021 08:05:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 599E661264 for ; Tue, 19 Oct 2021 08:05:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234950AbhJSIHQ (ORCPT ); Tue, 19 Oct 2021 04:07:16 -0400 Received: from mail.kernel.org ([198.145.29.99]:36238 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234712AbhJSIGk (ORCPT ); Tue, 19 Oct 2021 04:06:40 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id A095C61391; Tue, 19 Oct 2021 08:04:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1634630667; bh=kT+onznJm4uj9/bJWP0tZZgq/f5Io63eILB7+ifUduU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YeUPqY5Y8OiFwXJV3Mq7ZWA6vN14QhvjUMSWrq3a8qGtmcIFtvCRC9i3fWUaH5kiJ VPMrCFw0St084L+L5Pej2L4j9s9jva1U1jaiZM/WymDMJfEMYQCYSSl8CCDuQeE4ep c2/mMqxk8tYWE0ylmSyo1EcFTWsRQrp3/voxgg6JGFlq86aymPqzc1gJAPDPSF6QRm mx6dHG3D4ftDEShdHsmpvkzatbD8uVZO/n7x0Z+4Dqjs2mTiS4jMIPSvLKA0Zjg1vf NCTxBztxT+w4cbummjNk4DMh2kXSPQBVXOe3v6vscAKK+p7bQuk2IYf6Fhx1awHFR7 BAlHybavHE0jw== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1mck6j-001oJg-90; Tue, 19 Oct 2021 09:04:25 +0100 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , "J. Bruce Fields" , Alexander Viro , Jeff Layton , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v3 18/23] fs: remove a comment pointing to the removed mandatory-locking file Date: Tue, 19 Oct 2021 09:04:17 +0100 Message-Id: <887de3a1ecadda3dbfe0adf9df9070f0afa9406c.1634630486.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The mandatory file locking got removed due to its problems, but there's still a comment inside fs/locks.c pointing to the removed doc. Remove it. Fixes: f7e33bdbd6d1 ("fs: remove mandatory file locking support") Signed-off-by: Mauro Carvalho Chehab --- To mailbombing on a large number of people, only mailing lists were C/C on the cover. See [PATCH v3 00/23] at: https://lore.kernel.org/all/cover.1634630485.git.mchehab+huawei@kernel.org/ fs/locks.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/locks.c b/fs/locks.c index d397394633be..94feadcdab4e 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -61,7 +61,6 @@ * * Initial implementation of mandatory locks. SunOS turned out to be * a rotten model, so I implemented the "obvious" semantics. - * See 'Documentation/filesystems/mandatory-locking.rst' for details. * Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996. * * Don't allow mandatory locks on mmap()'ed files. Added simple functions to -- 2.31.1