Changeset 4a2a6b8b in mainline for uspace/app


Ignore:
Timestamp:
2024-09-06T22:09:33Z (19 months ago)
Author:
Miroslav Cimerman <mc@…>
Children:
57c61b0
Parents:
a19d7fc4
Message:

hr: add initial RAID 4 0 (non-rotating parity on disk 0)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/hrctl/hrctl.c

    ra19d7fc4 r4a2a6b8b  
    232232
    233233        while (c != -1) {
    234                 c = getopt_long(argc, argv, "hsC:c:A:a:l:015Ln:T:",
     234                c = getopt_long(argc, argv, "hsC:c:A:a:l:0145Ln:T:",
    235235                    long_options, NULL);
    236236                switch (c) {
     
    299299                                goto bad;
    300300                        cfg->level = hr_l_1;
     301                        break;
     302                case '4':
     303                        if (cfg->level != hr_l_empty)
     304                                goto bad;
     305                        cfg->level = hr_l_4;
    301306                        break;
    302307                case '5':
Note: See TracChangeset for help on using the changeset viewer.