summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/commit.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-07-15sync the elf types and their comments; ok millertjmc1-8/+6
2010-07-15document the missing "note section";jmc1-3/+33
reported by Michael Kerrisk, freebsd pr 147995 big thanks to miod and millert for filling in the blanks
2010-07-15knock out MetaGeek Wi-Spy 2.4i from attaching to uhid.sthen1-1/+2
2010-07-15syncsthen2-4/+16
2010-07-15add MetaGeek Wi-Spy 2.4isthen1-1/+5
2010-07-15store openssl error output during verification, and log it if it didn't work.espie1-3/+15
2010-07-15Correct function in panic string. From Christophe Fillotclaudio1-2/+2
2010-07-15Sync with diff/diffreg.c r1.75:ray2-10/+8
Return -1 on error as advertised. Handle case when only one stream failed. OK xsa, stsp
2010-07-15whitespaceespie5-39/+39
2010-07-15m_getptr(m, 0, ...) may return an mbuf different from m -- if m has noclaudio1-6/+6
data in it. m_getptr() hops over empty buffers and points to the first allocated data byte. Because of this the m_dup_pkthdr() call done by m_copym0() can panic because not the first mbuf is passed. Found the hard way by myself, diff by blambert@ commiitting for him since he is not around. Tested and OK myself
2010-07-15* Comment poll support in conf.hmglocker2-3/+8
* Comment why we call the video interrupt in the mmap interface now in uvideo.c
2010-07-15add two new members to structs audio_encoding and audio_prinfo.jakemsr43-224/+505
for both structs, the new members are 'bps' and 'msb', which describe the number of bytes per sample and data alignment in the sample, respectively. drivers must properly set these fields in the 'query_encoding', 'set_parameters' and 'get_default_params' hardware interface methods. discussed with ratchov, deraadt
2010-07-15limit the pools from 14 bits down. We cannot use PAGE_SIZE because itderaadt1-3/+3
is a variable on sparc. This should be revisited... after the arguments for pagesize vs 4K complete :)
2010-07-15the uvm_km_putpage is calling into tangly uvm guts again on not pmap direct.tedu2-22/+64
go back to something more like the previous design, and have the thread do the heavy lifting. solves vmmaplk panics. ok deraadt oga thib [and even simple diffs are hard to get perfect. help from mdempsky and deraadt]
2010-07-14syncsthen1-2/+1
2010-07-14sync from mirrors.datsthen1-58/+61
2010-07-14pass the correct af if not specified.dhill1-3/+3
fixes printing active connections twice. ok claudio@
2010-07-14Return -1 on error as advertised.ray1-5/+4
Handle case when only one stream failed. OK otto, millert
2010-07-14implement poll() for video(4)jakemsr4-23/+96
ok mglocker
2010-07-14The append side of a socketbuffer is not allowed to call sbflush().claudio1-3/+1
Learned the hard way. dlg@ confirmed that it is save to just remove them, the desync will still work but the reader needs to dequeue all packets first.
2010-07-14In urndis_decap(), delay the memcpy() for as long as possible. There ismk1-8/+9
no point in copying before having done the final sanity check (we copied before the last one). ok armani
2010-07-14urndis_newbuf() is only called with NULL as it's third argument so justmk1-26/+18
get rid of it. ok armani
2010-07-14Newer 8168x and 810x chipsets have a different way of stopping the chipset.naddy1-2/+7
From FreeBSD via Brad.
2010-07-14Make pane/window wrapping more logical (so with 10 windows, +10 fromnicm3-88/+116
window 5 stays in the same place), and tidy the code. From Tiago Cunha.
2010-07-14Another hand knitted offsetof() that needs to die. This time steal theclaudio1-6/+6
mask2prefixlen6 version from bgpd.
2010-07-14finally ssh synopsis looks nice again! this commit just removes a ton ofjmc1-26/+8
hacks we had in place to make it work with old groff;
2010-07-14use offsetof() instead of self knitted version to please gcc4.claudio1-2/+3
stolen from ospf.h
2010-07-14Zero the pitem array so checking items after those used works asnicm1-7/+6
expected, also do not look beyond the size of the array. ok otto deraadt
2010-07-14Let vga_pci.c build in kernel configs without acpi. ok kettenis@matthieu1-6/+9
2010-07-14Eliminate some unused malloc(9) type defines. Also get rid of thematthew4-47/+17
mysterious and unused mbtypes[] array in mbuf.h. ok tedu@, deraadt@
2010-07-14Fix a mrt fd leak by moving the block which closes finished dumps.claudio1-12/+10
The previous location also depended on poll results and in most cases was therefor not entered because finished dumps are not added to the poll array. Problem reported by Peter Haag, OK henning@
2010-07-14add regress tests for upcoming redirection changes to ftphalex2-4/+92
2010-07-14SCSI HBA drivers need to report success/error through xs, not xs->bp.matthew1-12/+8
By trying to do the latter, ioprbs(4) was inadvertently always signalling to the SCSI mid and upper layers that read/write requests succeeded, even if they failed or only partially completed. Light testing by claudio@, which is still way more effort than this driver deserved.
2010-07-14handle printing of RTM_DESYNC in route monitor.dlg1-6/+10
reviewed by deraadt@ written by sthen@ who said i should commit it cos he was going to sleep.
2010-07-14handle RTM_DESYNC. if the kernel says we're out of sync with the kerneldlg1-1/+10
routing table and interface list, do a reload of the kernel state. ive been running this in production for 2 or 3 weeks. tested by sthen@ ok sthen@ claudio@ deraadt@ code written by andrew sallaway at the univeristy of queensland.
2010-07-14if we produce a lot of rtsock messages it is possible we will hit adlg2-8/+91
condition that prevents us from queuing it, which in turn means that processes listening on the routing socket for changes to the kernel state will get out of sync. currently this is handled by the following comment: /* should notify about lost packet */ this change introduces a new rtsock message called RTM_DESYNC that notifies about lost packets and uses it instead of this comment. when we detect loss we flush all the message in the routing socket and attempt to queue an RTM_DESYNC message instead. to guarantee that we will enqueue DESYNC we keep trying it when an attempt to enqueue or dequeue any messages is made, and in the worst case a timeout tries to guarantee that desync is added to the socket. ive been running this in production for 2 or 3 weeks. tested by sthen@ ok sthen@ claudio@ deraadt@ code written by andrew sallaway at the univeristy of queensland.
2010-07-14oops; Fred Crowsonderaadt2-4/+4
2010-07-13s/timing_safe_cmp/timingsafe_bcmp/gdjm9-23/+23
2010-07-13update our recommended hash function to sha256 and note md5 is broken.tedu2-12/+7
ok deraadt jmc millert sobrado
2010-07-13use PHY semaphore on 8275/82576 adapters in addition to 80003es2lan.jsg1-4/+6
From SAITOH Masanobu. Confirmed to fix pr 6427, and should fix 6301 as well. Tested by a bunch of people, and discussed with claudio during c2k10.
2010-07-13Don't silently overwrite untracked local files with newly-addednicm1-4/+11
repository files. slightly earlier version ok zinovik xsa
2010-07-13Test for the awesome let's-silently-overwrite-local-files bug.nicm1-2/+18
2010-07-13delete unnccessary includederaadt1-3/+1
2010-07-13rename some thread related interfaces so they are logicalderaadt3-14/+14
2010-07-13regress for merge bug.nicm1-2/+17
2010-07-13Do not put the file into conflict if it is no longer modified (user hasnicm1-4/+1
edited it back to repository state). ok zinovik
2010-07-13PR 6423 fix for cvs too, requested by xsa@.nicm1-2/+2
2010-07-13Don't read before the beginning of the log message if it is zero-lengthnicm1-2/+2
(possible when it comes from stdin). Tweaked version of a fix from Peter Hendrickson in PR 6423. ok deraadt
2010-07-13fix overflow of dirsize; from FreeBSD; PR 6426; ok beck@ millert@otto1-2/+5
2010-07-13Do not put a data buffer on the stack; malloc it (we will use dma_allocderaadt1-4/+12
later, when we trust it) ok matthew