From patchwork Sun Nov 13 08:29:27 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rical Jasan X-Patchwork-Id: 81954 Delivered-To: patch@linaro.org Received: by 10.140.97.165 with SMTP id m34csp525263qge; Sun, 13 Nov 2016 00:30:05 -0800 (PST) X-Received: by 10.99.129.200 with SMTP id t191mr18708771pgd.180.1479025805777; Sun, 13 Nov 2016 00:30:05 -0800 (PST) Return-Path: Received: from sourceware.org (server1.sourceware.org. [209.132.180.131]) by mx.google.com with ESMTPS id s3si17812455pfe.68.2016.11.13.00.30.05 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 13 Nov 2016 00:30:05 -0800 (PST) Received-SPF: pass (google.com: domain of libc-alpha-return-74699-patch=linaro.org@sourceware.org designates 209.132.180.131 as permitted sender) client-ip=209.132.180.131; Authentication-Results: mx.google.com; dkim=pass header.i=@sourceware.org; spf=pass (google.com: domain of libc-alpha-return-74699-patch=linaro.org@sourceware.org designates 209.132.180.131 as permitted sender) smtp.mailfrom=libc-alpha-return-74699-patch=linaro.org@sourceware.org DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=OKeoi0YfyJV3Zd4ThFfU1XpeguEiD FbxAPBQax0XQnzR6ZdoW6zor2WYMlfK38ZN9PbhRpkA42hRzEoYlOngX5xaOTIGK o06dHcMZkL3oV0VRtn8JSRWJroCxKHuREIvPrpHGIgs/Uc19wM7uEg5bx56XwFHj HCbXSfeDWkymMg= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=/mVOQ9YhAGsa7bc64ubudIJ8Rhg=; b=juF L7s3wwmSN69u0JjcySjB7Dxp9KzT7T+7GnB+nbvR9z24Kz1PFUIloQTTkf9DvMix /q+zSEPjmX9oDdDiV+vQzqzOAlbU+/+aXynKS7fdnWwndWxWo+/oNEODz7LIBtOz Ob7xe66aQ6l8J6bxgX6ZpMCb0kQOAajwyFbMiST8= Received: (qmail 129202 invoked by alias); 13 Nov 2016 08:29:47 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 129146 invoked by uid 89); 13 Nov 2016 08:29:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.4 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=non-existent X-HELO: mail.pacific.net From: Rical Jasan To: libc-alpha@sourceware.org Subject: [PATCH] manual: Remove non-existent mount options S_IMMUTABLE and S_APPEND. Date: Sun, 13 Nov 2016 00:29:27 -0800 Message-Id: <20161113082927.27803-1-ricaljasan@pacific.net> MIME-Version: 1.0 X-Null-Tag: d4574ce21c7bca64b0e7152ddf55a1e7 manual: Remove non-existent mount options S_IMMUTABLE and S_APPEND. These were removed in 2010, while addressing [BZ #11235]. This commit removes their documentation from the manual. * manual/sysinfo.texi (S_APPEND): Undocument. (S_IMMUTABLE): Likewise. --- manual/sysinfo.texi | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/manual/sysinfo.texi b/manual/sysinfo.texi index 65ee7cf..66b7f3d 100644 --- a/manual/sysinfo.texi +++ b/manual/sysinfo.texi @@ -930,20 +930,6 @@ This bit on specifies that no writing to the filesystem shall be allowed while it is mounted. This cannot be overridden by @code{ioctl}. This option is available on nearly all filesystems. -@item S_IMMUTABLE -This bit on specifies that no writing to the files in the filesystem -shall be allowed while it is mounted. This can be overridden for a -particular file access by a properly privileged call to @code{ioctl}. -This option is a relatively new invention and is not available on many -filesystems. - -@item S_APPEND -This bit on specifies that the only file writing that shall be allowed -while the filesystem is mounted is appending. Some filesystems allow -this to be overridden for a particular process by a properly privileged -call to @code{ioctl}. This is a relatively new invention and is not -available on many filesystems. - @item MS_NOSUID This bit on specifies that Setuid and Setgid permissions on files in the filesystem shall be ignored while it is mounted.