Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-02-26 | regen | Artur Grabowski | |
2001-02-26 | Since VLOCKSWORK is only set when LOCKDEBUG is defined, | Artur Grabowski | |
ifdef the VOP_ISLOCKED code with LOCKDEBUG instead of DIAGNOSTIC. | |||
2001-02-26 | Since netbsd_sys_fdatasync is the same code as sys_fsync, we | Artur Grabowski | |
can simply call sys_fsync instead of copying code. | |||
2001-02-26 | regen | Artur Grabowski | |
2001-02-26 | Indentation nit in the generated code. | Artur Grabowski | |
2001-02-26 | adapt to new softupdates changes. | Artur Grabowski | |
2001-02-26 | Sigh. unstatic the simplelock to make this compile without LOCKDEBUG. | Artur Grabowski | |
2001-02-26 | Initialize the simple lock properly. | Artur Grabowski | |
2001-02-26 | Add SLOCK_INITIALIZER | Artur Grabowski | |
2001-02-26 | Replace literal with defined constant | Thorsten Lockert | |
2001-02-26 | Allow configuration of WEP. From FreeBSD; ok aaron@ | Thorsten Lockert | |
2001-02-26 | Change default SSID from "ANY" to blank -- this will actually make it | Thorsten Lockert | |
connect to any SSID found. | |||
2001-02-26 | Move v_writecount test back to it original place | Constantine Sapuntzakis | |
2001-02-26 | u_int32_t -> u_int | Constantine Sapuntzakis | |
2001-02-26 | Make ref counts 32-bit unsigned ints as opposed to a potpourri of longs and | Constantine Sapuntzakis | |
ints. | |||
2001-02-25 | Add wscons_machdep.c which is a constab-style wrapper driver for wscons on | Aaron Campbell | |
i386. This fixes serial console. millert@, mickey@ ok | |||
2001-02-25 | Code to enable the cache on VS4000/VLC. From mhitch@netbsd.org. | Hugh Graham | |
2001-02-25 | Use the system subtype field on the SIE to determine if a machine is | Hugh Graham | |
VS4000/vlc or MV3100/{3,4}0. This seems to produce more consistent detection than checking the configuration and test register. | |||
2001-02-25 | Provide 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-24 | Move splbio's around so that they cover the data structures they need to | Constantine Sapuntzakis | |
and don't cover the ones they don't | |||
2001-02-24 | Cleanup 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 | |||
2001-02-24 | Gone the vsbus route for now. | Hugh Graham | |
2001-02-24 | repair cluster structure damage | Theo de Raadt | |
2001-02-24 | Support for VAX 4000/{2,4,5}00 from Michael Kukat. untested. | Hugh Graham | |
2001-02-24 | #else if/#elif | Michael Shalayeff | |
2001-02-23 | Merge with FreeBSD: | Jason Wright | |
more portable between fbsd and obsd real mii support prefer memory mapped registers (if configuration supports it) | |||
2001-02-23 | fix damn pcxl damn function | Michael Shalayeff | |
2001-02-23 | Try to avoid sleeping in the syncer waiting for vnode locks. | Constantine Sapuntzakis | |
From FreeBSD | |||
2001-02-23 | Change the B_DELWRI flag using buf_dirty and buf_undirty instead of | Constantine Sapuntzakis | |
manually twiddling it. This allows the buffer cache to more easily keep track of dirty buffers and decide when it is appropriate to speed up the syncer. Insipired by FreeBSD. Look over by art@ | |||
2001-02-23 | Remove the clustering fields from the vnodes and place them in the | Constantine Sapuntzakis | |
file system inode instead | |||
2001-02-23 | Convert the sleep in ffs_fsync to a tsleep so we can get a good wmesg. | Artur Grabowski | |
2001-02-23 | garbage-collect stale ND entries (default: 1 day). | Jun-ichiro itojun Hagino | |
RFC 2461 5.3. sync with kame. | |||
2001-02-23 | remove unnecessary state, ND6_LLINFO_WAITDELETE, from neighbor cache | Jun-ichiro itojun Hagino | |
state machine. no need for RTF_REJECT on neighbor cache entires, they are leftover from ARP code. sync with kame. | |||
2001-02-22 | ifdef sparc -> ifdef __sparc__ | Artur Grabowski | |
2001-02-22 | avoid sign extension for %b | Michael Shalayeff | |
2001-02-22 | Typo police: | Kenneth R Westerback | |
Replace last ADV/ASC/Adv, etc. uses with ADW/Adw as appropriate. Delete comments about non-existant structure members, correct references to existing structure members to use correct structure names or typedefs. | |||
2001-02-22 | ELF uses more than 5 vmcmds by default, so grow the default vmcmd set size | Artur Grabowski | |
to 8. At the same time it seemed like a good idea to avoid to always malloc a new vmcmd array, so put the default sized array into struct exec_vmcmd_set. We might want to make a linked list of vmcmd arrays or exec_vmcmd_sets instead of reallocating them some time in the future, but right now this seems like a waste of time. | |||
2001-02-22 | correct behavior when ip6 reass queue reaches the upper limit. | Jun-ichiro itojun Hagino | |
2001-02-22 | Improve the page mapped check algorithm in the powerpc pmap module, | Dale Rahn | |
before it was looking through two arrays of 8 and a linked list of undetermined size, before deciding that a mapping was not valid. Now it allocates a data structure and caches that data. This improves both pmap_enter and pmap_remove because both check to see if a mapping is valid before taking the appropriate actions. Also in pmap_remove, if the va mapping is found, stop searching for it in the rest of this array, the alternate array and the linked list. only one valid mapping of each va is allowed. This change improved lat_mmap (from lmbench) from 1300 to 720 and fork+exit from 7320 to 2724 microseconds. | |||
2001-02-22 | sync | Chris Cappuccio | |
2001-02-22 | Use real VIA product names for IDE controllers rather then contrived ones, | Chris Cappuccio | |
ok deraadt@ | |||
2001-02-22 | slightly less verbose dmesg | Chris Cappuccio | |
2001-02-22 | be more more picky about ip6 destopt parsing. sync with kame | Jun-ichiro itojun Hagino | |
2001-02-22 | sync | Chris Cappuccio | |
2001-02-22 | Comments may not exist on 'product' or 'vendor' lines | Chris Cappuccio | |
2001-02-22 | Enable the same PHYs that are enabled in GENERIC | Chris Cappuccio | |
2001-02-22 | Enable lxtphy and qsphy because they both work fine for me, ok jason@ | Chris Cappuccio | |
2001-02-21 | sync | Chris Cappuccio | |
2001-02-21 | Make dmesg prettier, ok deraadt@ | Chris Cappuccio | |
all your base are belong to us | |||
2001-02-21 | Latest soft updates from FreeBSD/Kirk McKusick | Constantine Sapuntzakis | |
Snapshot-related code has been commented out. |