From 4536786e0f37b276e7d36bae81c26fe2dddf541c Mon Sep 17 00:00:00 2001 From: krw Date: Sat, 3 Sep 2022 13:59:25 +0000 Subject: [PATCH] Add a new keyword to template files, 'raid', to allow the auto allocation of RAID partitions. Make both 'raid' and 'swap' keywords case insensitive. Suggested by kn@ ok kn@ miod@ --- sbin/disklabel/editor.c | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index e43314fa001..47579948367 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.374 2022/09/01 13:35:02 krw Exp $ */ +/* $OpenBSD: editor.c,v 1.375 2022/09/03 13:59:25 krw Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller @@ -675,9 +675,12 @@ again: /* Everything seems ok so configure the partition. */ DL_SETPSIZE(pp, secs); DL_SETPOFFSET(pp, chunkstart); - if (ap->mp[0] != '/') - pp->p_fstype = FS_SWAP; - else { + if (ap->mp[0] != '/') { + if (strcasecmp(ap->mp, "raid") == 0) + pp->p_fstype = FS_RAID; + else + pp->p_fstype = FS_SWAP; + } else { pp->p_fstype = FS_BSDFFS; pp->p_fragblock = 0; if (get_fsize(lp, partno) == 1 || @@ -1700,6 +1703,8 @@ mpsave(struct disklabel *lp) for (i = 0; i < MAXPARTITIONS; i++) { j = mi[i].partno; fstype = lp->d_partitions[j].p_fstype; + if (fstype == FS_RAID) + continue; if (fstype == FS_SWAP) { fprintf(fp, "%s%c none swap sw\n", bdev, 'a'+j); } else if (mi[i].mountpoint) { @@ -2165,7 +2170,8 @@ parse_autotable(char *filename) buf = line; if ((sa->mp = get_token(&buf)) == NULL || - (sa->mp[0] != '/' && strcmp(sa->mp, "swap"))) + (sa->mp[0] != '/' && strcasecmp(sa->mp, "swap") && + strcasecmp(sa->mp, "raid"))) errx(1, "%s: parse error on line %u", filename, idx); if ((t = get_token(&buf)) == NULL || parse_sizerange(t, &sa->minsz, &sa->maxsz) == -1) -- 2.20.1