From patchwork Thu Feb 21 19:02:28 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 158932 Delivered-To: patch@linaro.org Received: by 2002:a02:48:0:0:0:0:0 with SMTP id 69csp836609jaa; Thu, 21 Feb 2019 11:02:39 -0800 (PST) X-Google-Smtp-Source: AHgI3IanEFkAQPeoxh/rCtGC0hIi4E/aO0o0/H5q99FDUkL7TPdmwZu3d/4Va7/EWoprlmPHn+26 X-Received: by 2002:a17:902:20e9:: with SMTP id v38mr42424plg.250.1550775759125; Thu, 21 Feb 2019 11:02:39 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1550775759; cv=none; d=google.com; s=arc-20160816; b=j/6LxvBQtW8K74sTsg1AyDE0OnPXLWn9jhhwdDwCoEqo53D12kxph6Yj15tcrQ4dD+ vpsQztAFucibaLwLJwEsBEc5HDzA5z3UFm5Aeuj8EdYOPcidhvJdcW1AeaDqzcIxoUi+ 6YRT36HFnDVx3CpPHjwq2z8zMgdoFLBqhjpym14aCmn7ZjF7FlNRcLALjOFqgeDGCB5/ dih1SqRygtgip6vxjRoaBANHQJT8G+M2sPGYD4HHUkOUHn+cQaWU/OuAhWW4PSIUxAnP WU4PYdpBkyQCe5ZBfvRXbzuT9wrvGdmXHbtZzwOQpdA7S18Q4B3NlCyczKsQgKLQsd8s 4HlA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=D2zozjvMNEy+triTSmVgP8rTVhzjGf9I6tsmbI3VKaM=; b=xASbzQAwTrzRpUcauLImbLu0HhTaoYNlalTLYweaBohXFNdBZMBITib+5u8L0DxoYo CPETZv67v0CwYYZqnHXZCyI8mOQT3s4H8+fw/rJgGTUd4Pe7YJ7+6gdlbqLiJbPiCxcK PaqToEYuIXlrv6XKxfnz8F3J0pwGjoploF5rsWq8IVQr7H1aoTAJ+pEwAIkV0pcboZn+ 38U4/zq6G6rY8npQRxsPwL5GwQIYCCEBsl6QxAPq2l/e7nNY3BCvLdmjJjWfef0vW8d0 C0qgRw4g1tfNhVkz28udSNo3oetlbe+Ne7HgvZrheGd+COfYMjYpa9vxbbV22UNH2OVC +xyw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q8si22548994pgc.580.2019.02.21.11.02.38; Thu, 21 Feb 2019 11:02:39 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728511AbfBUTCh (ORCPT + 32 others); Thu, 21 Feb 2019 14:02:37 -0500 Received: from ms.lwn.net ([45.79.88.28]:46488 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725932AbfBUTCg (ORCPT ); Thu, 21 Feb 2019 14:02:36 -0500 Received: from meer.lwn.net (localhost [127.0.0.1]) by ms.lwn.net (Postfix) with ESMTPA id C5C9772D; Thu, 21 Feb 2019 19:02:35 +0000 (UTC) From: Jonathan Corbet To: linux-doc@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Al Viro , axboe@kernel.dk, Jonathan Corbet Subject: [PATCH 0/2] docs: Add some struct file refcounting information Date: Thu, 21 Feb 2019 12:02:28 -0700 Message-Id: <20190221190230.17985-1-corbet@lwn.net> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Al Viro's recent "braindump" on how struct file refcounting works is too good to lose, so let's capture it in Documentation/. There are two changes here: - Clean up the filesystem book, move stuff around, and generally try to create some order here. No text changes other than some connecting text. - Bring in Al's text, with a fair amount of language tweaking and later corrections applied. Hopefully this is just the beginning. Jonathan Corbet (2): docs: Bring some order to filesystem documentation docs: Add struct file refcounting and SCM_RIGHTS mess info Documentation/filesystems/api-summary.rst | 150 ++++++++ Documentation/filesystems/index.rst | 395 ++-------------------- Documentation/filesystems/journalling.rst | 184 ++++++++++ Documentation/filesystems/lifecycles.rst | 357 +++++++++++++++++++ Documentation/filesystems/path-lookup.rst | 15 + Documentation/filesystems/splice.rst | 22 ++ 6 files changed, 753 insertions(+), 370 deletions(-) create mode 100644 Documentation/filesystems/api-summary.rst create mode 100644 Documentation/filesystems/journalling.rst create mode 100644 Documentation/filesystems/lifecycles.rst create mode 100644 Documentation/filesystems/splice.rst -- 2.20.1