summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-11-07Replace option TGT_ORIGIN200 and TGT_ORIGIN2000 with a single option,Miod Vallat
TGT_ORIGIN, which enables support for all IP27 and IP35 systems. The original two options have always been used together, and go back to when pefo thought supporting multiple nodes would be significant work. Since an Origin 200 can be a dual-node system, making a distinction between single node and multiple node systems is a moot point anyway. Be sure to rerun config(8) before rebuilding a kernel.
2009-11-07Change sgi system identification from a single system type list, to a smallerMiod Vallat
system type list (which really is the system family) and a subsystem type. No functional change yet.
2009-11-07Document @option always-updateMarc Espie
2009-11-07too specific a nameTheo de Raadt
2009-11-07say which is whichTheo de Raadt
2009-11-07repair local operations after the -DRMT changes; from Matthew ClarkeTheo de Raadt
2009-11-06Sync output of usage() with man page SYNOPSIS.Mark Kettenis
requested by jmc@
2009-11-06Provide assembly version of sqrtl(3).Mark Kettenis
ok pirofti@
2009-11-06Correct and shorten the instructions what to do after accidentallyIngo Schwarze
deleting the ypservers.db file, both in the manual and in the FAQ; original suggestion to improve this from ajacoutot@, my wording tweaked by jmc@. While here, resolve text duplication in the manual.
2009-11-06Remove Speedo dir from mtree at we do not install these fonts anymore.Antoine Jacoutot
ok matthieu@
2009-11-06syncTheo de Raadt
2009-11-06correct values for set reassembleEric Faurot
ok henning@ pyr@
2009-11-06Don't try enable/disable the event if the window pane is dead (fd == -1), asNicholas Marriott
the event will have been freed.
2009-11-06cosmetic. claudio@ okFederico G. Schwindt
2009-11-06When rebooting IP27 or IP35 systems, do not request the prom to skip diagnosticsMiod Vallat
anymore, as this causes the nsphy connected to the onboard iec to sometimes disappear after a warm boot. Unfortunately this brings back the long reboot times on Origin 200, despite still asking for no memory test.
2009-11-05evbuffer_readline() assumes end of line to be \r, \n, \r\n, \n\r or \r\r.Gilles Chehade
smtp protocol expects lines to end with \r\n. if a client sends a very long line which is unfortunately read up to \r, evbuffer_readline() will return the line, then will detect another line when the buffer is filled again and starts with \n, returning again with an empty line. this is a bug which trigger very rarely and usually shows up as an empty line in the middle of headers, causing all subsequent headers to appear as part of the body to most mail user agents. upstream fixes this with evbuffer_readln() in version 2.0 of libevent, a mail will be sent to see if they can backport it, meanwhile we fix it by introducing evbuffer_readln_crlf(). discussed with and ok jacekm@
2009-11-05Clear to the end of the screen from the right starting point when drawingNicholas Marriott
line-by-line (in panes or if ed not supported). Fixes problem spotted by Frank Terbeck.
2009-11-05IPv6 support for divert sockets.Michele Marchetto
tested by phessler@ pyr@ ok claudio@ "go ahead" deraadt@
2009-11-05Implement -r option that dunps the contents of a PCI ROM to file.Mark Kettenis
ok oga@
2009-11-05adding an interface if it already is added should be successful, not give aTodd T. Fries
bogus and misleading error, this permits re-running bridgename.if(5) files etc without confusion prodded/found by deraadt@ ok deraadt@ phessler@ henning@ stsp@
2009-11-05Add a new PCIOCGETROMLEN ioctl, to give users of PCIOGETROM a chance toMark Kettenis
allocate a buffer of the right size. ok oga@
2009-11-05Provide assembly version of sqrtl(3).Mark Kettenis
ok otto@
2009-11-05Old xterm F1-F4 are \033O_P not \033[O_P.Nicholas Marriott
2009-11-05Unused variable. Aargh.Nicholas Marriott
2009-11-05Switch the tty key tree over to an (unbalanced) ternary tree which allowsNicholas Marriott
partial matches to be done (they wait for further data or a timer to expire, like a naked escape). Mouse and xterm-style keys still expect to be atomic.
2009-11-05Adjust the description of network translation to match the codeStuart Henderson
following the nat-to changes. Reworked slightly from a diff from eric@. ok henning jmc
2009-11-05fortunes fix from dougb@freebsd, revision 198921Jason McIntyre
2009-11-05another log_debug() cleanupGilles Chehade
2009-11-05some structures reference the maps they use by their id, if we allow 0 as aGilles Chehade
valid map id, then we have no way to know for these structures if they have a reference to a map, or if the member was not set. make map id start at 1.
2009-11-05Consider DNS lookups that result in NXDOMAIN to be a permanent failure.Joel Sing
ok gilles@ jacekm@
2009-11-05Include a Date: header in bounce messages.Joel Sing
ok jacekm@ gilles@
2009-11-05cleanup a bit the log_debug outputGilles Chehade
2009-11-05Introduce a 6yz status code, used internally to report permanent errors.Joel Sing
The 1yz and 6yz status codes are now removed prior to reporting the status message in bounce messages, which provides an easy way to distinguish between local and remote status messages. Initial diff from jacekm@ ok gilles@ jacekm@
2009-11-05key_string_lookup_key uses a static buffer, so copy its output into the workingNicholas Marriott
buffer before calling the command print function which can also use it (eg send-keys).
2009-11-05- introduce lka_session_destroy() which replaces the splay tree removal andGilles Chehade
free(lkasession) in lka_expand_rcpt() - while at it, plug a very very unlikely memory leak which i spotted while reviewing the logic
2009-11-05Key flags are only used for initialisation so they are not needed in the mainNicholas Marriott
tty_key struct.
2009-11-05- move a couple prototypes in smtpd.hGilles Chehade
- remove prototypes from deprecated functions
2009-11-05sort pci_matchid's, from Brad.Stuart Henderson
2009-11-05EVLOOP_ONCE takes care of the wakeup, so no need to call event_loopexit(NULL).Nicholas Marriott
2009-11-05Now all timers are events, there is no longer any need to wake up every 50 ms -Nicholas Marriott
only wake up when an event happens.
2009-11-05Switch tty key input over to happen on a read event. This is a bit moreNicholas Marriott
complicated because of escape input, but in that case instead of processing a key immediately, schedule a timer and reprocess the bufer when it expires. This currently assumes that keys will be atomic (ie that if eg F1 is pressed the entire sequence is present in the buffer). This is usually but not always true, a change in the tree format so it can differentiate potential (partial) key sequences will happens soon and will allow this to be fixed.
2009-11-05in rpipe_done (wpipe_done), all buffers must be detachedAlexandre Ratchov
before deleting the writer (reader) otherwise the later could trigger rpipe_done again.
2009-11-05bump copyrightsMarco Peereboom
2009-11-05Make compile on 32 bit as well.Marco Peereboom
From James Giannoules
2009-11-05The big diff dlg committed to the midlayer breaks NO_CCB andMarco Peereboom
TRY_AGAIN_LATER. NO_CCB is a timer based mechanism that can trivially be made to fail by running IO to two or more disks simultaneously. The TRY_AGAIN_LATER thing is more subtle because it now is a permanent failure instead of transient however this is much harder to hit because something must have gone wrong before it hits. ok deraadt krw miod
2009-11-05BUS_DMA_NOCACHE is defined on all archs that include this driverJacob Meuser
from Brad
2009-11-05Convert the key repeat timer to an event.Nicholas Marriott
2009-11-04Change window name change to use a timer event rather than a gettimeofday()Nicholas Marriott
check every loop.
2009-11-04Move status timer check into the global once-per-second timer, this could maybeNicholas Marriott
be done better but one every second is better than once every 50 ms.
2009-11-04Use timeout events for the identify and message timers.Nicholas Marriott