svn commit: r353542 - head/tests/sys/net

2019-10-14 Thread Kristof Provost
Author: kp Date: Tue Oct 15 04:50:08 2019 New Revision: 353542 URL: https://svnweb.freebsd.org/changeset/base/353542 Log: tests: basic VLAN test Set up two jails connected by an epair. Create VLAN interfaces in both jails and check connectivity. This is a very basic test, but exposed

svn commit: r353541 - in head/sys: amd64/amd64 arm/arm arm64/arm64 i386/i386 mips/mips powerpc/aim powerpc/booke riscv/riscv sparc64/sparc64

2019-10-14 Thread Jeff Roberson
Author: jeff Date: Tue Oct 15 03:51:46 2019 New Revision: 353541 URL: https://svnweb.freebsd.org/changeset/base/353541 Log: (6/6) Convert pmap to expect busy in write related operations now that all callers hold it. This simplifies pmap code and removes a dependency on the object lock.

svn commit: r353540 - head/sys/vm

2019-10-14 Thread Jeff Roberson
Author: jeff Date: Tue Oct 15 03:48:22 2019 New Revision: 353540 URL: https://svnweb.freebsd.org/changeset/base/353540 Log: (5/6) Move the VPO_NOSYNC to PGA_NOSYNC to eliminate the dependency on the object lock in vm_page_set_validclean(). Reviewed by:kib, markj Tested by: pho

svn commit: r353539 - in head/sys: amd64/sgx cddl/contrib/opensolaris/uts/common/fs/zfs compat/linuxkpi/common/src dev/drm2/ttm dev/md dev/netmap dev/xen/gntdev dev/xen/privcmd fs/nfsclient fs/smbf...

2019-10-14 Thread Jeff Roberson
Author: jeff Date: Tue Oct 15 03:45:41 2019 New Revision: 353539 URL: https://svnweb.freebsd.org/changeset/base/353539 Log: (4/6) Protect page valid with the busy lock. Atomics are used for page busy and valid state when the shared busy is held. The details of the locking protocol and va

svn commit: r353538 - in head/sys: amd64/amd64 arm/arm arm64/arm64 i386/i386 mips/mips powerpc/aim powerpc/booke riscv/riscv sparc64/sparc64 vm

2019-10-14 Thread Jeff Roberson
Author: jeff Date: Tue Oct 15 03:41:36 2019 New Revision: 353538 URL: https://svnweb.freebsd.org/changeset/base/353538 Log: (3/6) Add a shared object busy synchronization mechanism that blocks new page busy acquires while held. This allows code that would need to acquire and release a ver

svn commit: r353537 - head/sys/vm

2019-10-14 Thread Jeff Roberson
Author: jeff Date: Tue Oct 15 03:38:02 2019 New Revision: 353537 URL: https://svnweb.freebsd.org/changeset/base/353537 Log: (2/6) Don't release xbusy in vm_page_remove(), defer to vm_page_free_prep(). This persists busy state across operations like rename and replace. Reviewed by:k

svn commit: r353536 - head/sys/powerpc/include

2019-10-14 Thread Justin Hibbits
Author: jhibbits Date: Tue Oct 15 03:37:21 2019 New Revision: 353536 URL: https://svnweb.freebsd.org/changeset/base/353536 Log: powerpc/atomic: Fix atomic_cmpset_rel() Need a release barrier, not an acquire barrier, else bad things happen. Modified: head/sys/powerpc/include/atomic.h Mod

svn commit: r353535 - in head/sys: dev/xen/gntdev dev/xen/privcmd fs/tmpfs kern sys vm

2019-10-14 Thread Jeff Roberson
Author: jeff Date: Tue Oct 15 03:35:11 2019 New Revision: 353535 URL: https://svnweb.freebsd.org/changeset/base/353535 Log: (1/6) Replace busy checks with acquires where it is trival to do so. This is the first in a series of patches that promotes the page busy field to a first class lock

