Remove 256 unit limit, there is no evil minor number encoding to

deal with any more.

Spotted by:	"Darren Freestone" <df@cops.org>
This commit is contained in:
phk 2003-06-22 11:31:38 +00:00
parent 24be6cd03d
commit 5ad6b62509

View File

@ -650,8 +650,6 @@ mdnew(int unit)
}
if (unit == -1)
unit = max + 1;
if (unit > 255)
return (NULL);
sc = (struct md_s *)malloc(sizeof *sc, M_MD, M_WAITOK | M_ZERO);
sc->unit = unit;
bioq_init(&sc->bio_queue);