summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-22Remove obsolete comment.Mark Kettenis
2015-12-22assign pointers to NULL rather than 0, remove a needless castmmcc
2015-12-22assign pointers to NULL rather than 0mmcc
2015-12-22update examplesGilles Chehade
diff from Serguey Parkhomovsky <sergueyparkhomovsky@gmail.com> ok sunil@
2015-12-22Re-add config includesStefan Fritsch
These got lost in previous commit. This broke ppp, nmea, msts, endrun. Found the hard way by David Coppa
2015-12-22remove NULL-checks before free()mmcc
2015-12-22remove a NULL-check before free()mmcc
2015-12-22remove a NULL-check before free()mmcc
2015-12-22remove a NULL-check before free()mmcc
2015-12-22cast toupper's argument to unsigned charmmcc
ok millert@
2015-12-22The Apple SMC is implemented on a H8S/2117 chip. Communication with the chipMark Kettenis
becomes much more reliably if we pay attention to the IBF and OBF flags. This removes the need for excessive delays and retries, making operations complete in microseconds instead of seconds. This diff also removes flushing the read buffer after a read operations. This doesn't seem to be necessary, but we might need to put that back if the length of a reply changes for some keys. ok jung@, deraadt@
2015-12-22make it clear this needs to be run only for db filesJason McIntyre
since smtpd has switched to using plain files by default; ok sunil gilles
2015-12-22The loop index in grep_cmp() should be size_t to match the type ofTodd C. Miller
the length parameter. The return value of grep_cmp() is only used in a boolean context so make it return bool instead of the index. OK mmcc@
2015-12-22syncTheo de Raadt
2015-12-22Kill a trailing whitespace that snuck in with previous commit.Sunil Nimmagadda
2015-12-22Remove commands that are not implemented, at the moment. Added byMark Lumsden
accident in previous diff.
2015-12-22- yet another tiny step towards MP PF. This time we need to make sureAlexandr Nedvedicky
statekey attached to packet stays around, while accepted packet is routed through IP stack. OK mpi@, henning@
2015-12-22Correct expected results on v6 mcast bind on ANY, and add comments toVincent Gross
explain why they are expected.
2015-12-22Do not return EEXIST if the same address is added twice.Martin Pieuchot
Reported by sebastisa@. ok sebasitia@, stsp@, florian@, vgross@
2015-12-22assign pointers to NULL rather than 0mmcc
2015-12-22remove needless allocation castsmmcc
2015-12-22initialize a pointer to NULL rather than 0mmcc
2015-12-22Assign pointer variables to NULL rather than 0. No functional change.mmcc
2015-12-22Initialize a char* to NULL rather than 0.mmcc
2015-12-22commiting -> committingmmcc
2015-12-22Remove a couple needless allocation casts. No binary change.mmcc
2015-12-22Remove a needless allocation cast. No binary change.mmcc
2015-12-22Remove a couple needless allocation casts. No binary change.mmcc
2015-12-22Wrap long lines.Sunil Nimmagadda
Ok gilles@ jung@
2015-12-22Wrap long lines.Sunil Nimmagadda
Ok gilles@ jung@
2015-12-22Now that default smtpd.conf aliases table has been switched toSunil Nimmagadda
'file' backend, we no longer have to generate the .db files. Ok gilles@
2015-12-21minor tweaks;Jason McIntyre
2015-12-21regen MAKEDEVStefan Fritsch
2015-12-21add virtio-console driverStefan Fritsch
This patch adds a new driver for use of virtio-console devices as ttys. It's still in an early state and not compiled by default, yet. Currently it is only wired into amd64. i386 is still missing. Discussed with uebayasi@, deraadt@
2015-12-21Don't attempt to remove unix socket as it's owned by root andAlexandre Ratchov
we've already dropped root privileges.
2015-12-21regen MAKEDEVStefan Fritsch
2015-12-21Move ppp, nmea, endrun, and msts prototypes to tty.hStefan Fritsch
Fix inconsistent arguments for pppopen/pppclose/pppstart. Use passed in argument p in pppopen instead of curproc. "Looks good to me" deraadt@
2015-12-21remove NULL-checks before free()mmcc
2015-12-21remove NULL-check before free()mmcc
2015-12-21Recognise the rdseed instruction introduced with Broadwell.Jonathan Gray
Similar to changes made in FreeBSD. ok kettenis@
2015-12-21Goto a loop_end label rather than using a continue statement for anmmcc
error condition in an inner loop. Found with Coccinelle. Pointed out by tedu@, ok kettenis@ and deraadt@ about three months ago.
2015-12-21Introduce xen_intr_mask and xen_intr_unmask primitivesMike Belopuhov
Mask the event port during xen_intr_establish, but don't set the masked flag in the intsrc. By providing mask and unmask routines we allow the device to decide when to perform these actions. The port will still be unmasked during xen_intr_enable. This allows netfront to fulfil the intr_barrier pattern requirements fairly easily and at the same time should be sufficient for diskfront that doesn't need to fiddle with interrupt masking.
2015-12-21Remove NULL-checks before free().mmcc
2015-12-21Cleanup hypercall subsystem type definesMike Belopuhov
2015-12-21Don't unmask the port in xen_intr_establishMike Belopuhov
2015-12-21Switch to 'file' backend for aliases table for default configuration.Sunil Nimmagadda
Ok gilles@ jung@ millert@
2015-12-21add parsing tests that must not segfault based on Jonathan Gray initialMarc Espie
report.
2015-12-21Start accepting some sendmail compatible commandline arguments.Sunil Nimmagadda
This diff teaches smtpctl to understand '-bi -O AliasFile=<path_aliases>' and generate aliases.db. Ok gilles@ jung@ millert@
2015-12-21Only run newaliases(8) if we already have an aliases db.Antoine Jacoutot
2015-12-21Pass the destination and mask to rtable_mpath_reprio() in order to notMartin Pieuchot
use ``rt_node'' with ART.