svn commit: r353534 - head/sys/arm/allwinner

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 22:29:20 2019 New Revision: 353534 URL: https://svnweb.freebsd.org/changeset/base/353534 Log: arm: allwinner: Add np and nmm clock file to the build MFC after:1 month Modified: head/sys/arm/allwinner/files.allwinner Modified: head/sys/arm/allwinner/file

svn commit: r353533 - in head/sys: arm64/conf conf dev/usb/controller

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 22:27:33 2019 New Revision: 353533 URL: https://svnweb.freebsd.org/changeset/base/353533 Log: arm64: Add Synopsys DWC3 driver This add a driver for the Synopsys DWC3 driver found on multiple SoCs. It only supports host mode for now. MFC after:1 month

svn commit: r353532 - in head/sys: arm/allwinner arm64/conf conf

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 22:22:19 2019 New Revision: 353532 URL: https://svnweb.freebsd.org/changeset/base/353532 Log: arm64: allwinner: Add aw_dwc3 driver This is a simplebus like driver that just deal with clocks and resets and attach the dwc3 child node. MFC after:1 month

Re: svn commit: r353523 - head

2019-10-14 Thread John Baldwin
On 10/14/19 2:22 PM, John Baldwin wrote: > Author: jhb > Date: Mon Oct 14 21:22:42 2019 > New Revision: 353523 > URL: https://svnweb.freebsd.org/changeset/base/353523 > > Log: > Disconnect powerpc from the default tinderbox for now. > > The wrong toolchain was set in MAKE_PARAMS_powerpc, ho

svn commit: r353531 - in head/sys: arm/allwinner conf

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:58:46 2019 New Revision: 353531 URL: https://svnweb.freebsd.org/changeset/base/353531 Log: arm64: allwinner: Add support for the usb3 phy The usb 3 controller in the H6 SoC have a dedicated phy. Add support for it. Mostly imported from NetBSD MFC af

svn commit: r353530 - head/sys/arm/allwinner

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:56:41 2019 New Revision: 353530 URL: https://svnweb.freebsd.org/changeset/base/353530 Log: arm64: allwinner: aw_usbphy: Add support for H6 PHY MFC after:1 month Modified: head/sys/arm/allwinner/aw_usbphy.c Modified: head/sys/arm/allwinner/aw_usbphy.c

svn commit: r353529 - in head/sys: arm/allwinner arm/allwinner/h6 conf

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:55:45 2019 New Revision: 353529 URL: https://svnweb.freebsd.org/changeset/base/353529 Log: arm64: allwinner: Add H6 GPIO/Pinctrl driver This adds support for Allwinner H6 GPIO and pinctrl driver for both the main pinctrl unit and the 'r_' one. MFC aft

svn commit: r353528 - in head/sys: arm/allwinner/clkng arm64/conf conf

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:53:53 2019 New Revision: 353528 URL: https://svnweb.freebsd.org/changeset/base/353528 Log: arm64: allwinner: Add Allwinner H6 Support This adds support for H6 SoC. Add a CCU driver for H6 that support all PLLs and most of the clocks that we are intersted

svn commit: r353527 - head/sys/arm/allwinner

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:50:44 2019 New Revision: 353527 URL: https://svnweb.freebsd.org/changeset/base/353527 Log: arm: allwinner: Disable the clock before changing it's freq You aren't supposed to changing the freq of a clock when it is enable so disable the clock before changin

svn commit: r353526 - in head/sys: arm/allwinner/clkng conf

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:49:07 2019 New Revision: 353526 URL: https://svnweb.freebsd.org/changeset/base/353526 Log: arm64: allwinner: Add aw_clk_nmm clock This is a clock type present on Allwinner H6 where the formula is : f = fparent * n / m0 / m1 MFC after:1 month Adde

svn commit: r353525 - in head/sys: arm/allwinner/clkng conf

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:47:20 2019 New Revision: 353525 URL: https://svnweb.freebsd.org/changeset/base/353525 Log: arm64: allwinner: Add new clock aw_clk_np This is a clock type present in Allwinner H6 where the formula is : f = fparent * N / P MFC after:1 month Added:

