OpenBSD src changes summary for 2015-06-16 ==========================================
etc/etc.amd64/sysctl.conf etc/etc.i386/sysctl.conf etc/etc.zaurus/sysctl.conf gnu/usr.bin/binutils-2.17 lib/libssl regress/lib share/man sys/arch/mips64/mips64 sys/arch/sgi/xbow sys/dev/usb sys/kern sys/net sys/netinet sys/netinet6 sys/netmpls sys/nfs sys/sys usr.bin/openssl == etc =============================================================== 01/07 == http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/etc etc.amd64/sysctl.conf ~ etc.amd64/sysctl.conf > Typos in comments; Ville Valkonen (miod@) etc.i386/sysctl.conf ~ etc.i386/sysctl.conf > Typos in comments; Ville Valkonen (miod@) etc.zaurus/sysctl.conf ~ etc.zaurus/sysctl.conf > Typos in comments; Ville Valkonen (miod@) == gnu =============================================================== 02/07 == http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/gnu usr.bin/binutils-2.17 ~ ld/emulparams/elf64btsmip_obsd.sh ~ ld/emulparams/elf64ltsmip_obsd.sh > Do not provide extra _fdata and __data_start symbols; nothing in the > non-mips32 > world uses them. (miod@) == lib =============================================================== 03/07 == http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/lib libssl ~ src/ssl/bs_cbs.c ~ src/ssl/bytestring.h > Simplify cbs_get_any_asn1_element_internal based on comments from jsing@ > (doug@) ~ src/ssl/bs_ber.c ~ src/ssl/bytestring.h > Be more strict about BER and DER terminology. > bs_ber.c does not convert BER to DER. It's a hack to convert a DER-like > encoding with one violation (indefinite form) to strict DER. Rename > the functions to reflect this. > ok miod@ jsing@ (doug@) == regress =========================================================== 04/07 == http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/regress lib ~ libssl/bytestring/bytestringtest.c > Be more strict about BER and DER terminology. > bs_ber.c does not convert BER to DER. It's a hack to convert a DER-like > encoding with one violation (indefinite form) to strict DER. Rename > the functions to reflect this. > ok miod@ jsing@ (doug@) == share ============================================================= 05/07 == http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/share man ~ man9/mbuf.9 > Sync with recent changes. (mpi@) == sys =============================================================== 06/07 == http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys arch/mips64/mips64 ~ cpu.c > alloc_contiguous_pages() is supposed to round the allocation size to a page > boundary, not to an u area boundary. Oops. (miod@) arch/sgi/xbow ~ xbridge.c ~ xbridgereg.h > Clear the PIC `write request' memory at initialization time. There is > apparently a risk of spurious parity errors if we don't. (miod@) dev/usb ~ usbdevs > Add a uslcom id for the Netgear M7100 console from Andrew Daugherity. > Add some additional uslcom ids found in the Linux driver while here. (jsg@) ~ usbdevs.h ~ usbdevs_data.h > regen (jsg@) ~ uslcom.c > Add a uslcom id for the Netgear M7100 console from Andrew Daugherity. > Add some additional uslcom ids found in the Linux driver while here. (jsg@) kern ~ uipc_mbuf.c ~ uipc_socket.c > Store a unique ID, an interface index, rather than a pointer to the > receiving interface in the packet header of every mbuf. > The interface pointer should now be retrieved when necessary with > if_get(). If a NULL pointer is returned by if_get(), the interface > has probably been destroy/removed and the mbuf should be freed. > Such mechanism will simplify garbage collection of mbufs and limit > problems with dangling ifp pointers. > Tested by jmatthew@ and krw@, discussed with many. > ok mikeb@, bluhm@, dlg@ (mpi@) net ~ bpf.c ~ bpf.h ~ bridgestp.c ~ if.c ~ if_bridge.c ~ if_ethersubr.c ~ if_loop.c ~ if_mpe.c ~ if_pflow.c ~ if_pfsync.c ~ if_ppp.c ~ if_pppoe.c ~ if_spppsubr.c ~ if_trunk.c ~ if_tun.c ~ if_vlan.c ~ pf.c ~ pipex.c ~ ppp_tty.c ~ rtsock.c > Store a unique ID, an interface index, rather than a pointer to the > receiving interface in the packet header of every mbuf. > The interface pointer should now be retrieved when necessary with > if_get(). If a NULL pointer is returned by if_get(), the interface > has probably been destroy/removed and the mbuf should be freed. > Such mechanism will simplify garbage collection of mbufs and limit > problems with dangling ifp pointers. > Tested by jmatthew@ and krw@, discussed with many. > ok mikeb@, bluhm@, dlg@ (mpi@) netinet ~ if_ether.c ~ igmp.c ~ in_gif.c ~ ip_carp.c ~ ip_divert.c ~ ip_ether.c ~ ip_gre.c ~ ip_icmp.c ~ ip_input.c ~ ip_ipip.c ~ ip_output.c ~ ipsec_input.c ~ tcp_input.c ~ tcp_output.c ~ tcp_subr.c ~ udp_usrreq.c > Store a unique ID, an interface index, rather than a pointer to the > receiving interface in the packet header of every mbuf. > The interface pointer should now be retrieved when necessary with > if_get(). If a NULL pointer is returned by if_get(), the interface > has probably been destroy/removed and the mbuf should be freed. > Such mechanism will simplify garbage collection of mbufs and limit > problems with dangling ifp pointers. > Tested by jmatthew@ and krw@, discussed with many. > ok mikeb@, bluhm@, dlg@ (mpi@) netinet6 ~ frag6.c ~ icmp6.c ~ in6_gif.c ~ ip6_divert.c ~ ip6_forward.c ~ ip6_input.c ~ ip6_mroute.c ~ ip6_output.c ~ mld6.c ~ nd6.c ~ nd6_nbr.c ~ nd6_rtr.c ~ raw_ip6.c > Store a unique ID, an interface index, rather than a pointer to the > receiving interface in the packet header of every mbuf. > The interface pointer should now be retrieved when necessary with > if_get(). If a NULL pointer is returned by if_get(), the interface > has probably been destroy/removed and the mbuf should be freed. > Such mechanism will simplify garbage collection of mbufs and limit > problems with dangling ifp pointers. > Tested by jmatthew@ and krw@, discussed with many. > ok mikeb@, bluhm@, dlg@ (mpi@) netmpls ~ mpls_input.c > Store a unique ID, an interface index, rather than a pointer to the > receiving interface in the packet header of every mbuf. > The interface pointer should now be retrieved when necessary with > if_get(). If a NULL pointer is returned by if_get(), the interface > has probably been destroy/removed and the mbuf should be freed. > Such mechanism will simplify garbage collection of mbufs and limit > problems with dangling ifp pointers. > Tested by jmatthew@ and krw@, discussed with many. > ok mikeb@, bluhm@, dlg@ (mpi@) nfs ~ krpc_subr.c ~ nfs_subs.c ~ nfs_syscalls.c > Store a unique ID, an interface index, rather than a pointer to the > receiving interface in the packet header of every mbuf. > The interface pointer should now be retrieved when necessary with > if_get(). If a NULL pointer is returned by if_get(), the interface > has probably been destroy/removed and the mbuf should be freed. > Such mechanism will simplify garbage collection of mbufs and limit > problems with dangling ifp pointers. > Tested by jmatthew@ and krw@, discussed with many. > ok mikeb@, bluhm@, dlg@ (mpi@) sys ~ mbuf.h > Store a unique ID, an interface index, rather than a pointer to the > receiving interface in the packet header of every mbuf. > The interface pointer should now be retrieved when necessary with > if_get(). If a NULL pointer is returned by if_get(), the interface > has probably been destroy/removed and the mbuf should be freed. > Such mechanism will simplify garbage collection of mbufs and limit > problems with dangling ifp pointers. > Tested by jmatthew@ and krw@, discussed with many. > ok mikeb@, bluhm@, dlg@ (mpi@) == usr.bin =========================================================== 07/07 == http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin openssl ~ apps.c > Add support for OPTION_DISCARD. > ok jsing@ (doug@) =============================================================================== _______________________________________________ odc mailing list [email protected] http://www.squish.net/mailman/listinfo/odc
