From: Goffredo Baroncelli <kreijack@inwind.it>
To: linux-btrfs@vger.kernel.org, Ilya Dryomov <idryomov@gmail.com>
Subject: [BTRFS-PROGS][PATCH 5/7] btrfs filesystem restriper man page added
Date: Wed, 02 Nov 2011 22:23:19 +0100 [thread overview]
Message-ID: <1803378.QLkab4k852@venice> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 3128 bytes --]
Added "btrfs filesystem restriper *" commands to the man page
Ilya,
could you be so kindly to take care of these info for the man page
from now onwards ?
After merging this patch you can see this text in the man page doing:
make man/btrfs.8.in
man man/btrfs.8.in
Don't hesitate to contact me for further information.
Comments are welcome.
BR
G.Baroncelli
Signed-off-by: Goffredo Baroncelli <kreijack@inwind.it>
---
btrfs_cmds.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 76 insertions(+), 3 deletions(-)
diff --git a/btrfs_cmds.c b/btrfs_cmds.c
index 265d2cd..967917e 100644
--- a/btrfs_cmds.c
+++ b/btrfs_cmds.c
@@ -1359,9 +1359,40 @@ static struct option restripe_longopts[] = {
{ 0, 0, 0, 0}
};
-/*
- * [-d [filters]] [-m [filters]] [-s [filters]] [-vf]
- */
+/**** man: btrfs filesystem restripe start
+ *
+ * \Bbtrfs\b \Bfilesystem restripe start\b [-d [filters]] [-m [filters]] [-s [filters]] [-vf] \I<path>\i
+ *
+ * Start restriper.
+ *
+ * Start restriper.
+ *
+ * \B-d\b \Idata\i.
+ *
+ * \B-m\b \Imetadata\i.
+ *
+ * \B-s\b \Isystem\i.
+ *
+ * \B-f\b force.
+ *
+ * \B-v\b verbose.
+ *
+ * \Ifilters\i may be a comma separated list of the following item
+ *
+ * \Bprofile\b=raid0|raid1|raid10|single|dup ( multiple profiles allowed)
+ *
+ * \Busage\b=<nnn>
+ *
+ * \Bdevid\b=<nnn>
+ *
+ * \Bconvert\b=raid0|raid1|radi10|single|dup (only one profile alloweda)
+ *
+ * \Bvrange\b=[start]..[stop]
+ *
+ * \Bdrange\b=[start]..[stop]
+ *
+ ****/
+
int do_restripe(int ac, char **av)
{
int fd;
@@ -1478,6 +1509,16 @@ int do_restripe(int ac, char **av)
return 0;
}
+/**** man: btrfs filesystem restripe cancel
+ *
+ * \Bbtrfs\b \Bfilesystem restripe cancel\b \I<path>\i
+ *
+ * Cancel restriper.
+ *
+ * Cancel restriper.
+ *
+ ****/
+
int do_restripe_cancel(int ac, char **av)
{
int fd;
@@ -1504,6 +1545,16 @@ int do_restripe_cancel(int ac, char **av)
return 0;
}
+/**** man: btrfs filesystem restripe pause
+ *
+ * \Bbtrfs\b \Bfilesystem restripe pause\b \I<path>\i
+ *
+ * Pause restriper.
+ *
+ * Pause restriper.
+ *
+ ****/
+
int do_restripe_pause(int ac, char **av)
{
int fd;
@@ -1530,6 +1581,16 @@ int do_restripe_pause(int ac, char **av)
return 0;
}
+/**** man: btrfs filesystem restripe resume
+ *
+ * \Bbtrfs\b \Bfilesystem restripe resume\b \I<path>\i
+ *
+ * Resume interrupted restripe operation.
+ *
+ * Resume interrupted restripe operation.
+ *
+ ****/
+
int do_restripe_resume(int ac, char **av)
{
int fd;
@@ -1571,6 +1632,18 @@ static struct option restripe_progress_longopts[] = {
{ 0, 0, 0, 0}
};
+/**** man: btrfs filesystem restripe status
+ *
+ * \Bbtrfs\b \Bfilesystem restripe status\b [-v] \I<path>\i
+ *
+ * Show status of running or paused restripe operation.
+ *
+ * Show status of running or paused restripe operation.
+ *
+ * \B-v\b verbose.
+ *
+ ****/
+
int do_restripe_progress(int ac, char **av)
{
int fd;
--
gpg key@ keyserver.linux.it: Goffredo Baroncelli (ghigo) <kreijack@inwind.it>
Key fingerprint = 4769 7E51 5293 D36C 814E C054 BF04 F161 3DC5 0512
[-- Attachment #1.2: send-via-kmail-attach-26955-1320267567-27032.msg --]
[-- Type: text/x-patch, Size: 2422 bytes --]
diff --git a/btrfs_cmds.c b/btrfs_cmds.c
index 265d2cd..967917e 100644
--- a/btrfs_cmds.c
+++ b/btrfs_cmds.c
@@ -1359,9 +1359,40 @@ static struct option restripe_longopts[] = {
{ 0, 0, 0, 0}
};
-/*
- * [-d [filters]] [-m [filters]] [-s [filters]] [-vf]
- */
+/**** man: btrfs filesystem restripe start
+ *
+ * \Bbtrfs\b \Bfilesystem restripe start\b [-d [filters]] [-m [filters]] [-s [filters]] [-vf] \I<path>\i
+ *
+ * Start restriper.
+ *
+ * Start restriper.
+ *
+ * \B-d\b \Idata\i.
+ *
+ * \B-m\b \Imetadata\i.
+ *
+ * \B-s\b \Isystem\i.
+ *
+ * \B-f\b force.
+ *
+ * \B-v\b verbose.
+ *
+ * \Ifilters\i may be a comma separated list of the following item
+ *
+ * \Bprofile\b=raid0|raid1|raid10|single|dup ( multiple profiles allowed)
+ *
+ * \Busage\b=<nnn>
+ *
+ * \Bdevid\b=<nnn>
+ *
+ * \Bconvert\b=raid0|raid1|radi10|single|dup (only one profile alloweda)
+ *
+ * \Bvrange\b=[start]..[stop]
+ *
+ * \Bdrange\b=[start]..[stop]
+ *
+ ****/
+
int do_restripe(int ac, char **av)
{
int fd;
@@ -1478,6 +1509,16 @@ int do_restripe(int ac, char **av)
return 0;
}
+/**** man: btrfs filesystem restripe cancel
+ *
+ * \Bbtrfs\b \Bfilesystem restripe cancel\b \I<path>\i
+ *
+ * Cancel restriper.
+ *
+ * Cancel restriper.
+ *
+ ****/
+
int do_restripe_cancel(int ac, char **av)
{
int fd;
@@ -1504,6 +1545,16 @@ int do_restripe_cancel(int ac, char **av)
return 0;
}
+/**** man: btrfs filesystem restripe pause
+ *
+ * \Bbtrfs\b \Bfilesystem restripe pause\b \I<path>\i
+ *
+ * Pause restriper.
+ *
+ * Pause restriper.
+ *
+ ****/
+
int do_restripe_pause(int ac, char **av)
{
int fd;
@@ -1530,6 +1581,16 @@ int do_restripe_pause(int ac, char **av)
return 0;
}
+/**** man: btrfs filesystem restripe resume
+ *
+ * \Bbtrfs\b \Bfilesystem restripe resume\b \I<path>\i
+ *
+ * Resume interrupted restripe operation.
+ *
+ * Resume interrupted restripe operation.
+ *
+ ****/
+
int do_restripe_resume(int ac, char **av)
{
int fd;
@@ -1571,6 +1632,18 @@ static struct option restripe_progress_longopts[] = {
{ 0, 0, 0, 0}
};
+/**** man: btrfs filesystem restripe status
+ *
+ * \Bbtrfs\b \Bfilesystem restripe status\b [-v] \I<path>\i
+ *
+ * Show status of running or paused restripe operation.
+ *
+ * Show status of running or paused restripe operation.
+ *
+ * \B-v\b verbose.
+ *
+ ****/
+
int do_restripe_progress(int ac, char **av)
{
int fd;
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 190 bytes --]
reply other threads:[~2011-11-02 21:23 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1803378.QLkab4k852@venice \
--to=kreijack@inwind.it \
--cc=idryomov@gmail.com \
--cc=linux-btrfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.