svn commit: r353524 - head/sys/arm/allwinner/clkng

2019-10-14 Thread Emmanuel Vadot
Author: manu Date: Mon Oct 14 21:45:15 2019 New Revision: 353524 URL: https://svnweb.freebsd.org/changeset/base/353524 Log: aw_ccung: Add more debug printfs No functional changes MFC after:1 month Modified: head/sys/arm/allwinner/clkng/aw_ccung.c Modified: head/sys/arm/allwinne

svn commit: r353523 - head

2019-10-14 Thread John Baldwin
Author: jhb Date: Mon Oct 14 21:22:42 2019 New Revision: 353523 URL: https://svnweb.freebsd.org/changeset/base/353523 Log: Disconnect powerpc from the default tinderbox for now. The wrong toolchain was set in MAKE_PARAMS_powerpc, however, there are some other issues preventing powerpc fro

svn commit: r353522 - head/sys/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 21:18:37 2019 New Revision: 353522 URL: https://svnweb.freebsd.org/changeset/base/353522 Log: if_delmulti() is never called without ifp argument, assert this instead of doing a useless search through interfaces. Modified: head/sys/net/if.c Modified: head/sy

svn commit: r353521 - in head/sys/x86: include x86

2019-10-14 Thread Conrad Meyer
Author: cem Date: Mon Oct 14 20:55:01 2019 New Revision: 353521 URL: https://svnweb.freebsd.org/changeset/base/353521 Log: x86: Use canonical spelling of MOVDIR64B feature/instruction The former spelling probably confused MOVDIR64B with MOVDIRI64. MOVDIR_64B is the 64-*byte* direct sto

svn commit: r353520 - head/sys/dev/sfxge

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:33:14 2019 New Revision: 353520 URL: https://svnweb.freebsd.org/changeset/base/353520 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: philip Modified: head/sys/dev/sfxge/sfxge_port.c Modified: head/sys/dev/sfxge/sfxge_port.c ==

svn commit: r353519 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:32:28 2019 New Revision: 353519 URL: https://svnweb.freebsd.org/changeset/base/353519 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_aue.c Modified: head/sys/dev/usb/net/if_aue.c

svn commit: r353518 - head/sys/netinet

2019-10-14 Thread Michael Tuexen
Author: tuexen Date: Mon Oct 14 20:32:11 2019 New Revision: 353518 URL: https://svnweb.freebsd.org/changeset/base/353518 Log: Separate out SCTP related dtrace code. This is based on work done by markj@. Discussed with: markj@ MFC after:3 days Modified: head/

svn commit: r353517 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:32:08 2019 New Revision: 353517 URL: https://svnweb.freebsd.org/changeset/base/353517 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_axe.c Modified: head/sys/dev/usb/net/if_axe.c

svn commit: r353515 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:31:43 2019 New Revision: 353515 URL: https://svnweb.freebsd.org/changeset/base/353515 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_cue.c Modified: head/sys/dev/usb/net/if_cue.c

svn commit: r353516 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:31:57 2019 New Revision: 353516 URL: https://svnweb.freebsd.org/changeset/base/353516 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_axge.c Modified: head/sys/dev/usb/net/if_axge.c ==

svn commit: r353514 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:31:28 2019 New Revision: 353514 URL: https://svnweb.freebsd.org/changeset/base/353514 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_kue.c Modified: head/sys/dev/usb/net/if_kue.c

svn commit: r353513 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:30:44 2019 New Revision: 353513 URL: https://svnweb.freebsd.org/changeset/base/353513 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_mos.c Modified: head/sys/dev/usb/net/if_mos.c

svn commit: r353512 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:30:30 2019 New Revision: 353512 URL: https://svnweb.freebsd.org/changeset/base/353512 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_muge.c Modified: head/sys/dev/usb/net/if_muge.c ==

