summaryrefslogtreecommitdiffstats
path: root/sys/arch/amd64/include/param.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* the KERN*_{HI,LO} variables are not needed, and easier to calculate thederaadt2019-01-241-6/+1
| | | | parts on the fly.
* Define __HAVE_ACPI.kettenis2018-08-251-1/+3
| | | | ok deraadt@, krw@, jca@
* grow dmesg buffer - bigger machines showing upderaadt2018-03-041-2/+2
|
* bump UPAGES to 6.dlg2017-09-061-2/+2
| | | | | | | | | | deraadt@s stack base randomisation may take away up to a whole page in space, and it is possible that i will take another whole page away in the future as a guard page. this means we continue to provide roughtly the same amount of stack space that has previously been in effect. ok deraadt@
* Increase the number of mbufs on most architectures. This is basedbluhm2016-09-031-2/+2
| | | | | | | on a guess how much memory a typical machine has. If the value is too high, users may run out of kernel memory. Then we will have to adjust this again. OK claudio@ deraadt@
* PGSHIFT and PGOFSET are now contained inside the kernel namespace.deraadt2013-03-261-3/+3
|
* ALIGNBYTES/ALIGN/ALIGNED_POINTER can move to the MI file.deraadt2013-03-251-5/+1
|
* refactor sys/param.h and machine/param.h. A lot of #ifdef _KERNEL is addedderaadt2013-03-231-48/+27
| | | | | | | to keep definitions our of user space. The MD files now follow a consistant order -- all namespace intrusion is at the tail can be cleaned up independently. locore, bootblocks, and libkvm still see enough visibility to build. Checked on 90% of platforms...
* move kernel after 16MB. needed for additional growth that might come in aderaadt2013-03-211-3/+3
| | | | | little while... diff from martynas who is not around now
* Provide namespace-safe alignment macros in <machine/_types.h>, withguenther2011-09-081-15/+4
| | | | | | | | compat names kept in <machine/param.h>. In <sys/socket.h>, pull in <sys/_types.h> instead of the namespace polluting <machine/param.h> and completely eliminate __CMSG_ALIGN, replaced by _ALIGN ok deraadt@
* double the default message buffer size. again.dlg2010-11-291-2/+2
| | | | requested by deraadt@
* bump up the dmesg buffer size. new boxes have lots of crap in them, sodlg2010-06-221-2/+2
| | | | | | boot messages can be too big to fit. sure deraadt@
* get rid of btoc/ctob in favor of atop/ptoamartin2007-10-281-5/+1
|
* Move the MSIZE, MCLSHIFT, MCLBYTES and the MCLOFSETthib2007-05-281-9/+1
| | | | | | | | | | | mbuf constants from MD param.h to MI param.h. Besides being the same on every arch, things will most probly break if any arch has different values then the others. The NMBCLUSTERS constants needs to be MD though; ok miod@,krw@,claudio@
* remove unused bdbtofsb(bn) macromartin2006-03-191-9/+1
| | | | found by drahn@
* remove useless comment about macros being different from i386martin2006-02-051-4/+1
|
* nuke unused BTOPKERNBASE definemartin2005-12-131-2/+1
| | | | pointed out by miod@
* Remove the advertising clause in the UCB license which Berkeleyjsg2005-12-131-6/+2
| | | | | rescinded 22 July 1999. Checked by ian@, deraadt@ and millert@, arm portion checked by drahn@
* - consistently use x86_round_pdr() allowing us to remove the superfluousmartin2005-11-281-5/+1
| | | | | round_pdr() macro - while there remove two more unused Mach macros
* goodbye more Mach macrosmartin2005-10-261-5/+1
| | | | help toby, ok deraadt@
* use the MI trunc_page() and round_page() macros instead of rolling or ownmartin2005-10-211-3/+1
| | | | ok weingart@ deraadt@
* Get rid of unused SINCR and SSIZE constants.miod2005-07-311-3/+1
|
* provide md USPACE_ALIGN zero on all but mips; deradat@ pefo@ okmickey2004-08-061-1/+2
|
* debranch SMP, have funniklas2004-06-131-7/+1
|
* remove the GATEWAY junk thingy; at the same time, select a new fatderaadt2004-04-191-5/+2
| | | | cluster value that noone will really need to crank.
* move to amd64 MACHINE_ARCHderaadt2004-02-271-4/+4
|
* an amd64 arch support.mickey2004-01-281-0/+173
hacked by art@ from netbsd sources and then later debugged by me into the shape where it can host itself. no bootloader yet as needs redoing from the recent advanced i386 sources (anyone? ;)