search for: bdqr

Displaying 2 results from an estimated 2 matches for "bdqr".

Did you mean: bdir
2012 Feb 06
0
[PATCH] Btrfs-progs: make scrub IO priority configurable
...54 insertions(+), 8 deletions(-) diff --git a/btrfs.c b/btrfs.c index 1def354..ab9fcee 100644 --- a/btrfs.c +++ b/btrfs.c @@ -131,12 +131,15 @@ static struct Command commands[] = { "The filesystem must be unmounted.\n" }, { do_scrub_start, -1, - "scrub start", "[-Bdqr] <path>|<device>\n" + "scrub start", + "[-Bdqr] [-c ioprio_class -n ioprio_classdata] <path>|<device>\n" "Start a new scrub.", "\n-B do not background\n" "-d stats per device (-B only)\n" "-q quie...
2011 Jul 18
5
[PATCH v3 0/5] btrfs-progs: scrub interface
This is the next patch series for scrub userland tools. Change log v1->v2: - commands now reachable as "btrfs scrub ..." instead of "btrfs filesystem scrub ..." - ability to scrub a single device instead of a whole file system - superfluous command line options removed - resume is now a separate command ("scrub resume") instead of "scrub start -r" -