summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-02-28shorter thus better printingsMichael Shalayeff
2001-02-28Get rid of VHOLD, replace with buf_replacevnode.Constantine Sapuntzakis
2001-02-28proper bang placementMichael Shalayeff
2001-02-28double the fixed storage size for io*_ex; deraadt@ okMichael Shalayeff
2001-02-28Add ability to get display width in bytes for display memory, thisDale Rahn
may be the same as visual width or larger. This is seen on iMacDV systems running at 640x480 or 800x600 with a linebytes of 1024.
2001-02-28better print due to theo's suggestionMichael Shalayeff
2001-02-28make compile; update for pci, cardbus, usb, pcmciaTodd T. Fries
2001-02-28do not blindely bus_space_ma the vga bios,Michael Shalayeff
it could be of a different size than 0x8000, and now bios(4) does it for us the right way. besides, would the prom be at the same address on non-i386?
2001-02-28scan the isa hole for `optional rom's.Michael Shalayeff
found proms are excluded from the iomem_ex such that devices cannot map on the same memory. next step would be for pcic and similar devices to choose memory windows from unused spots in the iomem_ex. currently prom checksum test is not enforced due to broken stinkpad bioses, which do not pass the checksum test. testing from aaron@, fgsch@, fries@, millert@
2001-02-28Pretty.Angelos D. Keromytis
2001-02-28Handle failures more gracefully.Angelos D. Keromytis
2001-02-28Keep the last packet sent or received that matched an SPD entry, andAngelos D. Keromytis
retransmit if we eventually have an SA setup for that policy.
2001-02-28If net.inet.ipip.allow is set to 2, don't check for loopback addressAngelos D. Keromytis
spoofing of encapsulated packets (useful for single-machinet testing of isakmpd)
2001-02-27crank NKMEMCLUSTERS fron 4MB to 32MB.Artur Grabowski
2001-02-27Move buf_undirty and tbp flags manipulation back before calling theConstantine Sapuntzakis
soft updates code
2001-02-27Remove superfluous printf in Angelos last commitNiklas Hallqvist
2001-02-27Cosmetic fixes.Artur Grabowski
From FreeBSD, through NetBSD.
2001-02-27Move a brelse to after the last access to bp->b_data.Artur Grabowski
I found this in 1998. Why didn't I commit it then?
2001-02-27art@ found a race in getnewbuf. bawrite can block so we need to restartConstantine Sapuntzakis
the whole buffer allocation process
2001-02-27Add wakeup_n and wakeup_one. wakeup_n will wakeup up to n sleeping processesConstantine Sapuntzakis
2001-02-27Instead of doing VOP_ISLOCKED, vn_lock(..LK_RETRY..) we can do ↵Artur Grabowski
vn_lock(..LK_NOWAIT..). Also, when we fail to get the lock on the vnode we want to sync, push it ahead one second in time. XXX - this could lead to some vnodes not being synced for a long time, but that is better than a panic.
2001-02-27Half support for this D-Link DFE-650 model that has completely differentFederico G. Schwindt
vendor; from kart@hal-pc.org.
2001-02-27Always fully reset the card on an_init()Thorsten Lockert
Call an_init() when setting and clearing promisc; makes transmitter work after turning off promiscuous mode Identify RID in an_read_record() on failure
2001-02-27Sync with anreg.h -- this should be redone to not duplicate information...Thorsten Lockert
2001-02-27Garbage collect unused flagThorsten Lockert
Newer firmware has larger stats struct
2001-02-26fix tlbd_l for a new register usage conventionMichael Shalayeff
2001-02-26Fix copyright; ericj@Aaron Campbell
2001-02-26Move #define STATICConstantine Sapuntzakis
Get rid of unnecessary comment to self
2001-02-26Fix a couple panics caused by not freeing locks at the right times.Constantine Sapuntzakis
Thanks gluk for the patch Free locks before calling panic
2001-02-26regenArtur Grabowski
2001-02-26Since VLOCKSWORK is only set when LOCKDEBUG is defined,Artur Grabowski
ifdef the VOP_ISLOCKED code with LOCKDEBUG instead of DIAGNOSTIC.
2001-02-26Since netbsd_sys_fdatasync is the same code as sys_fsync, weArtur Grabowski
can simply call sys_fsync instead of copying code.
2001-02-26regenArtur Grabowski
2001-02-26Indentation nit in the generated code.Artur Grabowski
2001-02-26adapt to new softupdates changes.Artur Grabowski
2001-02-26Sigh. unstatic the simplelock to make this compile without LOCKDEBUG.Artur Grabowski
2001-02-26Initialize the simple lock properly.Artur Grabowski
2001-02-26Add SLOCK_INITIALIZERArtur Grabowski
2001-02-26Replace literal with defined constantThorsten Lockert
2001-02-26Allow configuration of WEP. From FreeBSD; ok aaron@Thorsten Lockert
2001-02-26Change default SSID from "ANY" to blank -- this will actually make itThorsten Lockert
connect to any SSID found.
2001-02-26Move v_writecount test back to it original placeConstantine Sapuntzakis
2001-02-26u_int32_t -> u_intConstantine Sapuntzakis
2001-02-26Make ref counts 32-bit unsigned ints as opposed to a potpourri of longs andConstantine Sapuntzakis
ints.
2001-02-25Add wscons_machdep.c which is a constab-style wrapper driver for wscons onAaron Campbell
i386. This fixes serial console. millert@, mickey@ ok
2001-02-25Code to enable the cache on VS4000/VLC. From mhitch@netbsd.org.Hugh Graham
2001-02-25Use the system subtype field on the SIE to determine if a machine isHugh Graham
VS4000/vlc or MV3100/{3,4}0. This seems to produce more consistent detection than checking the configuration and test register.
2001-02-25Provide both system sub type and system variant data for KA45 and KA48.Hugh Graham
It's not yet clear which is better used to differentiate these models.
2001-02-24Move splbio's around so that they cover the data structures they need toConstantine Sapuntzakis
and don't cover the ones they don't
2001-02-24Cleanup of vnode interface continues. Get rid of VHOLD/HOLDRELE.Constantine Sapuntzakis
Change VM/UVM to use buf_replacevnode to change the vnode associated with a buffer. Addition v_bioflag for flags written in interrupt handlers (and read at splbio, though not strictly necessary) Add vwaitforio and use it instead of a while loop of v_numoutput. Fix race conditions when manipulation vnode free list