CVS commit: src/sys/dev/pci/ixgbe

2019-09-12 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Sep 12 06:19:47 UTC 2019 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.h ixgbe_vf.c ixgbe_vf.h ixv.c Log Message: - Make SIOCADDMULTI returns ENOSPC when the Ethenet multicast address list exceeds the limit. - State

CVS commit: src/sys/dev/pci/ixgbe

2019-09-12 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Sep 12 06:19:47 UTC 2019 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.h ixgbe_vf.c ixgbe_vf.h ixv.c Log Message: - Make SIOCADDMULTI returns ENOSPC when the Ethenet multicast address list exceeds the limit. - State

CVS commit: src/sys/arch/x86/x86

2019-09-12 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Thu Sep 12 06:39:47 UTC 2019 Modified Files: src/sys/arch/x86/x86: identcpu.c Log Message: Fix a normally harmless race: initialize several global variables only on cpu0, so we don't get eg cpu1 re-initializing them while cpu0 is

CVS commit: src/sys/net

2019-09-12 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Thu Sep 12 07:38:19 UTC 2019 Modified Files: src/sys/net: bpf.c Log Message: Add KASSERT to catch bugs. Something tells me it could easily fire. To generate a diff of this commit: cvs rdiff -u -r1.229 -r1.230 src/sys/net/bpf.c

CVS commit: src/sys/net

2019-09-12 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Thu Sep 12 07:38:19 UTC 2019 Modified Files: src/sys/net: bpf.c Log Message: Add KASSERT to catch bugs. Something tells me it could easily fire. To generate a diff of this commit: cvs rdiff -u -r1.229 -r1.230 src/sys/net/bpf.c

CVS commit: src/sys/arch/aarch64/aarch64

2019-09-12 Thread Ryo Shimizu
Module Name:src Committed By: ryo Date: Thu Sep 12 06:12:56 UTC 2019 Modified Files: src/sys/arch/aarch64/aarch64: cpufunc_asm_armv8.S Log Message: even if "no options MULTIPROCESSOR" requires isb after tlbi op. since it should be harmless, dsb is also added. fixed a

CVS commit: src/sys/arch/aarch64/aarch64

2019-09-12 Thread Ryo Shimizu
Module Name:src Committed By: ryo Date: Thu Sep 12 06:12:56 UTC 2019 Modified Files: src/sys/arch/aarch64/aarch64: cpufunc_asm_armv8.S Log Message: even if "no options MULTIPROCESSOR" requires isb after tlbi op. since it should be harmless, dsb is also added. fixed a

CVS commit: src/sys/arch/x86/x86

2019-09-12 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Thu Sep 12 06:39:47 UTC 2019 Modified Files: src/sys/arch/x86/x86: identcpu.c Log Message: Fix a normally harmless race: initialize several global variables only on cpu0, so we don't get eg cpu1 re-initializing them while cpu0 is

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Jason Thorpe
> On Sep 12, 2019, at 11:09 AM, Robert Elz wrote: > > To me it seems apparent that the sanatiser is detecting the local variable > in main() go out of scope when main() returns, and so the value it contains > (the pointer to the allocated memory) is lost, and so it is determined that > there

CVS commit: src/sys/arch/aarch64/aarch64

2019-09-12 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Sep 12 09:05:28 UTC 2019 Modified Files: src/sys/arch/aarch64/aarch64: cpufunc.c Log Message: Do not attempt to change coherency_unit at runtime. Instead, if the required coherency unit is greater than COHERENCY_UNIT in a

CVS commit: src/sys/arch/aarch64/aarch64

2019-09-12 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Sep 12 09:05:28 UTC 2019 Modified Files: src/sys/arch/aarch64/aarch64: cpufunc.c Log Message: Do not attempt to change coherency_unit at runtime. Instead, if the required coherency unit is greater than COHERENCY_UNIT in a

CVS commit: src/distrib/sets/lists/xcomp

