summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-12-30Only do pullups when necessary, m_pullup() always prepends an mbufClaudio Jeker
which is very bad if it is not necessary as it causes scrary mbuf fragmentation. tested and OK mglocker@
2007-12-30Simplify code by avoiding manual manipulations of the free spaceKenneth R Westerback
counter. Call edit_countfree() instead. Feedback from otto@. ok millert@ "Go for it" deraadt@
2007-12-30Since 'c' now always covers the entire disk and is always FS_UNUSED,Kenneth R Westerback
there is no point in allowing the edit mode commands (a)add/(n)ame/(m)odify/(d)elete/(c)hange to pretend to fiddle with it. Some already checked for and avoided 'c', but do it in a consistant manner in all cases. ok millert@ otto@ marco@
2007-12-30Correctly handle non-null state frames on 68020 and 68030 in fpfault.Miod Vallat
2007-12-30do not repeat "usage:" twiceIgor Sobrado
ok jmc@
2007-12-30each usage requires its own lineIgor Sobrado
written with improvements by jmc@ ok jmc@
2007-12-30usage messages should have the form "usage: command [arguments]"Igor Sobrado
ok jmc@
2007-12-30use the same argument name in synopsis and usage; lowercase "usage:"Igor Sobrado
ok jmc@
2007-12-30add missing space between argument names and ellipsisIgor Sobrado
ok jmc@
2007-12-30add missing arguments to synopsis; fix brackets; lowercase "usage:"Igor Sobrado
ok jmc@
2007-12-30lowercase "usage:"; align synopsesIgor Sobrado
ok jmc@
2007-12-30minor improvement on the diff to r1.106Igor Sobrado
ok jsing@
2007-12-30sort flags in both synopsis and usage, file not commited in last diffIgor Sobrado
ok jmc@
2007-12-30sort flags in both synopsis and usageIgor Sobrado
ok jmc@
2007-12-30dont freeze lock or set caching modes on ata devices that arent disks, itsDavid Gwynne
not a good idea. found by simon@ who plugged a sata dvd drive into ahci.
2007-12-30enforce install -S, avoids races with make -j:Marc Espie
libtool does relink some files during install, and it can happen that it relinks stuff at the exact same time that ld is being reinstalled. okay kettenis@
2007-12-30Remove unused variable consintr. ok mbalmerAlexander Bluhm
2007-12-30In pf_normalize_tcpopt() call pf_pull_hdr() address family safe.Marcus Glocker
OK dhartmei@
2007-12-30syncTheo de Raadt
2007-12-30regenBrad Smith
2007-12-30- rename some SATA entries which are shared between the ATI SB700 and SB800 ↵Brad Smith
chipsets - add some new SATA entries for the ATI SB700 and SB800 chipsets - add the ATI SB700 IDE PCI id From Linux ok dlg@
2007-12-30Bring editor_add() code into line with the other editor_* functions.Kenneth R Westerback
The only visible change is allowing only one chance to specify a valid partition letter before returning to the main edit prompt. "This looks OK to me" millert@
2007-12-30regenBrad Smith
2007-12-30add the PCI id for the Sun Crypto Accelerator 6000 PCIe board.Brad Smith
ok dlg@
2007-12-30Make "scrub max-mss" rule work correctly;Marcus Glocker
In pf_normalize_tcpopt() pull the TCP options before processing them. This gets the correct TCP options even if an mbuf chain was used, instead like now pointing into an invalid mbuf data buffer. Will close PR 5623. Diff done together with dhartmei@. OK dhartmei@
2007-12-29update to tzcode2007j from elsie.nci.nih.gov; mostly ANSIficationTodd C. Miller
2007-12-29Override SoftFloat's countLeadingZeros32() with a faster, ff1-based, versionMiod Vallat
on m88k.
2007-12-29Had I known we had a kernel version of John Hauser's SoftFloat code, I wouldMiod Vallat
have jumped on it instead of basing the FPU completion work on the sparc FPU code. This is now repaired with this commit, and m88110_fp.c changes directory again, for the last time.
2007-12-29Unifdef NO_IEEE in the libkern softfloat code, and put an appropriate ruleMiod Vallat
in files.alpha to compensate for NO_IEEE kernels. This will allow the softfloat code to be used by other platforms than alpha.
2007-12-29Do not define _FP_DYNAMIC; no other platform defines this and nothing (eitherMiod Vallat
in kernel or in userland) uses it. ok deraadt@
2007-12-29update to tzdata2007j from elsie.nci.nih.govTodd C. Miller
2007-12-29add the IP-MIB ipAddrTable. it requires to encode the ipv4 addressesReyk Floeter
in the OIDs as the table index. the next step is to simplify the common mib implementation regarding the special requirements of these strange snmp tables.
2007-12-29switch from spls to mutexes for protecting the random state.David Gwynne
ok tedu@ djm@
2007-12-29fix comments after the members of scsi_adapter were changed.David Gwynne
prompted by krw@
2007-12-29Remove debug message. Found by Mike Belopuhov, tsk tsk deraadt.Marco Peereboom
2007-12-29Skip LBC on buswalk. Gets rid of unconfigured "Bus Converter Port" devicesMark Kettenis
on machines like the C360.
2007-12-29the scsi layer always had function pointers for asking the hba about aDavid Gwynne
device before issuing scsi commands to it, but it was never implemented, never used, and no hba actually filled them in. i came along and added another two function pointers for the same thing. this cleans up the extra pointers. ok krw@ marco@ miod@ deraadt@
2007-12-29syncTheo de Raadt
2007-12-28Use the correct packet maximum sizes for remote port and agent forwarding.Darren Tucker
Prevents the server from killing the connection if too much data is queued and an excessively large packet gets sent. bz #1360, ok djm@.
2007-12-28If initializing a frame buffer as glass console fails, instead of an invisibleMiod Vallat
panic (for you ichc fans out there), disable the wscons console and force a console device reselection, which ends up in picking a serial console. This should not happen, but just in case, it's a less rude behaviour.
2007-12-28Explicitely mention we are the console device, when applicable.Miod Vallat
2007-12-28There is no need, and no point, to initialize panicstr here.Miod Vallat
2007-12-28Add a few more K-class models to the list of machines that have more devicesMark Kettenis
than PDC tells us about.
2007-12-28printf field widths are always int, so add casts to removeCharles Longeau
"warning: field width is not type int" "looks good" otto@
2007-12-28printf field widths are always int, so add a cast to removeCharles Longeau
"warning: field width is not type int" "looks good" otto@
2007-12-28printf field widths are always int, so add a cast to removeCharles Longeau
"warning: field width is not type int" "looks good" otto@
2007-12-28Do not expose struct pmap unless _KERNELMiod Vallat
2007-12-28Repair fallout from libkern changes.Miod Vallat
2007-12-28syncTheo de Raadt
2007-12-28shrink the max number of supported OID elements from 128 to 32.Reyk Floeter