summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-05gracefully fall back when ControlPath is too large for aDamien Miller
sockaddr_un. ok markus@ as part of a larger diff
2011-05-04Switch atactl over to using opendev() instead of opendisk() so it canOwain Ainsworth
grok DUIDs now commands such as: # atactl b9b455bd99e393cd work as expected (while everything else that used to work still does). ok sthen@
2011-05-04allow "ssh-add - < key"; feedback and ok markus@Damien Miller
2011-05-04Massive diff to handle logins more correctly. iscsid will now doClaudio Jeker
better operational parameter negotiation but more is needed. Tested by todd@ and myself.
2011-05-04When printing scsi device ids, skip leading blanks and collapse multipleStuart Henderson
whitespace into one. Written after Mitja showed a particularly unwieldy attach line: sd0 at scsibus0 targ 2 lun 0: <ATA, HTS721010G9SA00, MCZI> SCSI3 0/direct fixed t10.ATA_____HTS721010G9SA00_______________________________blahblahblah ok/incorporating a suggestion from matthew@, krw@ likes it, dlg@ doesn't feel strongly either way.
2011-05-04When enqueueing offline mail, use a wait list to keep the number ofEric Faurot
forked processes below a reasonnable limit. This prevents smtpd from fork-bombing on startup when there are lots of mails in the offline queue. ok todd@ gilles@
2011-05-04Change window with mouse wheel over status line if mouse-select-windowNicholas Marriott
is on, from marcel partap.
2011-05-04Don't need vis.h anymore.Nicholas Marriott
2011-05-04Don't use strnvis for the title as it breaks UTF-8. set-titles is nowNicholas Marriott
off by default and we have to trust the terminal can understand what we send it anyway so there isn't any harm.
2011-05-04Check if mouse-select-pane is ON not off when setting mouse flags,Nicholas Marriott
reported by oga.
2011-05-04Fix a typo in a comment, from Michael W Bombardieri.Nicholas Marriott
2011-05-04Collapse m_pullup and m_pullup2 into a single function, as they'reBret Lambert
essentially identical; the only difference being that m_pullup2 is capable of handling mbuf clusters, but called m_pullup for shorter lengths (!). testing dlg@ ok claudio@
2011-05-04fix volume up and down using the keyboard keysJasper Lievisse Adriaanse
from Martin Pieuchot ok ratchov@
2011-05-04sync with mirrors.datStuart Henderson
2011-05-04Clean up gotos for listening sockets to make it obvious when packetsBret Lambert
are dropped and when normal program flow occurs. Change error return value of syn_cache_add() from 0 to -1 in order to clearly communicate intent. ok claudio@
2011-05-04Add a zlib.pc pkg-config file, based what newer zlibs ship.Jasper Lievisse Adriaanse
tested by landry@ in a bulk. ok miod@ sthen@
2011-05-04- note that quotes may have to be escaped from the shell and add an exampleJason McIntyre
(requested by Michael W. Bombardieri, who also provided the example; otto provided a better description) - reword the rest of the descriptions in EXAMPLES to make them a bit clearer ok otto
2011-05-03We need a little more room for out kernel stack, at least for now.Mark Kettenis
2011-05-03Properly save and restore the space registers to/from the trap frame.Mark Kettenis
2011-05-03determine the default device in backend code instead of the commonAlexandre Ratchov
code. This is simpler as long as not all backends use the same default.
2011-05-03Adjust to explicitly list ${libdir}.Jasper Lievisse Adriaanse
ok sthen@
2011-05-03Move SLIST initializations earlier so that failure handling paths canMatthew Dempsky
safely use them. Found by Clang. "go for it" marco@
2011-05-03spacesMarco Peereboom
2011-05-03If the string of the address to listen on is '-' then listen on allAlexandre Ratchov
addresses (ie pass NULL to getaddrinfo which would return 0.0.0.0 and :: in most cases)
2011-05-02Add missing byter order conversions in message headers. Fixes the caseAlexandre Ratchov
when the server and the client are not of the same endianness. Found by naddy.
2011-05-02set the TCP_NODELAY option for TCP connectionsAlexandre Ratchov
2011-05-02Remove unused variableCharles Longeau
ok krw@ otto@
2011-05-02Fix bad return value check for rcsnum_cmp()Charles Longeau
ok nickm@ xsa@
2011-05-02Fix a tyop which could potentially lead to null dereference.Charles Longeau
While there fix a dead store. Found by LLVM/Clang Static Analyzer. ok deraadt@
2011-05-02fix string containing state names used for debug printf()s,Alexandre Ratchov
add the missing SOCK_AUTH state
2011-05-02Fix potential null dereference.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok henning@ claudio@ krw@
2011-05-02Fix potential null dereference.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok claudio@ henning@
2011-05-02Fix potential null dereference.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok dlg@
2011-05-02Do not check malloc return value against NULL, as M_WAITOK is used.Charles Longeau
ok dlg@ krw@
2011-05-02Add definitions for the radeon kms related ioctls (i.e. gem/ttm onOwain Ainsworth
radeon). We don't use any of them yet, but the CS ioctl is needed for GL on r600 and the definitions are needed for libdrm_radeon
2011-05-02forgotten in previous;Jason McIntyre
2011-05-02Add PCI-Cardbus bridges and the most popular pcmcia and cardbus drivers. InMiod Vallat
my tree for a very long while, no reason not to allow people with such devices to have fun (and maybe experience new bugs) with them on sgi. Also, clean up some comments and explicitely mention which `option' lines are actually mandatory (ARCBIOS, TGT_xxx, etc).
2011-05-02Cope with userland mappings of unmanaged pages (i.e. device memory beingMiod Vallat
mmap'ed), by properly making these mappings uncached, and correctly accounting their removal to not get stuck with leftover pte pages. While there, change a can't happen infinite loop in pmap_destroy() into a KASSERT. feedback and ok kettenis@
2011-05-02remove workaround found in FreeBSD driver but not in Intel's officialDavid Hill
driver. Fixes 82578DC from only being able to negotiate at 10baseT. ok jsg@ please commit mikeb@
2011-05-02Some extra paranoia for if we fail to attach.Owain Ainsworth
2011-05-02document SO_RTABLE; with suggestions and ok jmc, claudioMike Belopuhov
2011-05-02recognize SO_RTABLE socket option at the SOL_SOCKET level;Mike Belopuhov
discussed with and ok claudio
2011-05-02store the peer address as it was specified in the policy in theMike Belopuhov
tree that is used to figure out whether the policy is active or not. makes active sa lookup via policy work for nat traversal. problem was reported and fix was tested by sthen, ok sthen, reyk
2011-05-02Add a workaround for an 82579 hardware bug that can result inJonathan Gray
lost rx packets between the mac and phy. From Laurence Tratt
2011-05-02More spring cleaningClaudio Jeker
2011-05-02Wrap some long lines and other cleanup. No functional change.Claudio Jeker
2011-05-02no need to escape `|'; as discussed with schwartzeJason McIntyre
2011-05-02Radeon HD3000; from Pedro la Peu.Owain Ainsworth
2011-05-02syncOwain Ainsworth
2011-05-02Radeon HD300; from Pedro la Peu. Thanks!Owain Ainsworth