linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Documentation: filesystems: add new btrfs mount options
@ 2013-11-20 14:05 David Sterba
  2013-11-21  8:44 ` Stefan Behrens
  2013-11-21 16:48 ` [PATCH 1/2 v2] " David Sterba
  0 siblings, 2 replies; 4+ messages in thread
From: David Sterba @ 2013-11-20 14:05 UTC (permalink / raw)
  To: linux-btrfs; +Cc: chris.mason, David Sterba, linux-doc

Two new options were added in 3.12: commit and rescan_uuid_tree

CC: linux-doc@vger.kernel.org
Signed-off-by: David Sterba <dsterba@suse.cz>
---
 Documentation/filesystems/btrfs.txt | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/Documentation/filesystems/btrfs.txt b/Documentation/filesystems/btrfs.txt
index 9dae59407437..3744ec373db9 100644
--- a/Documentation/filesystems/btrfs.txt
+++ b/Documentation/filesystems/btrfs.txt
@@ -70,6 +70,12 @@ Unless otherwise specified, all options default to off.
 
 	See comments at the top of fs/btrfs/check-integrity.c for more info.
 
+  commit=<seconds>
+	Set the interval of periodic commit, 30 seconds by default. Higher
+	values defer data being synced to permanent storage with obvious
+	consequences when the system crashes. The upper bound is not forced,
+	but a warning is printed if it's more than 300 seconds (5 minutes).
+
   compress
   compress=<type>
   compress-force
@@ -154,7 +160,11 @@ Unless otherwise specified, all options default to off.
 	Currently this scans a list of several previous tree roots and tries to 
 	use the first readable.
 
- skip_balance
+  rescan_uuid_tree
+	Force check and rebuild procedure of the UUID tree. This should not be
+	normally be needed.
+
+  skip_balance
 	Skip automatic resume of interrupted balance operation after mount.
 	May be resumed with "btrfs balance resume."
 
-- 
1.8.4.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] Documentation: filesystems: add new btrfs mount options
  2013-11-20 14:05 [PATCH 1/2] Documentation: filesystems: add new btrfs mount options David Sterba
@ 2013-11-21  8:44 ` Stefan Behrens
  2013-11-21 16:48 ` [PATCH 1/2 v2] " David Sterba
  1 sibling, 0 replies; 4+ messages in thread
From: Stefan Behrens @ 2013-11-21  8:44 UTC (permalink / raw)
  To: David Sterba, linux-btrfs; +Cc: chris.mason, linux-doc

On Wed, 20 Nov 2013 15:05:51 +0100, David Sterba wrote:
> Two new options were added in 3.12: commit and rescan_uuid_tree
> 
> CC: linux-doc@vger.kernel.org
> Signed-off-by: David Sterba <dsterba@suse.cz>
> ---
>  Documentation/filesystems/btrfs.txt | 12 +++++++++++-
>  1 file changed, 11 insertions(+), 1 deletion(-)
> 
> diff --git a/Documentation/filesystems/btrfs.txt b/Documentation/filesystems/btrfs.txt
> index 9dae59407437..3744ec373db9 100644
> --- a/Documentation/filesystems/btrfs.txt
> +++ b/Documentation/filesystems/btrfs.txt
[...]
> - skip_balance
> +  rescan_uuid_tree
> +	Force check and rebuild procedure of the UUID tree. This should not be
> +	normally be needed.

"be" "be" twice is too much?



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2 v2] Documentation: filesystems: add new btrfs mount options
  2013-11-20 14:05 [PATCH 1/2] Documentation: filesystems: add new btrfs mount options David Sterba
  2013-11-21  8:44 ` Stefan Behrens
@ 2013-11-21 16:48 ` David Sterba
  2013-11-21 16:53   ` Chris Mason
  1 sibling, 1 reply; 4+ messages in thread
From: David Sterba @ 2013-11-21 16:48 UTC (permalink / raw)
  To: linux-btrfs; +Cc: chris.mason, David Sterba, linux-doc

Two new options were added in 3.12: commit and rescan_uuid_tree

CC: linux-doc@vger.kernel.org
Signed-off-by: David Sterba <dsterba@suse.cz>
---
v2: fix typo pointed out by Stefan

 Documentation/filesystems/btrfs.txt | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/Documentation/filesystems/btrfs.txt b/Documentation/filesystems/btrfs.txt
index 9dae59407437..81aaf1c1bbdc 100644
--- a/Documentation/filesystems/btrfs.txt
+++ b/Documentation/filesystems/btrfs.txt
@@ -70,6 +70,12 @@ Unless otherwise specified, all options default to off.
 
 	See comments at the top of fs/btrfs/check-integrity.c for more info.
 
+  commit=<seconds>
+	Set the interval of periodic commit, 30 seconds by default. Higher
+	values defer data being synced to permanent storage with obvious
+	consequences when the system crashes. The upper bound is not forced,
+	but a warning is printed if it's more than 300 seconds (5 minutes).
+
   compress
   compress=<type>
   compress-force
@@ -154,7 +160,11 @@ Unless otherwise specified, all options default to off.
 	Currently this scans a list of several previous tree roots and tries to 
 	use the first readable.
 
- skip_balance
+  rescan_uuid_tree
+	Force check and rebuild procedure of the UUID tree. This should not be
+	normally needed.
+
+  skip_balance
 	Skip automatic resume of interrupted balance operation after mount.
 	May be resumed with "btrfs balance resume."
 
-- 
1.8.4.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2 v2] Documentation: filesystems: add new btrfs mount options
  2013-11-21 16:48 ` [PATCH 1/2 v2] " David Sterba
@ 2013-11-21 16:53   ` Chris Mason
  0 siblings, 0 replies; 4+ messages in thread
From: Chris Mason @ 2013-11-21 16:53 UTC (permalink / raw)
  To: David Sterba, linux-btrfs; +Cc: David Sterba, linux-doc

Quoting David Sterba (2013-11-21 11:48:03)
> Two new options were added in 3.12: commit and rescan_uuid_tree
> 
> CC: linux-doc@vger.kernel.org
> Signed-off-by: David Sterba <dsterba@suse.cz>
> ---
> v2: fix typo pointed out by Stefan

You just caught me before the pull request.  V1 was already in
for-linus, so I rebased this one in.

-chris

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-11-21 16:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-20 14:05 [PATCH 1/2] Documentation: filesystems: add new btrfs mount options David Sterba
2013-11-21  8:44 ` Stefan Behrens
2013-11-21 16:48 ` [PATCH 1/2 v2] " David Sterba
2013-11-21 16:53   ` Chris Mason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).