svn commit: r353509 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:29:32 2019 New Revision: 353509 URL: https://svnweb.freebsd.org/changeset/base/353509 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_udav.c Modified: head/sys/dev/usb/net/if_udav.c ==

svn commit: r353510 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:29:50 2019 New Revision: 353510 URL: https://svnweb.freebsd.org/changeset/base/353510 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_smsc.c Modified: head/sys/dev/usb/net/if_smsc.c ==

svn commit: r353511 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:30:06 2019 New Revision: 353511 URL: https://svnweb.freebsd.org/changeset/base/353511 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_rue.c Modified: head/sys/dev/usb/net/if_rue.c

svn commit: r353508 - head/sys/dev/usb/net

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:29:14 2019 New Revision: 353508 URL: https://svnweb.freebsd.org/changeset/base/353508 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/net/if_ure.c Modified: head/sys/dev/usb/net/if_ure.c

svn commit: r353507 - head/sys/dev/usb/wlan

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:26:53 2019 New Revision: 353507 URL: https://svnweb.freebsd.org/changeset/base/353507 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/wlan/if_rsu.c Modified: head/sys/dev/usb/wlan/if_rsu.c ==

svn commit: r353506 - head/sys/dev/usb/wlan

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:26:17 2019 New Revision: 353506 URL: https://svnweb.freebsd.org/changeset/base/353506 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/usb/wlan/if_zyd.c Modified: head/sys/dev/usb/wlan/if_zyd.c ==

svn commit: r353505 - in head/sys/dev: mlx4/mlx4_en mlx5/mlx5_en

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:23:16 2019 New Revision: 353505 URL: https://svnweb.freebsd.org/changeset/base/353505 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c head/sys/dev/mlx5/mlx5_en/mlx5_en_flow_table.c

svn commit: r353504 - head/sys/ofed/drivers/infiniband/ulp/ipoib

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:22:25 2019 New Revision: 353504 URL: https://svnweb.freebsd.org/changeset/base/353504 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: hselasky Modified: head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c Modified: head/sys/ofed/drive

svn commit: r353503 - in head/sys/dev: ixgbe ixl

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:21:02 2019 New Revision: 353503 URL: https://svnweb.freebsd.org/changeset/base/353503 Log: Convert if_foreach_llmaddr() KPI. Reviewed by: erj Modified: head/sys/dev/ixgbe/if_ix.c head/sys/dev/ixl/if_iavf.c head/sys/dev/ixl/if_ixl.c head/sys/dev/

svn commit: r353502 - head/sys/dev/mxge

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 20:18:36 2019 New Revision: 353502 URL: https://svnweb.freebsd.org/changeset/base/353502 Log: Convert to if_foreach_llmaddr() KPI. Reviewed by: gallatin Modified: head/sys/dev/mxge/if_mxge.c Modified: head/sys/dev/mxge/if_mxge.c

svn commit: r353500 - in head/sys/powerpc: aim powerpc

2019-10-14 Thread Leandro Lupori
Author: luporl Date: Mon Oct 14 19:06:17 2019 New Revision: 353500 URL: https://svnweb.freebsd.org/changeset/base/353500 Log: Fix powerpc/powerpcspe builds Revision 353489 introduced some new function calls in common powerpc code, but these must be called only on powerpc64. Modified: h

svn commit: r353499 - head

2019-10-14 Thread John Baldwin
Author: jhb Date: Mon Oct 14 18:31:11 2019 New Revision: 353499 URL: https://svnweb.freebsd.org/changeset/base/353499 Log: Remove the aarch64 libclang_rt.profile library from llvm 8.0.1. Reported by: np Modified: head/ObsoleteFiles.inc Modified: head/ObsoleteFiles.inc =

svn commit: r353498 - head/sys/dev/cxgbe/tom

2019-10-14 Thread John Baldwin
Author: jhb Date: Mon Oct 14 18:02:56 2019 New Revision: 353498 URL: https://svnweb.freebsd.org/changeset/base/353498 Log: Remove an unused parameter from get_new_keyid(). Modified: head/sys/dev/cxgbe/tom/t4_tls.c Modified: head/sys/dev/cxgbe/tom/t4_tls.c

