summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-19add support for 82583V. Confirmed to work on Portwell CAD-0205.YASUOKA Masahiko
ok jsg@
2010-09-19remove a phantom control character;Jason McIntyre
2010-09-19more wacky macro fixes;Jason McIntyre
2010-09-19fix some unbalanced quoting, and a little whitespace removal;Jason McIntyre
2010-09-19- remove some silly .Tn/.TmJason McIntyre
- supply a missing -width to one of the lists
2010-09-19.Tm -> .NmJason McIntyre
2010-09-19check the cdb length on the scsi commands we emulate in atascsi as a way toDavid Gwynne
check that the midlayer is doing the right thing. ok krw@
2010-09-19Check the right mask for additional functions in phy code for 82575Jonathan Gray
and don't treat a MNG read timeout as fatal as per the Intel code in FreeBSD. With these changes Peter Bisroev no longer sees problems with phy initialisation across reboots on ET quad 82575 cards. ok claudio@
2010-09-19wrap a long lineTheo de Raadt
2010-09-19- remove BUGS: it was out of dateJason McIntyre
- better Nd; from schwarze ok schwarze
2010-09-19Move setting of reception of broadcast packets from lii_init() intoStuart Henderson
lii_iff() to be consistent with age/alc and other drivers. No functional change. From Brad, tested by oga@.
2010-09-18Add cvs tag, author name and yearTodd C. Miller
2010-09-18some macro cleanup:Jason McIntyre
- remove some old groff workarounds in SYNOPSIS - avoid "Op ... Oc" constructions - avoid empty Sq/Dq - change some incorrect Xr
2010-09-18Test default precision when ndigit is negative.Todd C. Miller
2010-09-18Add more test vectors.Todd C. Miller
2010-09-18claim that we are pkg-config 0.22; ok ajacoutot@ ckuethe@Stuart Henderson
2010-09-18add forgotten ``return NULL'' when a .wav file fails to get theAlexandre Ratchov
device with the required mode
2010-09-17revert scsi_base.c r1.195 and scsiconf.h r1.138 as it screws up with someDavid Gwynne
disks in atascsi. as reported in pr6470
2010-09-17fix "set yo yes" typo.Stuart Henderson
2010-09-17Add gcvt() regress with test vectors derived from perl regress.Todd C. Miller
Does not currently pass, which is why perl can't use it to format doubles.
2010-09-17don't forget to free program header sections when writingMike Belopuhov
core files. fixes a local DoS that can be carried out by an unprivileged user. ok kettenis
2010-09-17don't try to get the current stream postion when the device is stopped,Alexandre Ratchov
and don't generate clock ticks (ie don't invoke the sio_onmove(3) call-back).
2010-09-17use audio(4) DVACT_{QUIESCE,RESUME}Jacob Meuser
2010-09-17back out the -Fr hunk from previous: deraadt points out it is incorrectlyJason McIntyre
worded. i think what is there now is clear enough.
2010-09-17Recognize MIPS IV extra FPU condition codes in MipsEmulateBranch().Miod Vallat
2010-09-17Protect a few more defines with _KERNEL checks, and also allow some of themMiod Vallat
to be visible if _STANDALONE. This will eventually be used by the upcoming new-and-improved loongson bootblocks (in the works).
2010-09-17FPU control/status register defines, and upcoming userland functionMiod Vallat
prototypes to allow control of the FPU c/sr FS field.
2010-09-17Correctly disassemble `branch likely' instructions.Miod Vallat
2010-09-17There is only one code for coprocessor BC opcodes, so don't bother to handleMiod Vallat
a second (invalid) opcode; confirmed by all mips core documentation.
2010-09-17Do not trust the FPU identification register obtained from KL configurationMiod Vallat
on IP27 as well; spotted by krw.
2010-09-16- note that -Fr puts the filer in a "pass all" stateJason McIntyre
- note that -f replaces the current ruleset based on a diff from Anders Langworthy, but altered by mcbride and henning; ok henning
2010-09-16pass proper argument to the proc_sig_handler and check env forMike Belopuhov
NULL before dereferencing. fixes an annoying crash. ok reyk
2010-09-15- prevent about then dots from being emitted by my rum(4) upon attach.Jasper Lievisse Adriaanse
2010-09-15fix SYNOPSIS;Jason McIntyre
2010-09-14Provide a LOCAL_ALIGNMENT() macro, as on other strict alignment architectures.Miod Vallat
2010-09-14Recognize the new sequence gcc4 uses to trap on divide by zero.Miod Vallat
2010-09-14Undo unrelated changes commitedby mistake.Miod Vallat
2010-09-14Force .rodata.str1.4 section to be merged into .text for the 32-bit bootblocks,Miod Vallat
fallout from using -mno-abicalls noticed by jsing@
2010-09-14unstatic variable we need elsewhere, fixes stand build on tezroMarco Peereboom
ok jsing
2010-09-14Fix couple of warningsMarco Peereboom
ok miod
2010-09-14document atime/mtimeMarc Espie
2010-09-14set separate fields for atime/mtime in file entry, use them while creating.Marc Espie
allows user to undef them, and thus not to set utimes. Use that to not set utimes for pkginfo. fixes kili@'s bug in a nicer way wrt Ustar interface...
2010-09-14Forc -mno-abicalls when compiling non-PIC bootblocks, for gcc 4 passes -KPICMiod Vallat
to the assembler now unless -mno-abicalls is specified.
2010-09-14dont leak an xs in ststart if its called while the device is dying.David Gwynne
pointed out by matthew@
2010-09-14scsi_xsh_del the xs handler on DEACTIVATE.David Gwynne
same change as sd.c r1.212. matthew@ pointed out that cd(4) and st(4) would need the same change.
2010-09-14Clean up sense mode handling to make residual value handling clearerKenneth R Westerback
and more plausibly correct. Tested by jsing@ and myself.
2010-09-14the openings member of scsi_link is the maximum number of commands that aDavid Gwynne
scsi device can have in flight. instead of counting users of openings on the bus by taking away from the openings value, count the number of pending commands on the bus in a new pending variable. this lets us know how many outstanding commands there are. we can then use that to make sure that all commands a device has generated get completed before detaching the device. this helps avoid resource leaks and use after frees. tested by me on pci ehci/umass, fc mpi, and sas mpi. tested by jakemsr on cardbus ohci umass. it found issues in sas mpi which were fixed as a result of this diff. ok krw@
2010-09-14allow devices on fc and sas adapters to use all the openings the chip canDavid Gwynne
provide. spi parts are still limited. ok krw@
2010-09-13Parse and ignore the \k, \o, \w, and \z roff escapes, and recursivelyIngo Schwarze
ignore embedded escapes and mathematical roff subexpressions. In roff copy mode, resolve "\\" to '\'. Allow ".xx\}" where xx is a macro to close roff conditional scope. Mandoc now handles the special character definitions in the pod2man(1) preamble, so remove the explicit redefinitions in chars.c/chars.in. From kristaps@. I have checked that this causes no relevant change to the Perl manuals. The only change introduced is that some non-ASCII characters rendered incorrectly before are now rendered incorrectly in a different way. For example, e accent aigu was "e", now is "e'" and c cedille was "c", now is "c,".
2010-09-13Added OCTEON in cpu type. ok miod@Takuya ASADA