From patchwork Wed Sep 26 19:05:31 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Darrick Wong X-Patchwork-Id: 975359 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-ext4-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none) header.from=oracle.com Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=oracle.com header.i=@oracle.com header.b="k9t6ys3N"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 42L6pd6yf7z9s2P for ; Thu, 27 Sep 2018 05:05:45 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726354AbeI0BT7 (ORCPT ); Wed, 26 Sep 2018 21:19:59 -0400 Received: from aserp2120.oracle.com ([141.146.126.78]:42958 "EHLO aserp2120.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726127AbeI0BT7 (ORCPT ); Wed, 26 Sep 2018 21:19:59 -0400 Received: from pps.filterd (aserp2120.oracle.com [127.0.0.1]) by aserp2120.oracle.com (8.16.0.22/8.16.0.22) with SMTP id w8QJ4DZ9164678; Wed, 26 Sep 2018 19:05:34 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=subject : from : to : cc : date : message-id : mime-version : content-type : content-transfer-encoding; s=corp-2018-07-02; bh=4gH2tFNRIOymMxPO+13ZuLmyUEB2mD+LRtuOpFwJ5h4=; b=k9t6ys3NAPfjhjTFSpLgyyMAX91OoYs79aODXywaQl7xzm/meOIioakBYd4uLdhP5EBD BCvDusYJioDpHmsHXyNN/Fr5vmmXrPZ/XUtT9c8nshV2ykvvP7cdnMcbzHDjti0AxTvI 4xJJ9VGJSSFxfns+xRFVHIjoe0v2maLrx7IqiEBCrkOsUDakzl5IsEPEbBsGrO/p9W0P 6e2ts7jJbVFPdkgezH9+vYDdrCqqD2rPeIUA83RLlLvOTSxD3L5z4KzTHN2lFw+SNgqm Ukj+rZb4kz5eWidVcgZD5k4jlcmpJKxSc0io1BSK5y4o7TYrCGz1k9miW/eUHXyfZg8I Xw== Received: from userv0022.oracle.com (userv0022.oracle.com [156.151.31.74]) by aserp2120.oracle.com with ESMTP id 2mndppmjmk-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 26 Sep 2018 19:05:34 +0000 Received: from userv0121.oracle.com (userv0121.oracle.com [156.151.31.72]) by userv0022.oracle.com (8.14.4/8.14.4) with ESMTP id w8QJ5XIp019809 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 26 Sep 2018 19:05:33 GMT Received: from abhmp0018.oracle.com (abhmp0018.oracle.com [141.146.116.24]) by userv0121.oracle.com (8.14.4/8.13.8) with ESMTP id w8QJ5Wcj002965; Wed, 26 Sep 2018 19:05:33 GMT Received: from localhost (/67.169.218.210) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 26 Sep 2018 12:05:32 -0700 Subject: [PATCH 0/3] ext4: documentation fixes From: "Darrick J. Wong" To: tytso@mit.edu, darrick.wong@oracle.com Cc: linux-ext4@vger.kernel.org Date: Wed, 26 Sep 2018 12:05:31 -0700 Message-ID: <153798873160.29896.3647029167086263735.stgit@magnolia> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=nai engine=5900 definitions=9028 signatures=668707 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 mlxscore=0 mlxlogscore=999 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1807170000 definitions=main-1809260178 Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org Hi all, This series fixes some problems with building the in-kernel ext4 documentation. Specifically, it re-enables building a pdf containing only the ext4 documentation; fixes some table column width problems; and converts the mount option / ioctl / sysfs tunable documentation to use indented paragraphs instead of tables. That last change makes it easier to maintain the rst text and uses whitespace more efficiently in the output. I've built the docs and put them here, in case you hate reading rst: https://djwong.org/docs/kdoc/filesystems/ext4/index.html The patchset should apply cleanly against 4.19-rc5. Comments and questions are, as always, welcome. --D