summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-12the referred to EXAMPLES section is now in strncpy(3);Jason McIntyre
issue reported by scott cheloha ok otto
2016-11-12Kill the /usr/include/ssl symlinkJeremie Courreges-Anglas
Proposed some time ago by tedu@, builk build by ajacoutot@
2016-11-11Move ofp_validate_header() into ofp_common.c. No functional change.Reyk Floeter
2016-11-11Export p_cpuid via sysctl for all processes; ok guentherMike Belopuhov
2016-11-11Reorder atomic operations dealing with sc_tx_availMike Belopuhov
The atomic decrement of the number of available descriptors must be performed before sending the RNDIS message to the hypervisor so that packet transmit completion that may execute in parallel won't increase the value past the maximum.
2016-11-11Remove "workarounds" for the read and write path that were needed toReyk Floeter
handle /dev/switch connections that didn't quite behave like TCP connections (no support for writev, no partial reads). With rzalamena's changes to switch(4), it now works as expected and doesn't need any special treatment anymore. OK rzalamena@
2016-11-11Remove mutexes protection from the switchctl as they don't seem to beRafael Zalamena
doing anything for us, and remove some whitespaces from the header that can be found near the removed lines. ok mikeb@
2016-11-11Print the route cached at the inp with netstat -P. While there,Alexander Bluhm
fix a compiler warning about missing prototype. OK claudio@ mpi@
2016-11-11Fix regress after moving ofp.h to sys/net/Reyk Floeter
2016-11-11Bump TLS_API due to recent feature additions and changes.Joel Sing
2016-11-11Change the return value of tls_config_set_protocols() andJoel Sing
tls_config_set_verify_depth() from void to int. This makes them consistent with all other tls_config_set_* functions and will allow for call time validation to be implemented. Rides libtls major bump. ok beck@
2016-11-11Do not crash with run-shell -b and no window pane available, reported byNicholas Marriott
Sergei Dyshel.
2016-11-11Clean up FFS option handling somewhat; no functional change.Martin Natano
2016-11-11Optimize for space by default.Martin Natano
ok deraadt
2016-11-11syncTheo de Raadt
2016-11-11Disable ec assembly for amd64 pending fixes for ssh, and bumpBob Beck
majors appropriately
2016-11-11add copyright and licenseIngo Schwarze
and change the reference to BIO_set_flags() from .Fn to .Xr: we do have that function and we should import the manual
2016-11-11add Copyright and license,Ingo Schwarze
simplify the BIO_callback_ctrl() prototype, and change .Fn to .Xr for two functions documented elsewhere
2016-11-11add Copyright and licenseIngo Schwarze
and delete useless and incorrect sentence "None of the functions presented here return any value."
2016-11-11import ASN1_TYPE_get(3) from OpenSSL,Ingo Schwarze
deleting ASN1_TYPE_unpack_sequence() and ASN1_TYPE_pack_sequence() which we don't have
2016-11-10Add support for "allwinner,sun9i-a80-apb1-clk" compatible clocks.Mark Kettenis
This makes the serial console work properly and makes Cubieboard4 go multi-user.
2016-11-10Set the reserved field to zeroMike Belopuhov
2016-11-10Restart the IFQ transmit routine only once per interruptMike Belopuhov
2016-11-10RNDIS data command is always the same and can be reusedMike Belopuhov
2016-11-10Add support for partial writes in switchwrite so we can use multipleRafael Zalamena
write() to write one packet. With this we also get support for writing multiple ofp packets with a single write. ok mikeb@
2016-11-10Extend documentation a bit. It'll probably need some adjustments soon.Antoine Jacoutot
2016-11-10missing semicolon at end of rule. yacc doesn't seem to mind, though.Ted Unangst
from Edakawa
2016-11-10minor cleanup;Jason McIntyre
2016-11-10Use the NdpIndex of the NCM header as the offset of the NCM pointer insteadGerhard Roth
of assuming tha the NCM pointer will follow immediately after the header. Tested by Bryan Vyhmeister and Otte Moerbeek ok otto
2016-11-10import from OpenSSL,Ingo Schwarze
deleting ASN1_TIME_diff() which we don't have
2016-11-10The simple UTF-16 decode routine stopped too early due to wrong calculationGerhard Roth
of the output buffer size. Thus elements like subscriber-id, ICC-id, IMEI were shown truncated. Some modules report a phone number that already has the '+' prefix. Don't add another one when printing it. Patch from Bryan Vyhmeister ok otto
2016-11-10various cleanup;Jason McIntyre
2016-11-10Fix swofp_send_error mbuf handling so it doesn't leak mbufs and set theRafael Zalamena
proper mbuf header length. ok mikeb@
2016-11-10Simplify checkfs() and fix read-only/remote fs detection.Antoine Jacoutot
2016-11-10Fix tcp ip ttl / minttl on IPv6 sockets.Jeremie Courreges-Anglas
ok florian@
2016-11-10Typo in the guardMartin Pieuchot
2016-11-10Copyright and licenseIngo Schwarze
2016-11-10warn about trailing whitespace at the end of comments;Ingo Schwarze
missing feature noticed by jmc@
2016-11-10Don't forget to set the descriptor ready flag after decapsulationMike Belopuhov
2016-11-10Match Apple NVMe controller by product ID, yes apple is different.Martin Pieuchot
Reported and tested by gonzalo@ on a Macbookair7,1.
2016-11-10regenMartin Pieuchot
2016-11-10Apple NVMe controllerMartin Pieuchot
2016-11-10Add the correct Copyright and license.Ingo Schwarze
Mention that ASN1_STRING_free(NULL) is OK. Delete the obvious statement that a void function returns no value.
2016-11-10Copyright and licenseIngo Schwarze
2016-11-10Add the correct Copyright and license.Ingo Schwarze
Mention that ASN1_OBJECT_free(NULL) is OK.
2016-11-10Extend mtree(8) comment.Antoine Jacoutot
2016-11-10Remove redundant check.Antoine Jacoutot
2016-11-10Create the bsd rollback kernel in create_rollback() (it is contained inAntoine Jacoutot
the rollback tarball anyway but that's impractical if the new bsd does not boot ;-)). While here, make sure /bsd actually exists before saving it.
2016-11-10update reference to the RFC now numbered 7606Peter Hessler
reminded by jmc@
2016-11-10properly check if large-community was set beforePeter Hessler
reported by Job Snijders