svn commit: r353497 - head/sys/vm

2019-10-14 Thread Doug Moore
Author: dougm Date: Mon Oct 14 17:51:57 2019 New Revision: 353497 URL: https://svnweb.freebsd.org/changeset/base/353497 Log: Correct a transcription error that broke GENERIC introduced in r353496. Modified: head/sys/vm/vm_map.c Modified: head/sys/vm/vm_map.c =

svn commit: r353496 - head/sys/vm

2019-10-14 Thread Doug Moore
Author: dougm Date: Mon Oct 14 17:15:42 2019 New Revision: 353496 URL: https://svnweb.freebsd.org/changeset/base/353496 Log: Move the definition of _vm_map_assert_consistent so that it can use vm_map_free_{left,right} rather than re-implementing them. Use the VM_MAP_FOREACH macro where appl

Re: svn commit: r353493 - head/sys/dev/mmc/host

2019-10-14 Thread Emmanuel Vadot
On Mon, 14 Oct 2019 17:27:51 +0100 Ruslan Bukin wrote: > On Mon, Oct 14, 2019 at 06:10:51PM +0200, Emmanuel Vadot wrote: > > > > On Mon, 14 Oct 2019 15:53:00 + (UTC) > > Ruslan Bukin wrote: > > > > > Author: br > > > Date: Mon Oct 14 15:52:59 2019 > > > New Revision: 353493 > > > URL: http

svn commit: r353495 - in head/sys/netpfil/ipfw: . nptv6

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 16:37:41 2019 New Revision: 353495 URL: https://svnweb.freebsd.org/changeset/base/353495 Log: Use epoch(9) directly instead of obsoleted KPI. Modified: head/sys/netpfil/ipfw/ip_fw_nat.c head/sys/netpfil/ipfw/nptv6/nptv6.c Modified: head/sys/netpfil/ipfw/ip_

svn commit: r353494 - head/sys/netpfil/ipfw

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 16:37:00 2019 New Revision: 353494 URL: https://svnweb.freebsd.org/changeset/base/353494 Log: ipfw(4) rule matching always happens in network epoch. Modified: head/sys/netpfil/ipfw/ip_fw2.c Modified: head/sys/netpfil/ipfw/ip_fw2.c

Re: svn commit: r353493 - head/sys/dev/mmc/host

2019-10-14 Thread Ruslan Bukin
On Mon, Oct 14, 2019 at 06:10:51PM +0200, Emmanuel Vadot wrote: > > On Mon, 14 Oct 2019 15:53:00 + (UTC) > Ruslan Bukin wrote: > > > Author: br > > Date: Mon Oct 14 15:52:59 2019 > > New Revision: 353493 > > URL: https://svnweb.freebsd.org/changeset/base/353493 > > > > Log: > > Fix the dr

Re: svn commit: r353493 - head/sys/dev/mmc/host

2019-10-14 Thread Emmanuel Vadot
Hi Ruslan, On Mon, 14 Oct 2019 15:53:00 + (UTC) Ruslan Bukin wrote: > Author: br > Date: Mon Oct 14 15:52:59 2019 > New Revision: 353493 > URL: https://svnweb.freebsd.org/changeset/base/353493 > > Log: > Fix the driver attachment in cases when the external resource devices > (resets,

svn commit: r353493 - head/sys/dev/mmc/host

2019-10-14 Thread Ruslan Bukin
Author: br Date: Mon Oct 14 15:52:59 2019 New Revision: 353493 URL: https://svnweb.freebsd.org/changeset/base/353493 Log: Fix the driver attachment in cases when the external resource devices (resets, regulators, clocks) are not available. Rely on a system initialization done by a bootloa

svn commit: r353492 - head/sys/netinet6

