Page MenuHomeFreeBSD

geom: Allow BSD type '!0' partitions
ClosedPublic

Authored by jlduran on Nov 18 2024, 12:29 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Mar 14, 10:37 PM
Unknown Object (File)
Tue, Mar 4, 2:21 AM
Unknown Object (File)
Sun, Mar 2, 2:36 PM
Unknown Object (File)
Sat, Feb 22, 2:14 PM
Unknown Object (File)
Feb 4 2025, 10:39 AM
Unknown Object (File)
Jan 22 2025, 8:20 PM
Unknown Object (File)
Jan 11 2025, 8:50 AM
Unknown Object (File)
Jan 11 2025, 6:00 AM

Details

Summary

Allow the creation of partition type '!0', in order to replicate the
behavior of bsdlabel -w.

Fix it by not considering "0" an invalid partition type.

Test Plan
md0=$(mdconfig -s 100m)
md1=$(mdconfig -s 100m)

bsdlabel -w "$md0"

gpart create -s bsd "$md1"
gpart add -t '!0' -b 16 "$md1"

gpart show
=>     0  204800  md0  BSD  (100M)
       0      16       - free -  (8.0K)
      16  204784    1  !0  (100M)

=>     0  204800  md1  BSD  (100M)
       0      16       - free -  (8.0K)
      16  204784    1  !0  (100M)

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable