summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-03-03If we attempted reschedule two times without suceeding, uiomove will yield,Artur Grabowski
giving other processes a chance to run. A process feeding a huge buffer to {read,write}{,v} on a file that doesn't need to wait for I/O, could have hogged a lot of cpu in the kernel, blocking all userland activity. Based on a similiar fix in FreeBSD.
2000-03-03Keep track of the number of times we trigger a reschedule before theArtur Grabowski
context switch actually happens.
2000-03-03Turns out that our implementation of STAT wasn't RFC 959 compliant.bitblt
This version is now RFC 959 compliant, using a patch adapted from one sent in by david.leonard@eecs.uq.edu.au
2000-03-03remove WIDE's experimental ip reass code, mistakingly merged in partially.Jun-ichiro itojun Hagino
NetBSD PR: 9412 Fix from: ho@crt.se
2000-03-03Use the LIST_FIRST macro to get the head of zombproc list.Artur Grabowski
2000-03-03Use LIST_ macros instead of internal field names to walk the allproc list.Artur Grabowski
2000-03-03fix a commentArtur Grabowski
2000-03-03Style.Angelos D. Keromytis
2000-03-03Remove extraneous newline.Angelos D. Keromytis
2000-03-03$OpenBSD$Todd T. Fries
2000-03-02Prep for CardBus support; from NetBSD.Aaron Campbell
2000-03-02protect more reads and rights^Wwrites w/ spl; avoid inline which blows the ↵Michael Shalayeff
code in twice
2000-03-02sun3 is alive, thanks to Miod Vallat <miodrag@ifrance.com>Todd T. Fries
add ksyms, proto fix, msgbuf
2000-03-02sun3 is alive, thanks to Miod Vallat <miodrag@ifrance.com>Todd T. Fries
add ksyms, proto fix.
2000-03-02sun3 is alive, thanks to Miod Vallat <miodrag@ifrance.com>, add ksyms.Todd T. Fries
2000-03-02sun3 is alive, thanks to Miod Vallat <miodrag@ifrance.com>, add ksyms.Todd T. Fries
2000-03-02add missing return valueTodd C. Miller
2000-03-02New function: m_getptr(), takes as argument an mbuf chain and anAngelos D. Keromytis
offset, returns a pointer to them specific mbuf and the offset inside it that corresponds to the offset argument (so one can find where the n'th byte is in an mbuf).
2000-03-02Add prototype for m_getptr()Angelos D. Keromytis
2000-03-02Fix; don't print settings with other options present. Slightly modifyHakan Olsson
the -o option handling. Modify manpage to match. (angelos@ ok) Angelos also spotted that usage() still said 'wiconfig', not 'wicontrol'.
2000-03-02EXTMEM_SIZE is a dead meat; remove commented-out entriesMichael Shalayeff
2000-03-02interactivly -> interactively (Germans can't spell) :-)Aaron Campbell
2000-03-02alternativly -> alternativelyAaron Campbell
2000-03-02Use a char, not a char[1] in ttgetc and cast the return value to int.Todd C. Miller
Perhaps this should really be a u_char but I don't think it really matters.
2000-03-02Reorganize to be more like the BSD version + KNFTodd C. Miller
2000-03-02$OpenBSD$Todd T. Fries
2000-03-02Spelling; jj@dynarc.seAaron Campbell
2000-03-02Add an option DDB_SAFE_CONSOLE that defaults db_console to 1.Artur Grabowski
In many cases, setting db_console in /etc/rc is too late.
2000-03-02Make libkafs compatible with in-tree afs.Artur Grabowski
2000-03-02do not add ifa_dstaddr for non-pointopoint interface. IPv6 has noJun-ichiro itojun Hagino
concept for "broadcast".
2000-03-02typo fix.Jun-ichiro itojun Hagino
2000-03-02An option description does not need to contain "The -foo option...".Aaron Campbell
2000-03-02Shorten capability descriptions so they don't wrap to the next line. Looks aAaron Campbell
bit nicer.
2000-03-02count is unsigned (size_t) so cast to u_long, not longTodd C. Miller
2000-03-02$OpenBSD$Todd T. Fries
2000-03-02$OpenBSD$Todd T. Fries
2000-03-02Several people noted that non-UVM was brokenNiklas Hallqvist
2000-03-01rm $Log$Todd T. Fries
2000-03-01If sf_encap() fails, we need to drop the packet. If sf_encap() reassemblesAaron Campbell
the mbufs into one big cluster, we need to pass the new pointer to bpf_mtap(). From art@.
2000-03-01Much nicer pte.h commented by Chuck Cranor; from NetBSDNiklas Hallqvist
2000-03-01Proper bus_dma usage, fixes cache incosistenciesNiklas Hallqvist
2000-03-01$OpenBSD$Todd T. Fries
2000-03-01$OpenBSD$Todd T. Fries
2000-03-01$OpenBSD$Todd T. Fries
2000-03-01order kerberos librariesTheo de Raadt
2000-03-01Prepare for new pmapNiklas Hallqvist
2000-03-01order kerberos libraries properlyTheo de Raadt
2000-03-01WallTheo de Raadt
2000-03-01Initialize xs->req_sense_length to 0. This is not used by manyTodd C. Miller
scsi drivers, other than dev/pci/ncr.c, but if req_sense_length is not zero (either explicitly or through chance) the ncr driver will fail during initialization. This fixes the occasionaly ncr driver init problems; thorpej@netbsd.org
2000-03-01Various cleanups.Aaron Campbell