2019-09-12 Thread Yuuki Enomoto
Module Name:src Committed By: uki Date: Thu Sep 12 09:45:43 UTC 2019 Modified Files: src/distrib/sets/lists/xcomp: md.amd64 md.evbarm md.hp300 md.i386 md.macppc md.sparc64 Log Message: Give package name to xcomp machine dependency files To generate a diff of

CVS commit: src/distrib/sets/lists/xcomp

2019-09-12 Thread Yuuki Enomoto
Module Name:src Committed By: uki Date: Thu Sep 12 09:45:43 UTC 2019 Modified Files: src/distrib/sets/lists/xcomp: md.amd64 md.evbarm md.hp300 md.i386 md.macppc md.sparc64 Log Message: Give package name to xcomp machine dependency files To generate a diff of

CVS commit: src/sys/arch/arm/acpi

2019-09-12 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Sep 12 09:02:36 UTC 2019 Modified Files: src/sys/arch/arm/acpi: gicv3_acpi.c Log Message: Redistributors with virtual LPI support have larger register spaces. Take this into consideration when scanning LPI regions. To

CVS commit: src/sys/arch/arm/acpi

2019-09-12 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Sep 12 09:02:36 UTC 2019 Modified Files: src/sys/arch/arm/acpi: gicv3_acpi.c Log Message: Redistributors with virtual LPI support have larger register spaces. Take this into consideration when scanning LPI regions. To

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Robert Elz
Date:Thu, 12 Sep 2019 02:58:41 +0200 From:Kamil Rytarowski Message-ID: <373b9331-5306-9797-b4bd-8f6c52683...@gmx.com> | I have tested interactive sh(1) with LSan and it does not leak when | used. It doesn't matter what code (if any) you run, there is always

CVS commit: src/sys/dev/pci/ixgbe

2019-09-12 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Sep 12 11:48:44 UTC 2019 Modified Files: src/sys/dev/pci/ixgbe: ixv.c Log Message: Reduce ixv(4)'s multicast table array size in ixv_set_multi from MAX_NUM_MULTICAST_ADDRESSES(128) to IXGBE_MAX_VF_MC(30). To generate a

CVS commit: src/sys/dev/pci/ixgbe

2019-09-12 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Sep 12 11:48:44 UTC 2019 Modified Files: src/sys/dev/pci/ixgbe: ixv.c Log Message: Reduce ixv(4)'s multicast table array size in ixv_set_multi from MAX_NUM_MULTICAST_ADDRESSES(128) to IXGBE_MAX_VF_MC(30). To generate a

CVS commit: src/sys/ddb

2019-09-12 Thread Ryo Shimizu
Module Name:src Committed By: ryo Date: Thu Sep 12 09:20:23 UTC 2019 Modified Files: src/sys/ddb: db_access.c db_access.h db_examine.c Log Message: changes of r1.39 was incomplete. only "examin/m" could handle 'q'. added support 'r','x','z','d','u', and 'o' with 'q'

CVS commit: src/sys/ddb

2019-09-12 Thread Ryo Shimizu
Module Name:src Committed By: ryo Date: Thu Sep 12 09:20:23 UTC 2019 Modified Files: src/sys/ddb: db_access.c db_access.h db_examine.c Log Message: changes of r1.39 was incomplete. only "examin/m" could handle 'q'. added support 'r','x','z','d','u', and 'o' with 'q'

CVS commit: src/lib/libkvm

2019-09-12 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Thu Sep 12 10:18:50 UTC 2019 Modified Files: src/lib/libkvm: kvm_aarch64.c Log Message: Need register defines that were moved to armreg.h To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/lib/libkvm/kvm_aarch64.c

CVS commit: src/lib/libkvm

2019-09-12 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Thu Sep 12 10:18:50 UTC 2019 Modified Files: src/lib/libkvm: kvm_aarch64.c Log Message: Need register defines that were moved to armreg.h To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/lib/libkvm/kvm_aarch64.c

CVS commit: src/sys/dev/pci/ixgbe

