summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-10-13rx checksum offload support (based on the freebsd implementation)Jason Wright
2003-10-13Updated from tzcode2003dTodd C. Miller
2003-10-13Update to tzdata2003d from elsie.nci.nih.govTodd C. Miller
2003-10-13Get rid of the "page table group" stuff. "groups" used to be one logical pageMiod Vallat
big anyways. However, getting rid of the various constants (expanding to 0 for logs and shifts, and 1 for size) allows us to do further simplifications in some pmap loops, as there is no risk anymore of address wrapround. While there, fix some typos and comments.
2003-10-13More m68k pmap tweaks:Miod Vallat
- simplify pmap_protect() - simplify reference count managment by using 0 as a base instead of 1 (from NetBSD)
2003-10-13Bring bge and brgphy more up to date with changes from FreeBSD and NetBSD.Kenneth R Westerback
Some bug fixes, support for new hardware like the 5704 and 5705. Testing by deraadt@, danh@, and drahn@ amoung others. ok deraadt@.
2003-10-13Add a UI FIFO debug class. ok markus@ plus I think henning@Hakan Olsson
2003-10-13Do not define LEDEBUG by default.Miod Vallat
2003-10-13don't refer to options related to forwarding; ok jmc@Markus Friedl
2003-10-13last vtophys (tx data) is now dead. Needs dma sync's and probably moreJason Wright
htole32 now.
2003-10-13remember the new filename on ^X^WVincent Labrecque
ok deraadt
2003-10-13better realloc. ok deraadt joseTed Unangst
2003-10-13realloc stuff. ok deraadt@ jose@Ted Unangst
2003-10-12Linux shmat allows lookup of segments that are marked as removed soTodd C. Miller
our Linux compat should too. From marius aamodt eriksen
2003-10-12buf oflow, fixed badly in freebsd by tjr, i changed it to give a niceTheo de Raadt
warning instead of blind truncation; millert ok
2003-10-12sort options and sync usage();Jason McIntyre
from wiz@netbsd
2003-10-12Cleanup and shrinkage:Kenneth R Westerback
1) Eliminate 'WARNING: Disk xxx has no label.' message. When installing OpenBSD this is a normal condition not worth commenting on. From some discussion on hackers/icb. 2) Use consistant verbiage and case statement when checking the disklabel. 3) Consistantly suppress output of 'disklabel -W', reducing duplicate messages like '# using MBR partition ...' which are issued again when the 'disklabel -f ...' command is executed. 4) Usual code rectifications - eliminate extra {}'s, multiple echos elimination, etc.
2003-10-12note that EnableSSHKeySign should be in the non-hostspecific section;Jason McIntyre
remove unnecessary .Pp; ok markus@
2003-10-12Default snaplen is 96 not 68, from Pyun YongHyeon, ok deraadt@Daniel Hartmeier
2003-10-12Make it compile without INET6, from Max Laier, ok deraadt@Daniel Hartmeier
2003-10-12sort SEE ALSO and add commas after Xr's;Jason McIntyre
2003-10-12only one vtophys left (tx data)... both the rx and tx descriptors areJason Wright
fully handled by bus_dma now.
2003-10-12rework rx to use bus_dma and sprinkle with a small amount of htole32.Jason Wright
2003-10-12- add hppaBrad Smith
- uncomment missing .Xr references
2003-10-11Better sync comment with reality after last commit.Miod Vallat
2003-10-11Get rid of "union cpupid"; makes <machine/cpus.h> disappear as well.Miod Vallat
2003-10-11Nuke trailing whitespace.Miod Vallat
2003-10-11Page tables can be cached again on 187 and 188, as long as they are cachedMiod Vallat
write through and global (for 188).
2003-10-11Simplify DAE debug display.Miod Vallat
2003-10-11Merge sclock and clock pseudo-devices.Miod Vallat
2003-10-11Division and modulus operator (~). From hugh@.Otto Moerbeek
2003-10-11Bye bye GNU bc/dc.Otto Moerbeek
ok deraadt@
2003-10-11syncThomas Nordin
2003-10-11ATI Radeon 9100. deraadt@ okThomas Nordin
2003-10-11Test missing banner file, suppression of banner with ssh -q, check returnDarren Tucker
code from ssh. ok markus@
2003-10-11return NULL for missing banner; ok djm@Markus Friedl
2003-10-11search keys in reverse order; fixes #684Markus Friedl
2003-10-11remote x11 clients are now untrusted by default, uses xauth(8) to generateMarkus Friedl
untrusted cookies; ForwardX11Trusted=yes restores old behaviour. ok deraadt; feedback and ok djm/fries
2003-10-11svnd gap here too.Ted Unangst
2003-10-11regenTed Unangst
2003-10-11larger svnd gapTed Unangst
2003-10-11bump minor gap for svnd devices, so more vnds are allowed.Ted Unangst
this change REQUIRES running MAKEDEV again after booting with a new kernel. with a hint from tom cosgrove. ok deraadt@ millert@
2003-10-11consistent newlines, from tom cosgrove at arches-consulting.com.Ted Unangst
2003-10-10The special case code for "test -x" over NFS was incorrect. TheTodd C. Miller
right thing to do is to try access(2) first (since that occurs on the NFS server side) and only check for the absence of an execute bit when access(2) succeeds. Closes PR 3465
2003-10-10unsmoke drugs in vr_encap() (simplify it quite alot)Jason Wright
prepare for bus_dma of tx data
2003-10-10lightly season with a touch of htole32()... a pinch will do.Jason Wright
2003-10-10another easy vtophys removal (tx descriptor setup)... 6 to go.Jason Wright
2003-10-10don't use vtophys on rx lists any moreJason Wright
2003-10-10make sure pd is initialized before use (or byte counters may increaseDaniel Hartmeier
by random values). ok mcbride@, cedric@, henning@
2003-10-10In pmap_expand_kmap(), be sure to initialize new page tables.Miod Vallat