summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-01-23Fixes for static integer settingJordan Hargrave
thanks to giovanni ok marco@
2007-01-23Don't fatal() when unexpected files are encountered in the workingRay Lai
copy. Allows obj/ directories to exist (which are typically symlinks.) OK joris@
2007-01-22Fix a comment and reduce the chattyness of some debug.Michael Knudsen
2007-01-22Add acpidock here too.Michael Knudsen
Gently reminded by marco (``AMD64!'').
2007-01-22Some nits from fkr@, thanks!Michael Knudsen
2007-01-22Add commented out acpidock(4) entry.Michael Knudsen
Reminded by marco.
2007-01-22Hook up acpidock.4 to the build.Michael Knudsen
2007-01-22List acpidock(4) with the other drivers.Michael Knudsen
2007-01-22Man page for acpidock(4).Michael Knudsen
Input and ok jmc
2007-01-22Actually look for docking stations by looking for _DCK nodes.Michael Knudsen
ok marco
2007-01-22Tell config about acpidock.Michael Knudsen
ok marco
2007-01-22Add driver for ACPI docking stations.Michael Knudsen
Not completely functional yet, e.g. undocking doesn't work yet but put it in the tree to be able to safely work on this. ok marco
2007-01-22Allow pmap_zeropage and pmap_copypage to work with cache enabled onMiod Vallat
MicroSPARC-1, since cache is not write allocate; also provide a smarter routine to flush a small section of the data cache, but do not enable it since we almost never flush less than 2KB (which is the whole MS1 D cache size); adapted from NetBSD, tested on SPARCclassic.
2007-01-22use the MI DP8390 driver instead of rolling our own functionsMartin Reindl
from NetBSD
2007-01-22fix detection of whether we should show progress meter or not: scpDamien Miller
tested isatty(stderr) but wrote the progress meter to stdout. This patch makes it test stdout. bz#1265 reported by junkmail AT bitsculpture.com; of dtucker@
2007-01-22return error from do_upload() when a write fails. fixes bz#1252: zeroDamien Miller
exit status from sftp when uploading to a full device. report from jirkat AT atlas.cz; ok dtucker@
2007-01-22use a more sensible value for -K example, from tedu@Alexander von Gernler
ok jmc@
2007-01-22Fix KAME cvsweb urlsMiod Vallat
2007-01-22iterate over the endpoints looking for appropriate interface descriptors toDavid Gwynne
use. this makes my adsl modem and ckeuthes cable modem work. idea from freebsd, via a diff from Krystian Baniak
2007-01-22regenerateChris Kuethe
ok dlg@
2007-01-22Add the USB interface for my cable modem which is now usableChris Kuethe
ok dlg@
2007-01-21Use addic. %r31,%r31,1 instead of addic. %r31,%r31,%r1.Mark Kettenis
2007-01-21Use MII_ANEGTICKS_GIGE instead of MII_ANEGTICKS.Mark Kettenis
2007-01-21Fix typo. From brad@Mark Kettenis
2007-01-21don't assume our directory vnode will be flushed out after us, fixesPedro Martelletto
crash when unmounting nfs volumes, okay thib@, krw@ and mickey@
2007-01-21add support for the -A flag;Xavier Santolaria
wrap some lines while there. OK joris@.
2007-01-21spacesKevin Steves
2007-01-21spacesKevin Steves
2007-01-21Remove bogus check for old firmware.Ryan Thomas McBride
Identical fixes from myself and brad@, also reported by chefren@pi.net.
2007-01-20-Wstack-larger-than support, copied from gcc2.Miod Vallat
2007-01-20Add media_fileno, media_blkno into st_softc and report their valuesKenneth R Westerback
back via MTIOCGET ioctl, rather than always reporting -1 (unknown). Simple 'Set to 0 on rewind, increment on file marks and positioning, and set back to -1 on any ambiguity' logic. No functional impact on current operation. Should allow things like Bacula to work much faster by keeping track of the current media position. Adapted from FreeBSD code. ok beck@
2007-01-20Ignore SIGPIPE in the parent and RDE as well.Claudio Jeker
2007-01-20typoJoris Vink
2007-01-20Add missing check for fgets return value inThordur I. Bjornsson
cvs_get_repository_name(). OK joris@
2007-01-20when retrying a write, the position was previously not updated.Pierre-Yves Ritschard
ok reyk@
2007-01-20Do not panic on non-fatal iommu errors.Mark Kettenis
2007-01-20Prevent negative array index accesses when strlen(buff) == 0.Ray Lai
OK joris@
2007-01-20more safety checks for file->file_rcsrev;Joris Vink
'cool' niallo@
2007-01-20sweep opencvs for missing rcs_translate_tag() return checks.Niall O'Higgins
2007-01-20check return value of rcs_translate_tag(). prevents a segfault found by ↵Niall O'Higgins
todd@. still need to fix tag translation though. ok joris@
2007-01-20move the interrupt establishment till after everything in the softc isDavid Gwynne
set up and allocated (which happens in a mountroothook). this prevents an early call to the interrupt handler from causing a null deref when trying to look into the unallocated regions. found by mcbride when ciss and bnx were sharing an interrupt. mounting root caused interrupts before the bnx was properly set up. "commit your fix" mcbride@
2007-01-19another place to check for DT_UNKNOWN for d_type for afs/nfsTodd T. Fries
2007-01-19When we hit a DT_UNKNOWN for dirent->d_type in our filelist functions,Joris Vink
stat() the filepath to get the correct type, and therefor add it to the appropriate list. This fixes opencvs with CVSROOTs on NFS and AFS, because they both return D_UNKNOWN for directories (afs even for files too) in dirent->d_type. problem found by thib@ and todd@ tested by thib@, todd@, ok niallo@
2007-01-19add an EXAMPLES section;Jason McIntyre
from mark lumsden via otto, tidied up somewhat by myself; ok otto claudio
2007-01-19Update comment (on how long we wait for operation to complete) reflectTom Cosgrove
reality, and remove the maxpolls stuff at the same time. Still disabled in-tree.
2007-01-19bnx_init() takes a pointer to sc, not ifp.Ryan Thomas McBride
2007-01-19add `10/100' to .Nd; from bradJason McIntyre
2007-01-19move cvs_import() proto to the correct place.Xavier Santolaria
2007-01-19Some '= 0' -> '= NULL' cleanup for pointer fields and return values.Kenneth R Westerback
From Brad. Tested by nick@ just to be sure.
2007-01-19Workarounds for DMA HW errata on pci express chips. Based on FreeBSDKenneth R Westerback
changes but with the more conservative (i.e. specific) chip matching logic of Linux's tg3. No change except to pci express chips. From Brad. Tested by brad & thib@ (BCM5750) and pedro la peu (BCM5752).