summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-07-27Convert array lookups to function calls that are bounds checkedConstantine Sapuntzakis
2001-07-27Don't accept arbitrary size file handles as the kernel buffer we are copyingConstantine Sapuntzakis
it into is fixed and on the stack
2001-07-27Yet another probe fix. Switch to the right drive before looking at registersConstantine Sapuntzakis
2001-07-27do not check in_dstaddr in rtinitflags() macro, otherwiseJun-ichiro itojun Hagino
linklocal address manipulation codepath will choke. sync with kame
2001-07-26Always flush the pipeline after updating cr1.Miod Vallat
2001-07-26Typo.Miod Vallat
2001-07-26missed this in previous symlink/mknod backoutTodd C. Miller
2001-07-26drop value of OpenBSD date to what it was before since the mknod/symlink ↵Todd C. Miller
changed have been backed out
2001-07-26Back out changes to symlink and mknod that were not well tested.Todd C. Miller
A simple mknod at causes a kernel panic (uvm_fault).
2001-07-26Add support for disabling swap devices (swapctl -d).Artur Grabowski
Improve error handling on I/O errors to swap. From NetBSD
2001-07-26No longer used.Artur Grabowski
2001-07-26regenBrad Smith
2001-07-26add Broadcom BCM5700 Gigabit MACBrad Smith
2001-07-26In extent_destroy, remove the extent from the list ofArtur Grabowski
all extents.
2001-07-26Print "data modified on freelist" sizes in hex.Artur Grabowski
I know at least of two cases where people got confused by this and used the wrong size to the malloc debugger.
2001-07-26Typos.Artur Grabowski
From Heikki Korpela <heko@iki.fi>
2001-07-26Be more careful with ranges.Artur Grabowski
From Heikki Korpela <heko@iki.fi>
2001-07-26set OpenBSD version to 200107assar
ok'd by art
2001-07-26If pckbc_cnattach fails, try to usb attach. Helps on some legacy-free PCsConstantine Sapuntzakis
2001-07-26make it compile on `other' endian machinesMichael Shalayeff
2001-07-26change vop_symlink and vop_mknod to return vpp (the created node)assar
refed, so that the caller can actually use it. update callers and file systems that implement these vnode operations ok'd by art
2001-07-26remove unused support for creating files and directories fromassar
msdosfs_mknod. ok'd by art
2001-07-25Random cleanups that generate noise in my cvs updates.Artur Grabowski
2001-07-25Some updates to UVM from NetBSD. Nothing really critical, just a sync.Artur Grabowski
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-25nat proxy port randomization by ben fleis.Daniel Hartmeier
2001-07-25Added missing break. -mojMats O Jansson
2001-07-25Make sure pkthdr.rcvif is correct before calling pf_test()Jason Wright
2001-07-25be carefull about initializing timeoutsMichael Shalayeff
2001-07-25- unconditionalize call to bridge_input() (fewer #ifdef's and NPF>0 is ↵Jason Wright
default case anyway). - add support for filtering on interface output (and call pf_test() appropriately) What all this means: nonstateful and stateful PF filtering now works with the bridge.
2001-07-25Initialization of arpcom * based on ifp was too soon: ifp can change asJason Wright
a result of a call to bridge_input().
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-23improve IFA_ROUTE handling. do not lose connected route on primaryJun-ichiro itojun Hagino
interface address removals.
2001-07-22pmap_clear_modify returns boolean_tMiod Vallat
2001-07-21print additional debugging information for 'insert invalid' messages. occurs ↵Daniel Hartmeier
for some people (never for me), and I need more information. will be removed after the issue is resolved. please report these, if you get them.
2001-07-21no rd required in regular kernelsTheo de Raadt
2001-07-21regenNathan Binkert
2001-07-21Add Level1 and their LXT1001 (Now owned by Intel)Nathan Binkert
2001-07-21missing \n in a log() callJun-ichiro itojun Hagino
2001-07-21repair validation on RTAX_GENMASK insertion. has been broken since 44bsd.Jun-ichiro itojun Hagino
(freebsd3 has a fix since 1999, but has insufficient validation on sa_len)
2001-07-21repair IPv6 TCP. th_sum has to be initialized to 0 on template.Jun-ichiro itojun Hagino
(older code had "th_sum = 0" at the bottom of the function, which was removed during TCP hardware checksumming change)
2001-07-21Undo last fix to ata_wdc.c. Don't deregister timeout in generic codeConstantine Sapuntzakis
2001-07-21Don't hang on missing interruptsConstantine Sapuntzakis
2001-07-21- don't allow wildcarded interruptsJason Wright
- use correct type (bus_addr_t) for iobase - if interrupt allocation fails, abort - clean up interrupt handler (again)
2001-07-21- Clear all interrupts during initialization (shouldn't be necessary, butJason Wright
doesn't hurt). - Turn the dma queues on and off as needed. This results in fewer PCI aborts on 7751.
2001-07-20use a variable, not it's default value from constantMichael Shalayeff
2001-07-20make equal() macro to check sa_len match, otherwise we will touchJun-ichiro itojun Hagino
the content of a2 beyond a2->sa_len mistakenly. sync with kame
2001-07-20Not mapping registers you know are there (even if they don't work) is aJason Wright
bad idea on ISA when you think about PCMCIA; pointed out by costa and mickey.
2001-07-20Since the aborts seem recoverable (thus far), don't printf() about them,Jason Wright
just maintain a counter.
2001-07-20regenPeter Galbavy