From patchwork Sun Apr 16 17:20:02 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans van Kranenburg X-Patchwork-Id: 9683043 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 076D0602CB for ; Sun, 16 Apr 2017 17:20:25 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E492227D4A for ; Sun, 16 Apr 2017 17:20:24 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D72C327EED; Sun, 16 Apr 2017 17:20:24 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 040B227D4A for ; Sun, 16 Apr 2017 17:20:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756312AbdDPRUP (ORCPT ); Sun, 16 Apr 2017 13:20:15 -0400 Received: from smtp.dpl.mendix.net ([83.96.177.10]:45159 "EHLO smtp.dpl.mendix.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756167AbdDPRUO (ORCPT ); Sun, 16 Apr 2017 13:20:14 -0400 Received: from blackbox.mgt.dpl.mendix.net (blackbox.bofh.hq.mendix.net [IPv6:2001:828:13c8:10b::c]) by smtp.dpl.mendix.net (Postfix) with ESMTP id 85EFB2003E; Sun, 16 Apr 2017 19:20:10 +0200 (CEST) From: Hans van Kranenburg To: linux-btrfs@vger.kernel.org Cc: Hans van Kranenburg Subject: [PATCH] btrfs-progs: docs: Fix newlines for man btrfstune Date: Sun, 16 Apr 2017 19:20:02 +0200 Message-Id: <20170416172002.19261-1-hans.van.kranenburg@mendix.com> X-Mailer: git-send-email 2.11.0 Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP A bunch of newlines were missing, which resulted in only -S and -r to show as option after xmlto is used to convert the documentation to a man page. The rest of the options would end up being appended to the explanation of -r. Signed-off-by: Hans van Kranenburg --- By the way, I have no idea why -r was showing up in the first place, because it also had no newline before it. I'm no asciidoc expert, but with consistent newlines, at least for me the resulting man page does contain all options nicely listed. Documentation/btrfstune.asciidoc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Documentation/btrfstune.asciidoc b/Documentation/btrfstune.asciidoc index 04295ee3..bf4f495a 100644 --- a/Documentation/btrfstune.asciidoc +++ b/Documentation/btrfstune.asciidoc @@ -29,11 +29,13 @@ OPTIONS Enable seeding on a given device. Value 1 will enable seeding, 0 will disable it. + A seeding filesystem is forced to be mounted read-only. A new device can be added to the filesystem and will capture all writes keeping the seeding device intact. + -r:: (since kernel: 3.7) + Enable extended inode refs (hardlink limit per file in a directory is 65536), enabled by mkfs feature 'extref'. + -x:: (since kernel: 3.10) + @@ -43,17 +45,21 @@ enabled by mkfs feature 'skinny-metadata'. All newly created extents will use the new representation. To completely switch the entire filesystem, run a full balance of the metadata. Please refer to `btrfs-balance`(8). + -n:: (since kernel: 3.14) + Enable no-holes feature (more efficient representation of file holes), enabled by mkfs feature 'no-holes'. + -f:: Allow dangerous changes, e.g. clear the seeding flag or change fsid. Make sure that you are aware of the dangers. + -u:: Change fsid to a randomly generated UUID or continue previous fsid change operation in case it was interrupted. + -U :: Change fsid to 'UUID'. +