2019-09-12 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Sep 12 12:25:46 UTC 2019 Modified Files: src/sys/dev/pci/ixgbe: ixgbe_type.h ixgbe_vf.c ixv.c Log Message: Add support ALLMULTI on ixv(4): - Negotiate API version up to 1.3. - On linux's PF driver implementation, the PF

CVS commit: src/sys/dev/pci/ixgbe

2019-09-12 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Sep 12 12:25:46 UTC 2019 Modified Files: src/sys/dev/pci/ixgbe: ixgbe_type.h ixgbe_vf.c ixv.c Log Message: Add support ALLMULTI on ixv(4): - Negotiate API version up to 1.3. - On linux's PF driver implementation, the PF

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Kamil Rytarowski
On 12.09.2019 10:09, Robert Elz wrote: > The right change to make however is to teach the santitsers (all of them) > that exiting (via exit() or a return from main()) frees everything, This proposal is practically equivalent of disabling leak detection at all and removes the whole purpose. Leak

CVS commit: src/sys/arch/x86/acpi

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Thu Sep 12 14:28:09 UTC 2019 Modified Files: src/sys/arch/x86/acpi: acpi_machdep.c Log Message: Cast physical addresses via uintptr_t to ACPI_PHYSICAL_ADDRESS to deal with all size variants of the types used here in different

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 15:17:08 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Summary: pax needs pack_dev.h from mknod. move mknod to sys sources To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 15:17:08 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Summary: pax needs pack_dev.h from mknod. move mknod to sys sources To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40

CVS commit: src/sys/arch/x86/acpi

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Thu Sep 12 14:28:09 UTC 2019 Modified Files: src/sys/arch/x86/acpi: acpi_machdep.c Log Message: Cast physical addresses via uintptr_t to ACPI_PHYSICAL_ADDRESS to deal with all size variants of the types used here in different

CVS commit: src/sys/ddb

2019-09-12 Thread Ryo Shimizu
Module Name:src Committed By: ryo Date: Thu Sep 12 17:09:00 UTC 2019 Modified Files: src/sys/ddb: db_access.c Log Message: db_get_qvalue() with size=8 on 64bit arch returns incorrect value. fixed. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26

CVS commit: src/sys/ddb

2019-09-12 Thread Ryo Shimizu
Module Name:src Committed By: ryo Date: Thu Sep 12 17:09:00 UTC 2019 Modified Files: src/sys/ddb: db_access.c Log Message: db_get_qvalue() with size=8 on 64bit arch returns incorrect value. fixed. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 17:35:58 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Summary: add the files from src/tools/headerlist to the output. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 17:35:58 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Summary: add the files from src/tools/headerlist to the output. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41

CVS commit: src/sys/ddb

2019-09-12 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Thu Sep 12 18:43:02 UTC 2019 Modified Files: src/sys/ddb: db_output.c Log Message: db_putchar - check if we need to wrap at $maxwidth after whitespace. That fixes orphaned first character in something like: |Stopped in ...

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 18:28:05 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Summary: export the files from headerlist before the ARCHS's includes. Or else cvs export will complain about them being in the way. To generate a

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 18:28:05 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Summary: export the files from headerlist before the ARCHS's includes. Or else cvs export will complain about them being in the way. To generate a

CVS commit: src/external/mpl/bind/dist

2019-09-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Sep 12 17:04:18 UTC 2019 Removed Files: src/external/mpl/bind/dist: o Log Message: remove bad file To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r0 src/external/mpl/bind/dist/o Please note that diffs are not

CVS commit: src/sys/ddb

2019-09-12 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Thu Sep 12 18:43:02 UTC 2019 Modified Files: src/sys/ddb: db_output.c Log Message: db_putchar - check if we need to wrap at $maxwidth after whitespace. That fixes orphaned first character in something like: |Stopped in ...

CVS commit: [netbsd-9] src

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Thu Sep 12 19:18:19 UTC 2019 Modified Files: src/distrib/sets/lists/base [netbsd-9]: shl.mi src/distrib/sets/lists/debug [netbsd-9]: shl.mi src/external/mpl/bind [netbsd-9]: Makefile.inc

