Subject: Re: kern/30571 (Cannot set MAXDSIZ to values >2GB on some platforms)
To: None <kern-bug-people@netbsd.org, netbsd-bugs@netbsd.org,>
From: None <is@netbsd.org>
List: netbsd-bugs
Date: 12/29/2005 16:15:40
Synopsis: Cannot set MAXDSIZ to values >2GB on some platforms

State-Changed-From-To: open->closed
State-Changed-By: is@netbsd.org
State-Changed-When: Thu, 29 Dec 2005 16:15:34 +0000
State-Changed-Why:
option values are passed to the C compiler, so you'll have to play by its 
rules.
Decimal constants are signed; if you want to be sure a constant is
unsigned, you have to append U or express is as hexadecimal.

I guess a reminder about this should be added to options(4), but the
behaviour you observed is to be expected.