summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-01-30Oops, missed this in the regen commit.Jonathan Gray
Pointed out by pedro@
2007-01-30small memleak plugged and style changes.Pierre-Yves Ritschard
ok reyk@
2007-01-30style changes.Pierre-Yves Ritschard
ok reyk@
2007-01-30update vic(4) to use the LINK_STATE_IS_UP() macroReyk Floeter
2007-01-30correct indent;Jason McIntyre
2007-01-30oops - no point putting stuff in SEE ALSO when we already have themJason McIntyre
in the supported devices list;
2007-01-30Michael Shalayeff agreed to remove the advertising clauses from hisRay Lai
licenses. OK Michael Shalayeff (mickey@) and millert@.
2007-01-30Remove and simplify an impossible case (if *p = memchr(cp, 0, prec),Ray Lai
p - cp cannot be greater than prec). Prevent an integer overflow when printing a string with length greater than INT_MAX. Initial diff from millert@. OK millert@, beck@, and otto@.
2007-01-30Allow the bnx(4) driver to make use of all of the available hardwareKenneth R Westerback
multicast hash slots. The bnx(4) hardware supports 8 slots instead of 4 like the bge(4) hardware. From Mike Karels via FreeBSD Tested by Brad, biorn@ and Johan M:son Lindman
2007-01-30Rough in more support for 5787/5755 chips so far known to not work orKenneth R Westerback
unreported in the wild. In this case add a PHY workaround for an eventual mobile version of the chipset. No change to existing functionality. From Michael Chan (mchan@broadcom), via Linux tg3 and brad.
2007-01-30Add some umsm devices found in Linux driver.Jonathan Gray
"looks good" fkr@
2007-01-30regenJonathan Gray
2007-01-30Add some additional umsm products found in Linux driver.Jonathan Gray
2007-01-29add landisk synopsisMartin Reindl
2007-01-29put boot.mac into snapshots, needed for booting old-world macsMartin Reindl
ok drahn@ gwk@
2007-01-29sync the -f description w/ its synopsis;Jason McIntyre
2007-01-29sync usage(); spotted by Igor SobradoJason McIntyre
2007-01-29add manpages for physical and kernel virtual memory, plus onboard I/OMartin Reindl
ok jmc@
2007-01-29add an ENVIRONMENT section for TMPDIR;Jason McIntyre
from freebsd pr# 108346, from Anton Yuzhaninov much tweaked by otto and myself;
2007-01-29manpage tweaks.Pierre-Yves Ritschard
advised by and ok jmc@
2007-01-29sort FILES;Jason McIntyre
2007-01-29sort FILES;Jason McIntyre
2007-01-29add /fastboot to FILES, since these pages discuss that file;Jason McIntyre
2007-01-29avoid ambiguous wording; from Mark LumsdenJason McIntyre
2007-01-29introduce xsnprintf(); OK otto@ joris@.Xavier Santolaria
2007-01-29no longer spit out that you can add new files using 'cvs add',Joris Vink
it is pretty obvious on itself. ok niallo@ xsa@
2007-01-29Add SSL support to hoststated.Pierre-Yves Ritschard
with help and OK reyk@ with help and advice by claudio@ and Srebrenko Sehic
2007-01-29LCD device driver support for luna88k, first step.Kenji Aoyama
ok miod@
2007-01-29Introduce new checks against the received metric to update or delete the route.Michele Marchetto
OK norby@
2007-01-29Remove useless debug message when calculating the SPF tree.Esben Norby
ok claudio@
2007-01-29Don't malloc memory to store option data in leases, just appropriateKenneth R Westerback
the malloc'd memory from the parsed option buffer since it would be thrown away after the copy anyway. 'looks sane' millert@
2007-01-29Do not link from the LS DB to outside structures that may vanish beforeClaudio Jeker
the actual LS DB entry is removed. In particular a neighbor may be removed at any time -- we were lucky because we kept down neighbors around for another 24h. Reload support unhided this problem again. Just copy the needed info into the vertex. Pointing to the area is save as the vertex is part of the area itself and removed when the area is removed. OK norby@
2007-01-29Bump fixed part of the stackgap to 2k. Allows two full paths to beOtto Moerbeek
stored, needed by systrace. ok deraadt@ miod@
2007-01-29whitespace, no change in code produced by bc -dlOtto Moerbeek
2007-01-29Three lines in SYNOPSIS are too much. Use only one line and sync usage.Bernd Ahlers
prodded by & ok jmc@
2007-01-29Correctly check for missing arguments, as in ospfctl/bgpctl. OK pyr@Claudio Jeker
2007-01-28hey look, i found another debug printf from my merging stuff!Joris Vink
kill-zap-nuke-remove-delete it.
2007-01-28do not overwrite a file that is modified but has a sticky tag setJoris Vink
when running update -A, instead merge in the changes. 'kay xsa@
2007-01-28revert 1.108, the diff allowed ldd to print the load address of the binary,Dale Rahn
however this modified variables used by C++ backtrace code which caused it to crash. ok kettenis
2007-01-28regenMark Kettenis
2007-01-28Add nVIDIA GeForce 7800 GS. From Jim Razmus.Mark Kettenis
2007-01-28Fix a number of issues with vesabios discovered by miod@Gordon Willem Klok
1. Add bounds checking to vga_pci_mmap, fixing a potential security issue. Limit the amount of memory to what the vbe info structure says the card card has. This should be nicely refined to limit to the amount of memory needed by the active resolution and depth but this will do for the time being. 2. Fix several places in vesafb.c where the return of kvm86_bios_addpage() isnt being checked. Also ensure that if vesafb_get_mode_info() fails that it cleans up after itself by releasing the page it added. 3. Correct the range checks in vesafb_putcmap and vesafb_getcmap, harmonize code with similar code found else where. ok miod@
2007-01-28Fix pasto.Mark Kettenis
2007-01-28New test for exceptions.Mark Kettenis
2007-01-28Move test in its own directory.Mark Kettenis
2007-01-28Properly route lapic NMIs.Mark Kettenis
2007-01-28add Apple GC on the old world macsMartin Reindl
2007-01-28Return ESRCH instead of segfaulting when a thread ID could not be found.Mark Kettenis
ok marc@, krw@
2007-01-28optimize m68k writeback():Miod Vallat
- it can really only be invoked from trap(), not from other userret() callers, so it is safe to hardcode its docachepush parameter to 1. - use pmap_kenter_pa()/pmap_kremove() for the temporary mapping instead of pmap_enter()/pmap_remove(). optimize m68k userret(): - define PROC_PC for m68k systems. - only check want_resched when processing T_ASTFLT traps. - provide two version of userret(), one which will also invoke writeback() on 68040 if required, which is only invoked from trap(), and regular userret(). This speeds up system call returns.
2007-01-28Accept a leading 0x for the -n length parameter.Miod Vallat
Correctly check for out-of-bounds values for -s skip parameter, and use strtoll to parse it instead of strtol since this is an off_t value.