CVS commit: [netbsd-9] src

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Thu Sep 12 19:18:19 UTC 2019 Modified Files: src/distrib/sets/lists/base [netbsd-9]: shl.mi src/distrib/sets/lists/debug [netbsd-9]: shl.mi src/external/mpl/bind [netbsd-9]: Makefile.inc

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 21:10:19 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Add ews4800mips and sh3 heads only listed in src/tools/Makefile.nbincludes. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 21:37:06 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: typo: ARCH_EXTRA -> ARCHS_EXTRA To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 src/sys/rump/listsrcdirs Please note that diffs are

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 21:37:06 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: typo: ARCH_EXTRA -> ARCHS_EXTRA To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 src/sys/rump/listsrcdirs Please note that diffs are

CVS commit: src/usr.sbin/postinstall

2019-09-12 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Thu Sep 12 21:56:55 UTC 2019 Modified Files: src/usr.sbin/postinstall: postinstall.in Log Message: exclude_libs - redirect ls 2> /dev/null so that the user is not spammed with errors for directories without any libraries; the most

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Robert Elz
Date:Thu, 12 Sep 2019 15:12:25 +0200 From:Kamil Rytarowski Message-ID: <2a6e1fb2-cedc-4a57-750b-45f101be9...@gmx.com> | This proposal is practically equivalent of disabling leak detection at | all and removes the whole purpose. No it isn't. Or rather, it

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 20:10:00 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Make include_headerlist ignore files in already exported directories. Invoke include_headerlist after exporting the ARCHS directories. To generate

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 20:10:00 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Make include_headerlist ignore files in already exported directories. Invoke include_headerlist after exporting the ARCHS directories. To generate

CVS commit: src/share/man/man9

2019-09-12 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Thu Sep 12 20:32:31 UTC 2019 Modified Files: src/share/man/man9: physio.9 Log Message: Update parameter list, struct buf is typedefed to buf_t To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12

CVS commit: src/share/man/man9

2019-09-12 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Thu Sep 12 21:08:35 UTC 2019 Modified Files: src/share/man/man9: bufferio.9 Log Message: struct buf is typedefed to buf_t specify the width argument for Bl To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18

CVS commit: src/share/man/man9

2019-09-12 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Thu Sep 12 21:08:35 UTC 2019 Modified Files: src/share/man/man9: bufferio.9 Log Message: struct buf is typedefed to buf_t specify the width argument for Bl To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18

CVS commit: [netbsd-9] src/doc

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Thu Sep 12 19:21:16 UTC 2019 Modified Files: src/doc [netbsd-9]: CHANGES-9.0 Log Message: Ticket #195 To generate a diff of this commit: cvs rdiff -u -r1.1.2.48 -r1.1.2.49 src/doc/CHANGES-9.0 Please note that diffs are not

CVS commit: src/usr.sbin/postinstall

2019-09-12 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Thu Sep 12 21:56:55 UTC 2019 Modified Files: src/usr.sbin/postinstall: postinstall.in Log Message: exclude_libs - redirect ls 2> /dev/null so that the user is not spammed with errors for directories without any libraries; the most

CVS commit: [netbsd-9] src/doc

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Thu Sep 12 19:21:16 UTC 2019 Modified Files: src/doc [netbsd-9]: CHANGES-9.0 Log Message: Ticket #195 To generate a diff of this commit: cvs rdiff -u -r1.1.2.48 -r1.1.2.49 src/doc/CHANGES-9.0 Please note that diffs are not

Re: CVS commit: src/bin/ps

2019-09-12 Thread Joerg Sonnenberger
On Thu, Sep 12, 2019 at 01:52:19AM +0100, Roy Marples wrote: > On 11/09/2019 20:03, Robert Elz wrote: > > Date:Wed, 11 Sep 2019 17:02:53 + > > From:"Kamil Rytarowski" > > Message-ID: <20190911170253.d097ff...@cvs.netbsd.org> > > > >| Free it when no longer

