summaryrefslogtreecommitdiff
path: root/sys/arch/i386
AgeCommit message (Collapse)Author
2001-08-12uvm_extern.h is enough hereMichael Shalayeff
2001-08-12moce pglisth into uvm_pglist.hMichael Shalayeff
2001-08-11Some fixes from NetBSD.Artur Grabowski
Parts of the glue needed for page zeroing in the idle loop. More careful handling of ptp pages (should solve some problems, most notably with Intel 440GX+ motherboards).
2001-08-11remove some old cruft.Artur Grabowski
2001-08-08move the com_raisedtr proto for timeout_setMichael Shalayeff
2001-08-08IPCOMP removal. deraadt@ ok.Jean-Jacques Bernard-Gundol
2001-08-07tag fixes; Denis Afonin <dfa@solo.ee>Jason Wright
2001-08-06remove vm_conf.h; art@ okMichael Shalayeff
2001-07-30Change:Artur Grabowski
int bus_dmamem_mmap(bus_dma_tag_t, bus_dma_segment_t, int, int, int, int); to: paddr_t bus_dmamem_mmap(bus_dma_tag_t, bus_dma_segment_t, int, int, off_t, int); To allow mmaping offsets larger than INT_MAX. And to simply make more sense.
2001-07-29Temporarily fix wscninit so that it only runs once.Constantine Sapuntzakis
Somebody should fix the boot-up logic so it's only called once
2001-07-27Convert array lookups to function calls that are bounds checkedConstantine Sapuntzakis
2001-07-26If pckbc_cnattach fails, try to usb attach. Helps on some legacy-free PCsConstantine Sapuntzakis
2001-07-25Change the pmap_enter interface to merge access_type and the wired booleanArtur Grabowski
and arbitrary flags into one argument. One new flag is PMAP_CANFAIL that tells pmap_enter that it can fail if there are not enough resources to satisfy the request. If this flag is not passed, pmap_enter should panic as it should have done before this change (XXX - many pmaps are still not doing that). Only i386 and alpha implement CANFAIL for now. Includes uvm updates from NetBSD.
2001-07-23reorder operations a bit for st16550{v2}, xr16850, ti16750:Jason Wright
wake them up and then initialize them This fixes a comatose st16650 problem on addcom (detected as st16550).
2001-07-18Get rid of the PMAP_NEW option by making it mandatory for all archs.Artur Grabowski
The archs that didn't have a proper PMAP_NEW now have a dummy implementation with wrappers around the old functions.
2001-07-17addcom and pccom at addcom (commented out)Jason Wright
2001-07-15add install targetassar
2001-07-15add macros for spinlockinit, spinlockmgr to build for MULTIPROCESSORassar
or LOCKDEBUG
2001-07-15Some more KNFNiklas Hallqvist
2001-07-15Comment clarification and indent; ok mickey@Niklas Hallqvist
2001-07-15spellingPeter Valchev
2001-07-13delete duplicate definitionsTheo de Raadt
2001-07-13All two common configurations for DEC EtherWorks cardsNiklas Hallqvist
2001-07-10ANSI C does not like labels: without a statement after that.Marc Espie
Restore missing breaks.
2001-07-06qsphy required for txTheo de Raadt
2001-07-06Change to make the kernel build when IPCOMP is activated andJean-Jacques Bernard-Gundol
PPP_DEFLATE is not. Reported by Heikki Korpela <heko@saitti.net>. ho@ ok.
2001-07-06change MSIZE to 256, okay @deraadtNiels Provos
2001-07-05Get rid of the wrapper macros around extent_alloc*1Artur Grabowski
Pass the right amount of arguments and rename them back to their right names.
2001-07-05move cdev_decl(iop) into sys/conf.hMichael Shalayeff
2001-07-04need sys/systm.h for strcmp prototype (gcc 3.0 fixes built-in status,Marc Espie
in that they're only activated when the corresponding include has been seen) Okay millert@
2001-07-04Make preprocessor happier, don't give it untasty tokens at end of input.Marc Espie
Ok millert@
2001-07-04$OpenBSD$Niklas Hallqvist
2001-07-03Add the I2O deviceNiklas Hallqvist
2001-07-02add nge and nsgphyNathan Binkert
2001-06-29update the copyright yearMichael Shalayeff
2001-06-29return normal is error code returned is zero, for some thinkpadsMichael Shalayeff
2001-06-29merge a bit of bus_dma* from netbsdJason Wright
convert some NBPG->PAGE_SIZE add missing initialization missed in previous merge use kernel_map not kmem_map
2001-06-29biosboot is more than 256 bytes for a while nowMichael Shalayeff
2001-06-29Enable iop+ioprbsNiklas Hallqvist
2001-06-27UVM is defaultNiklas Hallqvist
2001-06-27MNN is no longer an option.Artur Grabowski
2001-06-27Remove IPF; openbsd@davidkrause.comAngelos D. Keromytis
2001-06-27ALTQ base modifications to the kernel.Kenjiro Cho
- ALTQ introduces a set of new queue macros that coexist with the traditional IF_XXX macros. - "struct ifaltq" replaces "struct ifqueue" in "struct ifnet". - assign cdev major 74 for i386 and 54 for alpha as ALTQ control interface.
2001-06-27UVM is no longer an option.Artur Grabowski
2001-06-27stupid american riverTheo de Raadt
2001-06-27use + not = and 0-9Michael Shalayeff
2001-06-27fix constraint, no idea how did it workMichael Shalayeff
2001-06-27implement 64 bit swap and fix constraints on othersMichael Shalayeff
2001-06-26s/USER_PCICONFIG/USER_PCICONFJason Wright
2001-06-26add USER_PCICONF in GENERICMatthieu Herrb