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)
Thu, Nov 13, 1:31 AM
Unknown Object (File)
Sun, Nov 9, 5:16 AM
Unknown Object (File)
Fri, Nov 7, 12:22 AM
Unknown Object (File)
Thu, Oct 30, 5:11 PM
Unknown Object (File)
Thu, Oct 30, 12:02 PM
Unknown Object (File)
Thu, Oct 30, 3:12 AM
Unknown Object (File)
Wed, Oct 29, 10:09 AM
Unknown Object (File)
Wed, Oct 29, 9:51 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