Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/doc 1525-1534, 1536, 1537, 1539, 1541-1544, 1546, 1547, 1549



details:   https://anonhg.NetBSD.org/src/rev/af9315cd164b
branches:  netbsd-7
changeset: 800391:af9315cd164b
user:      snj <snj%NetBSD.org@localhost>
date:      Wed Jan 03 21:59:19 2018 +0000

description:
1525-1534, 1536, 1537, 1539, 1541-1544, 1546, 1547, 1549

diffstat:

 doc/CHANGES-7.2 |  146 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 145 insertions(+), 1 deletions(-)

diffs (157 lines):

diff -r 5b0e836d1dde -r af9315cd164b doc/CHANGES-7.2
--- a/doc/CHANGES-7.2   Wed Jan 03 21:47:45 2018 +0000
+++ b/doc/CHANGES-7.2   Wed Jan 03 21:59:19 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-7.2,v 1.1.2.57 2017/12/12 09:14:27 snj Exp $
+# $NetBSD: CHANGES-7.2,v 1.1.2.58 2018/01/03 21:59:19 snj Exp $
 
 A complete list of changes from the NetBSD 7.1 release to the NetBSD 7.2
 release:
@@ -4903,3 +4903,147 @@
        Properly mask mxcsr to prevent faults.
        [maxv, ticket #1540]
 
+sys/external/bsd/ipf/netinet/ip_state.c                1.9-1.10
+
+       Stop a kernel panic when altering the ipf state table size at
+       runtime due to unallocated memory.
+       [sborrill, ticket #1525]
+
+sys/dev/usb/xhci.c                             1.76
+
+       Wait 1ms first. Existing Intel xHCI requies 1ms delay to
+       prevent system hang (Errata).
+       [msaitoh, ticket #1526]
+
+sys/arch/amd64/include/i82093reg.h             1.9
+sys/arch/i386/include/i82093reg.h              1.11
+sys/arch/x86/x86/ioapic.c                      1.54
+
+       Don't write a 1 to the read only RIRR bit in the IOAPIC
+       redirection register to fix "tlp0: filter setup and transmit
+       timeout" observed on Hyper-V VMs with the Legacy Network Adapter.
+
+       From OpenBSD via PR kern/49323:
+       https://marc.info/?l=openbsd-cvs&m=146718035432599&w=2
+       [nakayama, ticket #1527]
+
+sys/dev/usb/if_urtwn.c                         1.55
+
+       Malicious USB devices attaching as urtwn(4) can corrupt kernel
+       memory.
+       [skrll, ticket #1528]
+
+sys/dev/usb/ehci.c                             1.257
+sys/dev/usb/motg.c                             1.19
+sys/dev/usb/ohci.c                             1.276
+sys/dev/usb/uhci.c                             1.279
+sys/dev/usb/xhci.c                             1.77
+sys/external/bsd/dwc2/dwc2.c                   1.47
+
+       Improve USB device insertion support.
+       [skrll, ticket #1529]
+
+sys/arch/sparc/sparc/locore.s                  1.269
+
+       Avoid an instruction requiring a higher alignment than we
+       are guaranteed.  Fixes PR port-sparc/52721: ddb errors on
+       ps command
+       [maya, ticket #1530]
+
+sys/arch/x86/x86/pmap.c                                patch
+
+       amd64: Make the direct map non executable.
+       [maxv, ticket #1531]
+
+sys/arch/arm/broadcom/bcm2835_space.c          1.12-1.13
+
+       - KNF
+       - BE support (probably not needed)
+       - a4x subreagion/mmap support
+       - fix some a4x stream methods
+       - add UVM_KMF_COLORMATCH in bs_map when allocating KVA
+       - support BUS_SPACE_MAP_PREFETCHABLE
+       [skrll, ticket #1532]
+
+libexec/httpd/cgi-bozo.c                       1.39
+
+       bozohttpd fails to exec scripts via the -C mechanism
+       sometimes with EFAULT due to not NULL terminated environment.
+       PR bin/52194
+       [martin, ticket #1533]
+
+usr.sbin/inetd/inetd.c                         1.125
+
+       Bump MAXARGV from 20 to 64 - with bozohttpd and all config on
+       the command line it is easy to hit the (silent) limit.
+       [martin, ticket #1534]
+
+sys/external/bsd/drm2/drm/drm_drv.c            1.20
+
+       drm_stat: fix device minor calculation.  Fixes bug where
+       libdrm couldn't find any devices beyond the first one.
+       [jmcneill, ticket #1536]
+
+etc/MAKEDEV.tmpl                               1.188
+
+       make a few more drm nodes
+       [jmcneill, ticket #1537]
+
+sys/kern/subr_kobj.c                           1.52
+
+       Compare names of duplicate symbols properly, so we correctly
+       return an error status.  PR kern/45125
+       [pgoyette, ticket #1539]
+
+sys/dev/usb/usb_subr.c                         1.222
+
+       Be more defensive towards malicious USB devices.  This avoids
+       potential panics due to 0-sized memory allocation attempts,
+       which could be triggered by malicious USB devices.  PR 52383
+       [khorben, ticket #1541]
+
+sbin/route/route.c                             1.157
+
+       Fix typo in flag name.  PR bin/52815
+       [uwe, ticket #1542]
+
+dist/pf/etc/pf.os                              1.4-1.5
+
+       Synchronise with r1.27 from OpenBSD
+       Add DragonFly BSD fingerprints.
+       [sevan, ticket #1543]
+
+sys/arch/i386/conf/INSTALL                     1.332
+
+       install/52845: Enable vga@isa and pcdisplay for INSTALL.
+       [rin, ticket #1544]
+
+sys/arch/macppc/conf/GENERIC                   1.337 via patch
+
+       Without RADEONFB_ALWAYS_ACCEL_PUTCHAR, there are display
+       issues on the PowerBook5,2 (G4 FW-800) Radeon 9600, where
+       console is garbled.  PR port-macppc/52712
+       [sevan, ticket #1546]
+
+sys/dev/pci/pcidevs                            1.1278
+sys/dev/pci/pcidevs.h                          regen
+sys/dev/pci/pcidevs_data.h                     regen
+sys/dev/pci/pucdata.c                          1.99-1.100
+
+       pcidevs: Add Intel 200 series chipset devices from "Table 2-2.
+       PCH-H Device and Revision ID Table, Intel 200 Series Chipset
+       Family Platform Controller Hub(PCI) Datasheet Volume 1 of 2
+       (335192-001)".
+
+       puc(4):
+       - Add Intel 200 series devices.
+       - Add support for Manhattan 158220 card. PR/52868
+       [maya, ticket #1547]
+
+sys/dev/fss.c                                  1.101-1.103
+
+       - Bounds check against media size for non-persistent snapshots.
+       - Treat partial read from backing store as I/O error.
+       - Pass residual back to b_resid for persistent snapshots.
+       [hannken, ticket #1549]
+



Home | Main Index | Thread Index | Old Index