OpenBSD src changes summary for 2017-07-02
==========================================

distrib/miniroot                        distrib/sets
lib/libkeynote                          libexec/ld.so
sbin/dhclient                           share/man
share/mk                                sys/arch/amd64/amd64
sys/dev/ic                              sys/dev/pci
sys/net80211                            usr.bin/bc
usr.bin/file                            usr.bin/mandoc
usr.sbin/ifstated                       

== distrib =========================================================== 01/08 ==

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

miniroot

  ~ install.sub                           

  > NIFS is checked inside start_cgiinfo() already.
  > No need to do this check twice.
  > from Klemens Nanni (rpe@)

  ~ install.sub                           

  > Tweak comment (rpe@)

  ~ install.sub                           

  > Shorter version of the same.
  > based on a mail from Klemens Nanni on tech@ (rpe@)

sets

  ~ lists/man/mi                          

  > sync (visa@)

  ~ lists/comp/mi                         ~ lists/man/mi

  > Fix the set of octmmc.4. (visa@)

== lib =============================================================== 02/08 ==

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

libkeynote

  ~ Makefile                              

  > repair the tree, make sure y.tab.h is there before compiling yacc files.
  > problem noticed by deraadt@ (espie@)

== libexec =========================================================== 03/08 ==

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

ld.so

  ~ ldd/ldd.c                             

  > Fixed a typo in error message.
  > ok jmc@ (tobias@)

== sbin ============================================================== 04/08 ==

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

dhclient

  ~ dhcpd.h                               ~ kroute.c
  ~ privsep.c                             

  > Unbreak tree by putting revised resolv_conf_priority() declaration in
  > correct place and passing the invocation the correct parameters.
  > Noticed by & initial diff from matthieu@ (krw@)

== share ============================================================= 05/08 ==

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

man

  ~ man4/man4.octeon/Makefile             + man4/man4.octeon/octciu.4

  > Add octciu(4) manual page. (visa@)

mk

  ~ bsd.README                            

  > document new depends somewhat.
  > I asked jmc, told me to go ahead and he'd review it when he can. (espie@)

  ~ bsd.lib.mk                            

  > somehow, I did NOT commit the patch I sent to tb@. Matthieu noticed it.
  > commit the right DEPS definition. (espie@)

== sys =============================================================== 06/08 ==

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

arch/amd64/amd64

  ~ vmm.c                                 

  > re-enable PAT
  > discussed with deraadt a month or so ago, this has been sitting in my
  > tree since then. (mlarkin@)

dev/ic

  ~ rtwn.c                                

  > Add the definition of IEEE80211_DUR_DS_SHSLOT.
  > From IEEE Std. 802.11-2016, Table 18-5 "ERP characteristics", p. 2332:
  > aSlotTime characteristic:
  > If dont11OperatingClassesRequired is false:
  > Long  = 20 us
  > Short = 9 us
  > ok stsp@ (kevlo@)

dev/pci

  ~ drm/drm_linux.h                       ~ drm/drm_mipi_dsi.h
  ~ drm/drm_panel.c                       ~ drm/drm_panel.h
  ~ drm/files.drm                         ~ drm/i915/intel_bios.c
  ~ drm/i915/intel_display.c              ~ drm/i915/intel_dsi.c
  ~ drm/i915/intel_dsi.h                  ~ drm/i915/intel_dsi_panel_vbt.c
  ~ drm/i915/intel_dsi_pll.c              + drm/drm_mipi_dsi.c

  > Enable MIPI/DSI support for inteldrm(4).  Makes the display on my ASUS
  > Transformer Book T100HA work (with some ugly error/warning messages).
  > (kettenis@)

net80211

  ~ ieee80211.h                           

  > Add the definition of IEEE80211_DUR_DS_SHSLOT.
  > From IEEE Std. 802.11-2016, Table 18-5 "ERP characteristics", p. 2332:
  > aSlotTime characteristic:
  > If dont11OperatingClassesRequired is false:
  > Long  = 20 us
  > Short = 9 us
  > ok stsp@ (kevlo@)

== usr.bin =========================================================== 07/08 ==

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

bc

  ~ bc.y                                  ~ scan.l
  ~ tty.c                                 

  > whitespace (deraadt@)

file

  ~ magic-load.c                          

  > Replace fgetln with POSIX getline, even though file was using fgetln in
  > the idiomatic safe way. Also, check for stream errors with ferror and
  > err(1, "") in that case.
  > with feedback from joerg@, schwarze@, nicm@
  > ok nicm "code is shorter anyway", and joerg@ for an earlier diff (brynet@)

mandoc

  ~ main.c                                ~ mandoc.1
  ~ mandoc.h                              ~ mandoc_xr.c
  ~ mandoc_xr.h                           ~ mdoc_validate.c
  ~ read.c                                

  > add warning "cross reference to self"; inspired by mdoclint (schwarze@)

  ~ main.c                                ~ mandoc_xr.c
  ~ mandoc_xr.h                           

  > If a single page references the same non-existent manual more than
  > once, print "(N times)" after the message "referenced manual not
  > found", to lessen the risk that people fix the first instance and
  > miss the others; jmc@ confirmed that this is useful. (schwarze@)

== usr.sbin ========================================================== 08/08 ==

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

ifstated

  ~ ifstated.c                            ~ ifstated.h
  ~ parse.y                               

  > Rename one of the "always" variables to "body" for improved readability.
  > No functional change.
  > from Rob Pierce.
  > ok stsp@ and me (benno@)

  ~ ifstated.c                            

  > Remove variable assignment in declaration and add whitespace to improve
  > readability. No functional change.
  > from Rob Pierce.
  > ok stsp@ and me (benno@)

  ~ ifstated.h                            

  > Remove unused variable from header file.
  > from Rob Pierce.
  > ok stsp@ and me (benno@)

  ~ ifstated.c                            ~ ifstated.h
  ~ parse.y                               

  > Second diff to rename additional "always" variable in struct ifsd_config.
  > from Rob Pierce.
  > Requested by stsp@ (benno@)

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

Reply via email to