search for: print_raw

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

Did you mean: print_r
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" -
2012 Feb 06
0
[PATCH] Btrfs-progs: make scrub IO priority configurable
...etopt(argc, argv, "BdqrR")) != -1) { + while ((c = getopt(argc, argv, "BdqrRc:n:")) != -1) { switch (c) { case ''B'': do_background = 0; @@ -1112,13 +1129,23 @@ static int scrub_start(int argc, char **argv, int resume) case ''R'': print_raw = 1; break; + case ''c'': + ioprio_class = (int)strtol(optarg, NULL, 10); + break; + case ''n'': + ioprio_classdata = (int)strtol(optarg, NULL, 10); + break; case ''?'': default: fprintf(stderr, "ERROR: scrub args invalid....