CVS commit: src/share/man/man9

2019-09-12 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Thu Sep 12 20:32:31 UTC 2019 Modified Files: src/share/man/man9: physio.9 Log Message: Update parameter list, struct buf is typedefed to buf_t To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12

CVS commit: src/sys/rump

2019-09-12 Thread Christoph Badura
Module Name:src Committed By: bad Date: Thu Sep 12 21:10:19 UTC 2019 Modified Files: src/sys/rump: listsrcdirs Log Message: Add ews4800mips and sh3 heads only listed in src/tools/Makefile.nbincludes. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Kamil Rytarowski
On 12.09.2019 21:24, Robert Elz wrote: > Date:Thu, 12 Sep 2019 15:12:25 +0200 > From:Kamil Rytarowski > Message-ID: <2a6e1fb2-cedc-4a57-750b-45f101be9...@gmx.com> > > > | This proposal is practically equivalent of disabling leak detection at > | all and removes

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Simon Burge
Kamil Rytarowski wrote: > I will revert it, but I am looking for a more generic approach. > > How about adding ifdef __NO_LEAKS like: > > #ifdef __NO_LEAKS > free(3)? > #endif > > And in lsan/asan/valgrind/etc checks use -D__NO_LEAKS. Sorry if I'm missing something that has been already

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Kamil Rytarowski
On 13.09.2019 03:24, Simon Burge wrote: > Kamil Rytarowski wrote: > >> I will revert it, but I am looking for a more generic approach. >> >> How about adding ifdef __NO_LEAKS like: >> >> #ifdef __NO_LEAKS >> free(3)? >> #endif >> >> And in lsan/asan/valgrind/etc checks use -D__NO_LEAKS. > >

Re: CVS commit: src/bin/ps

2019-09-12 Thread Kamil Rytarowski
On 13.09.2019 03:51, Roy Marples wrote: > On 12/09/2019 20:55, Joerg Sonnenberger wrote: >> On Thu, Sep 12, 2019 at 01:52:19AM +0100, Roy Marples wrote: >>> On 11/09/2019 20:03, Robert Elz wrote:   Date:    Wed, 11 Sep 2019 17:02:53 +   From:    "Kamil Rytarowski"

CVS commit: src/external/bsd/wpa/dist/src/ap

2019-09-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Sep 12 23:46:11 UTC 2019 Modified Files: src/external/bsd/wpa/dist/src/ap: drv_callbacks.c ieee802_11.c Log Message: [PATCH] AP: Silently ignore management frame from unexpected source address Do not process any received

CVS commit: src/external/bsd/wpa/dist/src/ap

2019-09-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Sep 12 23:46:11 UTC 2019 Modified Files: src/external/bsd/wpa/dist/src/ap: drv_callbacks.c ieee802_11.c Log Message: [PATCH] AP: Silently ignore management frame from unexpected source address Do not process any received

CVS commit: src/share/man/man8/man8.x86

2019-09-12 Thread Emmanuel Dreyfus
Module Name:src Committed By: manu Date: Fri Sep 13 01:34:19 UTC 2019 Modified Files: src/share/man/man8/man8.x86: boot.8 Log Message: Document that bootdev option accepts device specification as NAME=label To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18

CVS commit: src/sys/kern

2019-09-12 Thread Emmanuel Dreyfus
Module Name:src Committed By: manu Date: Fri Sep 13 01:33:20 UTC 2019 Modified Files: src/sys/kern: kern_subr.c Log Message: Accept root device specification as NAME=label To generate a diff of this commit: cvs rdiff -u -r1.224 -r1.225 src/sys/kern/kern_subr.c Please

CVS commit: src/share/man/man8/man8.x86

