OpenBSD src changes summary for 2016-11-10
==========================================

lib/libcrypto                           sbin/ifconfig
sys/arch/armv7/sunxi                    sys/dev/pci
sys/dev/pv                              sys/dev/usb
sys/net                                 sys/sys
usr.bin/doas                            usr.bin/mandoc
usr.sbin/bgpd                           usr.sbin/httpd
usr.sbin/makefs                         usr.sbin/relayd
usr.sbin/syspatch                       

== lib =============================================================== 01/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/lib

libcrypto

  ~ man/ASN1_OBJECT_new.3                 

  > Add the correct Copyright and license.
  > Mention that ASN1_OBJECT_free(NULL) is OK. (schwarze@)

  ~ man/ASN1_STRING_length.3              

  > Copyright and license (schwarze@)

  ~ man/ASN1_STRING_new.3                 

  > Add the correct Copyright and license.
  > Mention that ASN1_STRING_free(NULL) is OK.
  > Delete the obvious statement that a void function returns no value.
  > (schwarze@)

  ~ man/ASN1_STRING_print_ex.3            ~ man/ASN1_generate_nconf.3

  > Copyright and license (schwarze@)

  ~ man/ASN1_OBJECT_new.3                 ~ man/BUF_MEM_new.3
  ~ man/CONF_modules_free.3               ~ man/CONF_modules_load_file.3
  ~ man/CRYPTO_set_ex_data.3              ~ man/CRYPTO_set_locking_callback.3
  ~ man/DES_set_key.3                     

  > various cleanup; (jmc@)

  + man/ASN1_TIME_set.3                   

  > import from OpenSSL,
  > deleting ASN1_TIME_diff() which we don't have (schwarze@)

  ~ man/ASN1_TIME_set.3                   

  > minor cleanup; (jmc@)

== sbin ============================================================== 02/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sbin

ifconfig

  ~ ifconfig.c                            

  > The simple UTF-16 decode routine stopped too early due to wrong calculation
  > 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 (gerhard@)

== sys =============================================================== 03/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys

arch/armv7/sunxi

  ~ sxiccmu.c                             

  > Add support for "allwinner,sun9i-a80-apb1-clk" compatible clocks.
  > This makes the serial console work properly and makes Cubieboard4 go
  > multi-user. (kettenis@)

dev/pci

  ~ pcidevs                               

  > Apple NVMe controller (mpi@)

  ~ pcidevs.h                             ~ pcidevs_data.h

  > regen (mpi@)

  ~ nvme_pci.c                            

  > Match Apple NVMe controller by product ID, yes apple is different.
  > Reported and tested by gonzalo@ on a Macbookair7,1. (mpi@)

dev/pv

  ~ if_hvn.c                              

  > Don't forget to set the descriptor ready flag after decapsulation (mikeb@)

  ~ if_hvn.c                              

  > RNDIS data command is always the same and can be reused (mikeb@)

  ~ if_hvn.c                              

  > Restart the IFQ transmit routine only once per interrupt (mikeb@)

  ~ hyperv.c                              

  > Set the reserved field to zero (mikeb@)

dev/usb

  ~ if_umb.c                              

  > Use the NdpIndex of the NCM header as the offset of the NCM pointer instead
  > of assuming tha the NCM pointer will follow immediately after the header.
  > Tested by Bryan Vyhmeister and Otte Moerbeek
  > ok otto (gerhard@)

net

  ~ switchofp.c                           

  > Fix swofp_send_error mbuf handling so it doesn't leak mbufs and set the
  > proper mbuf header length.
  > ok mikeb@ (rzalamena@)

  ~ if_switch.c                           ~ if_switch.h
  ~ switchctl.c                           ~ switchofp.c

  > Add support for partial writes in switchwrite so we can use multiple
  > write() to write one packet. With this we also get support for writing
  > multiple ofp packets with a single write.
  > ok mikeb@ (rzalamena@)

sys

  ~ ctf.h                                 

  > Typo in the guard (mpi@)

== usr.bin =========================================================== 04/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin

doas

  ~ parse.y                               

  > missing semicolon at end of rule. yacc doesn't seem to mind, though.
  > from Edakawa (tedu@)

mandoc

  ~ read.c                                

  > warn about trailing whitespace at the end of comments;
  > missing feature noticed by jmc@ (schwarze@)

== usr.sbin ========================================================== 05/05 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.sbin

bgpd

  ~ rde.c                                 

  > draft-ietf-idr-optional-transitive-00 became RFC 7606
  > changes from the draft to the RFC:
  > - PARTIAL flag is no longer considered protection
  > - for some attrs, a length of 0 is invalid
  > OK florian@ (phessler@)

  ~ rde_filter.c                          

  > properly check if large-community was set before
  > reported by Job Snijders (phessler@)

  ~ bgpd.8                                

  > update reference to the RFC now numbered 7606
  > reminded by jmc@ (phessler@)

httpd

  ~ server.c                              

  > Fix tcp ip ttl / minttl on IPv6 sockets.
  > ok florian@ (jca@)

makefs

  ~ ffs.c                                 ~ ffs.h

  > Remove the unused cpg field from ffs_opt_t. (natano@)

  ~ ffs.c                                 

  > Sync bsize and fsize defaults with newfs. (natano@)

relayd

  ~ relay.c                               ~ relay_udp.c

  > Fix tcp ip ttl / minttl on IPv6 sockets.
  > ok florian@ (jca@)

syspatch

  ~ syspatch.sh                           

  > Create the bsd rollback kernel in create_rollback() (it is contained in
  > 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. (ajacoutot@)

  ~ syspatch.sh                           

  > Remove redundant check. (ajacoutot@)

  ~ syspatch.sh                           

  > Extend mtree(8) comment. (ajacoutot@)

  ~ syspatch.sh                           

  > Simplify checkfs() and fix read-only/remote fs detection. (ajacoutot@)

  ~ syspatch.8                            

  > Extend documentation a bit. It'll probably need some adjustments soon.
  > (ajacoutot@)

===============================================================================
_______________________________________________
odc mailing list
[email protected]
http://www.squish.net/mailman/listinfo/odc

Reply via email to