Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-18 | Add cvs tag, author name and year | Todd C. Miller | |
2010-09-18 | some 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-18 | Test default precision when ndigit is negative. | Todd C. Miller | |
2010-09-18 | Add more test vectors. | Todd C. Miller | |
2010-09-18 | claim that we are pkg-config 0.22; ok ajacoutot@ ckuethe@ | Stuart Henderson | |
2010-09-18 | add forgotten ``return NULL'' when a .wav file fails to get the | Alexandre Ratchov | |
device with the required mode | |||
2010-09-17 | revert scsi_base.c r1.195 and scsiconf.h r1.138 as it screws up with some | David Gwynne | |
disks in atascsi. as reported in pr6470 | |||
2010-09-17 | fix "set yo yes" typo. | Stuart Henderson | |
2010-09-17 | Add 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-17 | don't forget to free program header sections when writing | Mike Belopuhov | |
core files. fixes a local DoS that can be carried out by an unprivileged user. ok kettenis | |||
2010-09-17 | don'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-17 | use audio(4) DVACT_{QUIESCE,RESUME} | Jacob Meuser | |
2010-09-17 | back out the -Fr hunk from previous: deraadt points out it is incorrectly | Jason McIntyre | |
worded. i think what is there now is clear enough. | |||
2010-09-17 | Recognize MIPS IV extra FPU condition codes in MipsEmulateBranch(). | Miod Vallat | |
2010-09-17 | Protect a few more defines with _KERNEL checks, and also allow some of them | Miod Vallat | |
to be visible if _STANDALONE. This will eventually be used by the upcoming new-and-improved loongson bootblocks (in the works). | |||
2010-09-17 | FPU control/status register defines, and upcoming userland function | Miod Vallat | |
prototypes to allow control of the FPU c/sr FS field. | |||
2010-09-17 | Correctly disassemble `branch likely' instructions. | Miod Vallat | |
2010-09-17 | There is only one code for coprocessor BC opcodes, so don't bother to handle | Miod Vallat | |
a second (invalid) opcode; confirmed by all mips core documentation. | |||
2010-09-17 | Do not trust the FPU identification register obtained from KL configuration | Miod Vallat | |
on IP27 as well; spotted by krw. | |||
2010-09-16 | - note that -Fr puts the filer in a "pass all" state | Jason 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-16 | pass proper argument to the proc_sig_handler and check env for | Mike 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-15 | fix SYNOPSIS; | Jason McIntyre | |
2010-09-14 | Provide a LOCAL_ALIGNMENT() macro, as on other strict alignment architectures. | Miod Vallat | |
2010-09-14 | Recognize the new sequence gcc4 uses to trap on divide by zero. | Miod Vallat | |
2010-09-14 | Undo unrelated changes commitedby mistake. | Miod Vallat | |
2010-09-14 | Force .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-14 | unstatic variable we need elsewhere, fixes stand build on tezro | Marco Peereboom | |
ok jsing | |||
2010-09-14 | Fix couple of warnings | Marco Peereboom | |
ok miod | |||
2010-09-14 | document atime/mtime | Marc Espie | |
2010-09-14 | set 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-14 | Forc -mno-abicalls when compiling non-PIC bootblocks, for gcc 4 passes -KPIC | Miod Vallat | |
to the assembler now unless -mno-abicalls is specified. | |||
2010-09-14 | dont leak an xs in ststart if its called while the device is dying. | David Gwynne | |
pointed out by matthew@ | |||
2010-09-14 | scsi_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-14 | Clean up sense mode handling to make residual value handling clearer | Kenneth R Westerback | |
and more plausibly correct. Tested by jsing@ and myself. | |||
2010-09-14 | the openings member of scsi_link is the maximum number of commands that a | David 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-14 | allow devices on fc and sas adapters to use all the openings the chip can | David Gwynne | |
provide. spi parts are still limited. ok krw@ | |||
2010-09-13 | Parse and ignore the \k, \o, \w, and \z roff escapes, and recursively | Ingo 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-13 | Added OCTEON in cpu type. ok miod@ | Takuya ASADA | |
2010-09-13 | Prevent .Pp and .Lp from looping endlessly on punctuation. | Ingo Schwarze | |
Fix for .Pp from kristaps@, i applied the same to .Lp. Bug reported by espie@. | |||
2010-09-13 | various tweaks, based on a diff from Chris Palmer; | Jason McIntyre | |
ok marco | |||
2010-09-13 | Reduce the output of MPLS information without removing information. | Claudio Jeker | |
This gives a more compact output. | |||
2010-09-13 | First shot at ICMP error handling inside an MPLS path. Currently only | Claudio Jeker | |
TTL exceeded errors for IPv4 are handled. This makes traceroute through MPLS tunnels work (including RFC 4950 MPLS extension header). "best to get it in." deraadt@ | |||
2010-09-13 | Change icmp_reflect() so that it does not call icmp_send directly. This | Claudio Jeker | |
allows other users (like MPLS) use this function instead of rolling a own version. Implement icmp_do_exthdr() to attach an RFC 4884 extension header to an ICMP error produced by icmp_do_error(). "best to get it in." deraadt@ | |||
2010-09-13 | Using a normaly unavailable 0.0.0.1 gateway on routes on sppp(4) based | Claudio Jeker | |
devices is a bad idea. The problem is that the default route per se works but PMTU is unable to clone host routes because the gateway is unreachable. Fix sppp(4) so that it walks the routing table and fixes the gateways. This makes PMTU work again. Diff tested by weerd@ and markus@ (older version) for a long time. | |||
2010-09-13 | if a busy sas device is unplugged, the pending io on that device will | David Gwynne | |
never complete. when we get a detach event from the firmware, we currently deactivate the device and then request the scsi midlayer attempt to detach the device. this diff now deactivates the device and then resets the target, forcing the ioc to complete the pending operations. once the reset has completed we then request a detach of the kernel device. this lets me hotplug busy sas disks without leaking scsi_xfers or bufs or anything. | |||
2010-09-13 | dont reuse the event notifications ccbs id for the acknowledgement. | David Gwynne | |
2010-09-13 | im not convinced we only have one outstanding event to ack at a time. this | David Gwynne | |
steals^Wleverages the code used in mpii for handling a list of events to acknowlede. tested by hotplugging sas disks. | |||
2010-09-13 | sas io unit page 0 and 1 | David Gwynne | |
2010-09-13 | i got the order of the bits in the cache page back to front. how | David Gwynne | |
embarrsssment. discovered by okan@ |