2019-09-12 Thread Emmanuel Dreyfus
Module Name:src Committed By: manu Date: Fri Sep 13 01:34:19 UTC 2019 Modified Files: src/share/man/man8/man8.x86: boot.8 Log Message: Document that bootdev option accepts device specification as NAME=label To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Warner Losh
On Thu, Sep 12, 2019, 7:24 PM Simon Burge wrote: > Kamil Rytarowski wrote: > > > I will revert it, but I am looking for a more generic approach. > > > > How about adding ifdef __NO_LEAKS like: > > > > #ifdef __NO_LEAKS > > free(3)? > > #endif > > > > And in lsan/asan/valgrind/etc checks use

CVS commit: src/doc

2019-09-12 Thread Emmanuel Dreyfus
Module Name:src Committed By: manu Date: Fri Sep 13 02:23:31 UTC 2019 Modified Files: src/doc: CHANGES Log Message: boot(8): multiboot 2 support, Xen can now boot from EFI To generate a diff of this commit: cvs rdiff -u -r1.2580 -r1.2581 src/doc/CHANGES Please note

CVS commit: src/doc

2019-09-12 Thread Emmanuel Dreyfus
Module Name:src Committed By: manu Date: Fri Sep 13 02:23:31 UTC 2019 Modified Files: src/doc: CHANGES Log Message: boot(8): multiboot 2 support, Xen can now boot from EFI To generate a diff of this commit: cvs rdiff -u -r1.2580 -r1.2581 src/doc/CHANGES Please note

CVS commit: src/sys/kern

2019-09-12 Thread Emmanuel Dreyfus
Module Name:src Committed By: manu Date: Fri Sep 13 01:33:20 UTC 2019 Modified Files: src/sys/kern: kern_subr.c Log Message: Accept root device specification as NAME=label To generate a diff of this commit: cvs rdiff -u -r1.224 -r1.225 src/sys/kern/kern_subr.c Please

Re: CVS commit: src/bin/ps

2019-09-12 Thread Roy Marples
On 12/09/2019 20:55, Joerg Sonnenberger wrote: On Thu, Sep 12, 2019 at 01:52:19AM +0100, Roy Marples wrote: On 11/09/2019 20:03, Robert Elz wrote: Date:Wed, 11 Sep 2019 17:02:53 + From:"Kamil Rytarowski" Message-ID:

CVS commit: src/sys/arch/i386

2019-09-12 Thread Emmanuel Dreyfus
RSDP, which is available after 20190912, in src/sys/arch/x86/acpi/acpi_machdep.c 1.26-1.28 There are a few missing bit in this multiboot 2 implementation (which are unused by Xen): - Header tags Address, Freambuffer, and Relocatable are ignored - Tags APM and Network are not provided - Tags ACPI old

CVS commit: src/sys/arch/i386

2019-09-12 Thread Emmanuel Dreyfus
RSDP, which is available after 20190912, in src/sys/arch/x86/acpi/acpi_machdep.c 1.26-1.28 There are a few missing bit in this multiboot 2 implementation (which are unused by Xen): - Header tags Address, Freambuffer, and Relocatable are ignored - Tags APM and Network are not provided - Tags ACPI old

CVS commit: src/distrib/sets/lists/comp

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Fri Sep 13 05:13:54 UTC 2019 Modified Files: src/distrib/sets/lists/comp: md.amd64 md.i386 Log Message: Add new multiboot2.h header. To generate a diff of this commit: cvs rdiff -u -r1.272 -r1.273

CVS commit: src/distrib/sets/lists/comp

2019-09-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Fri Sep 13 05:13:54 UTC 2019 Modified Files: src/distrib/sets/lists/comp: md.amd64 md.i386 Log Message: Add new multiboot2.h header. To generate a diff of this commit: cvs rdiff -u -r1.272 -r1.273

Re: Leak Sanitizer - how to suppress leaks

2019-09-12 Thread Martin Husemann
On Thu, Sep 12, 2019 at 08:21:38PM -0600, Warner Losh wrote: > When multiple people are doing leak busting, maybe over years, they > eliminate many false positives so you can focus on the real issues w/o a > run time penalty. Especially something in the library that comes up > often... otherwise