2019-10-14 Thread Gleb Smirnoff
Author: glebius Date: Mon Oct 14 15:33:53 2019 New Revision: 353492 URL: https://svnweb.freebsd.org/changeset/base/353492 Log: in6ifa_llaonifp() is never called from fast path, so do not require epoch being entered. Modified: head/sys/netinet6/in6.c Modified: head/sys/netinet6/in6.c ==

svn commit: r353491 - head/tools/tools/locale

2019-10-14 Thread Eugene Grosbein
Author: eugen Date: Mon Oct 14 14:31:21 2019 New Revision: 353491 URL: https://svnweb.freebsd.org/changeset/base/353491 Log: Add missing port to the list of needed tools in the README file describing locale rebuild process: devel/apache-ant Modified: head/tools/tools/locale/README Mod

svn commit: r353490 - head/sys/netinet/tcp_stacks

2019-10-14 Thread Randall Stewart
Author: rrs Date: Mon Oct 14 13:10:29 2019 New Revision: 353490 URL: https://svnweb.freebsd.org/changeset/base/353490 Log: if_hw_tsomaxsegsize needs to be initialized to zero, just like in bbr.c and tcp_output.c Modified: head/sys/netinet/tcp_stacks/rack.c Modified: head/sys/netinet/tcp_st

svn commit: r353489 - in head/sys: conf kern powerpc/aim powerpc/include powerpc/powerpc powerpc/pseries vm

2019-10-14 Thread Leandro Lupori
Author: luporl Date: Mon Oct 14 13:04:04 2019 New Revision: 353489 URL: https://svnweb.freebsd.org/changeset/base/353489 Log: [PPC64] Initial kernel minidump implementation Based on POWER9BSD implementation, with all POWER9 specific code removed and addition of new methods in PPC64 MMU in

svn commit: r353488 - head/sys/netinet

2019-10-14 Thread Michael Tuexen
Author: tuexen Date: Mon Oct 14 13:02:49 2019 New Revision: 353488 URL: https://svnweb.freebsd.org/changeset/base/353488 Log: Rename sctp_dtrace_declare.h to sctp_kdtrace.h for consistentcy. MFC after:3 days Added: head/sys/netinet/sctp_kdtrace.h - copied unchanged from

Re: svn commit: r353292 - in head/sys: contrib/ipfilter/netinet dev/firewire dev/iicbus dev/usb/net kern net netgraph netinet netinet6 netipsec netpfil/ipfw netpfil/pf ofed/drivers/infiniband/ulp/ipoi

2019-10-14 Thread Hans Petter Selasky
On 2019-10-14 12:03, Hans Petter Selasky wrote: On 2019-10-08 00:40, Gleb Smirnoff wrote: Author: glebius Date: Mon Oct  7 22:40:05 2019 New Revision: 353292 URL: https://svnweb.freebsd.org/changeset/base/353292 Log:    Widen NET_EPOCH coverage.    When epoch(9) was introduced to network stack,

Re: svn commit: r353292 - in head/sys: contrib/ipfilter/netinet dev/firewire dev/iicbus dev/usb/net kern net netgraph netinet netinet6 netipsec netpfil/ipfw netpfil/pf ofed/drivers/infiniband/ulp/ipoi

2019-10-14 Thread Hans Petter Selasky
On 2019-10-08 00:40, Gleb Smirnoff wrote: Author: glebius Date: Mon Oct 7 22:40:05 2019 New Revision: 353292 URL: https://svnweb.freebsd.org/changeset/base/353292 Log: Widen NET_EPOCH coverage. When epoch(9) was introduced to network stack, it was basically dropped in place of exi

svn commit: r353487 - head/sys/arm64/arm64

2019-10-14 Thread Andrew Turner
Author: andrew Date: Mon Oct 14 09:29:56 2019 New Revision: 353487 URL: https://svnweb.freebsd.org/changeset/base/353487 Log: Sort the id_aa64*_fields arrays to be in alphanumerical order. Sponsored by: DARPA, AFRL Modified: head/sys/arm64/arm64/identcpu.c Modified: head/sys/arm64/arm64