Re: svn commit: r273295 - in head/sbin: ping ping6

2014-10-20 Thread Hiroki Sato
Hi Bruce, Thank you for your review. I fixed lines you pointed out and attached a patch candidate. I will show each change line by line in this email, too: Bruce Evans b...@optusnet.com.au wrote in 20141020140848.d...@besplex.bde.org: br - if (cc - ICMP_MINLEN - phdr_len

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

2014-10-20 Thread Alexander V. Chernikov
Author: melifaro Date: Mon Oct 20 11:21:07 2014 New Revision: 273327 URL: https://svnweb.freebsd.org/changeset/base/273327 Log: Use copyout() directly instead of updating various fields before/after each sooptcopyout() call. Found by: luigi Sponsored by: Yandex LLC Modified:

Re: svn commit: r273295 - in head/sbin: ping ping6

2014-10-20 Thread Bruce Evans
On Mon, 20 Oct 2014, Hiroki Sato wrote: Thank you for your review. I fixed lines you pointed out and attached a patch candidate. I will show each change line by line in this email, too: Thanks. Bruce Evans b...@optusnet.com.au wrote in 20141020140848.d...@besplex.bde.org: br -

svn commit: r273328 - in head/sys/dev/ata: . chipsets

2014-10-20 Thread Alexander Motin
Author: mav Date: Mon Oct 20 13:18:52 2014 New Revision: 273328 URL: https://svnweb.freebsd.org/changeset/base/273328 Log: Add another PCI ID for JMB368 PATA controller. MFC after:1 week Modified: head/sys/dev/ata/ata-pci.h head/sys/dev/ata/chipsets/ata-jmicron.c Modified:

svn commit: r273329 - head/sys/arm/broadcom/bcm2835

2014-10-20 Thread Luiz Otavio O Souza
Author: loos Date: Mon Oct 20 13:36:52 2014 New Revision: 273329 URL: https://svnweb.freebsd.org/changeset/base/273329 Log: Add another wakeup() after actually set the bus as free. This fix a race where the threads waiting for the bus would wake up early and still see bus as busy.

svn commit: r273330 - head/sys/dev/vt

2014-10-20 Thread Jean-Sebastien Pedron
Author: dumbbell Date: Mon Oct 20 14:25:23 2014 New Revision: 273330 URL: https://svnweb.freebsd.org/changeset/base/273330 Log: vt(4): Refuse to load a font if hw.vga.textmode is selected Before, the font was loaded and the window size recalculated, giving an unusable terminal, even if

svn commit: r273331 - in head: sbin/ifconfig share/man/man4 sys/conf sys/modules sys/modules/if_vxlan sys/net sys/sys

2014-10-20 Thread Bryan Venteicher
Author: bryanv Date: Mon Oct 20 14:42:42 2014 New Revision: 273331 URL: https://svnweb.freebsd.org/changeset/base/273331 Log: Add vxlan interface vxlan creates a virtual LAN by encapsulating the inner Ethernet frame in a UDP packet. This implementation is based on RFC7348.

svn commit: r273332 - head/share/man/man4

2014-10-20 Thread Ed Maste
Author: emaste Date: Mon Oct 20 14:48:20 2014 New Revision: 273332 URL: https://svnweb.freebsd.org/changeset/base/273332 Log: Add vtfontcvt(8) cross-reference to vt(4) man page Reported by: beeess...@ruggedinbox.com MFC after:3 days Modified: head/share/man/man4/vt.4 Modified:

svn commit: r273333 - head/share/misc

2014-10-20 Thread Sergey Kandaurov
Author: pluknet Date: Mon Oct 20 15:41:11 2014 New Revision: 27 URL: https://svnweb.freebsd.org/changeset/base/27 Log: Mac OS X 10.10 added. Modified: head/share/misc/bsd-family-tree Modified: head/share/misc/bsd-family-tree

Re: svn commit: r273331 - in head: sbin/ifconfig share/man/man4 sys/conf sys/modules sys/modules/if_vxlan sys/net sys/sys

2014-10-20 Thread Adrian Chadd
Hi, Can you please create a PR that says something like review vxlan code for RSS after de-capsulation and assign it to me? I'm going to have to insert a hash recalculation after decapsulation but I'm too busy at the moment to do it. Thanks, -a On 20 October 2014 07:42, Bryan Venteicher

svn commit: r273334 - in head/sys: boot/common kern sys

2014-10-20 Thread Marcel Moolenaar
Author: marcel Date: Mon Oct 20 17:04:03 2014 New Revision: 273334 URL: https://svnweb.freebsd.org/changeset/base/273334 Log: Fully support constructors for the purpose of code coverage analysis. This involves: 1. Have the loader pass the start and size of the .ctors section to the

svn commit: r273335 - head/sys/fs/unionfs

2014-10-20 Thread Mateusz Guzik
Author: mjg Date: Mon Oct 20 17:53:49 2014 New Revision: 273335 URL: https://svnweb.freebsd.org/changeset/base/273335 Log: unionfs: hold mount interlock while manipulating mnt_flag This is for consistency with other filesystems. Modified: head/sys/fs/unionfs/union_vfsops.c Modified:

svn commit: r273336 - in head/sys: fs/nullfs fs/tmpfs fs/unionfs kern sys ufs/ffs

2014-10-20 Thread Mateusz Guzik
Author: mjg Date: Mon Oct 20 18:00:50 2014 New Revision: 273336 URL: https://svnweb.freebsd.org/changeset/base/273336 Log: Provide vfs suspension support only for filesystems which need it, take two. nullfs and unionfs need to request suspension if underlying filesystem(s) use it.

svn commit: r273337 - head/sys/arm/broadcom/bcm2835

2014-10-20 Thread Luiz Otavio O Souza
Author: loos Date: Mon Oct 20 18:04:20 2014 New Revision: 273337 URL: https://svnweb.freebsd.org/changeset/base/273337 Log: Fix the mtx_sleep() error checking, catch all errors and not only EWOULDBLOCK. Do not print any message at errors. The errors are properly sent to upper layers

Re: svn commit: r273334 - in head/sys: boot/common kern sys

2014-10-20 Thread Roman Divacky
Note that LLVM appends the priority of the constructors to the name of the .ctors section. Not so when compiling with GCC. The code currently works for GCC and not for LLVM. Uhm? LLVM here creates .ctors section, nothing is appended. Can you be more specific on what you're seing? Roman

svn commit: r273338 - in head/sys: amd64/amd64 sys x86/include

2014-10-20 Thread Neel Natu
Author: neel Date: Mon Oct 20 18:09:33 2014 New Revision: 273338 URL: https://svnweb.freebsd.org/changeset/base/273338 Log: Merge from projects/bhyve_svm all the changes outside vmm.ko or bhyve utilities: Add support for AMD's nested page tables in pmap.c: - Provide the correct bit mask

Re: svn commit: r273334 - in head/sys: boot/common kern sys

2014-10-20 Thread Marcel Moolenaar
On Oct 20, 2014, at 11:00 AM, Roman Divacky rdiva...@vlakno.cz wrote: Note that LLVM appends the priority of the constructors to the name of the .ctors section. Not so when compiling with GCC. The code currently works for GCC and not for LLVM. Uhm? LLVM here creates .ctors section,

Re: svn commit: r273274 - head/sys/netpfil/ipfw

2014-10-20 Thread Bruce Simpson
On Sun, 19 Oct 2014, at 13:02, Andriy Gapon wrote: I think that on platforms where an optimized version of fls() is available that would work faster than this cool piece of bit magic. This is a common enough idiom that perhaps a macro should be added: sys/param.h: #define roundup(x, y)

svn commit: r273342 - head/sys/kern

2014-10-20 Thread Mark Johnston
Author: markj Date: Mon Oct 20 20:21:40 2014 New Revision: 273342 URL: https://svnweb.freebsd.org/changeset/base/273342 Log: Fix a typo from r189544, which replaced unp_global_rwlock with unp_list_lock and unp_link_rwlock. MFC after:3 days Modified: head/sys/kern/subr_witness.c

svn commit: r273344 - head/sys/kern

2014-10-20 Thread Mateusz Guzik
Author: mjg Date: Mon Oct 20 21:57:24 2014 New Revision: 273344 URL: https://svnweb.freebsd.org/changeset/base/273344 Log: filedesc: plug 2 write-only variables Reported by: Coverity CID: 1245745, 1245746 Modified: head/sys/kern/kern_descrip.c Modified: head/sys/kern/kern_descrip.c

Re: svn commit: r273331 - in head: sbin/ifconfig share/man/man4 sys/conf sys/modules sys/modules/if_vxlan sys/net sys/sys

2014-10-20 Thread Andrew Thompson
On 21 October 2014 03:42, Bryan Venteicher bry...@freebsd.org wrote: Author: bryanv Date: Mon Oct 20 14:42:42 2014 New Revision: 273331 URL: https://svnweb.freebsd.org/changeset/base/273331 Log: Add vxlan interface vxlan creates a virtual LAN by encapsulating the inner Ethernet frame

svn commit: r273351 - head/sys/kern

2014-10-20 Thread Mateusz Guzik
Author: mjg Date: Mon Oct 20 22:52:15 2014 New Revision: 273351 URL: https://svnweb.freebsd.org/changeset/base/273351 Log: Plug unnecessary binvp NULL initialization and test. Reported by: Coverity CID: 1018889 Modified: head/sys/kern/kern_exec.c Modified: head/sys/kern/kern_exec.c

Re: svn commit: r273331 - in head: sbin/ifconfig share/man/man4 sys/conf sys/modules sys/modules/if_vxlan sys/net sys/sys

2014-10-20 Thread Bryan Venteicher
On Mon, Oct 20, 2014 at 5:37 PM, Andrew Thompson thom...@freebsd.org wrote: On 21 October 2014 03:42, Bryan Venteicher bry...@freebsd.org wrote: Author: bryanv Date: Mon Oct 20 14:42:42 2014 New Revision: 273331 URL: https://svnweb.freebsd.org/changeset/base/273331 Log: Add vxlan

Re: svn commit: r269407 - in head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs: . sys

2014-10-20 Thread Andriy Gapon
On 02/08/2014 02:16, Steven Hartland wrote: Author: smh Date: Fri Aug 1 23:16:48 2014 New Revision: 269407 URL: http://svnweb.freebsd.org/changeset/base/269407 Log: Don't return ZIO_PIPELINE_CONTINUE from vdev_op_io_start methods This prevents recursion of vdev_queue_io_done as

svn commit: r273352 - head/sys/arm/freescale/imx

2014-10-20 Thread Ian Lepore
Author: ian Date: Mon Oct 20 23:32:34 2014 New Revision: 273352 URL: https://svnweb.freebsd.org/changeset/base/273352 Log: The imx6 hardware is fast enough to make good use of however much timecounter resolution is available, so ask for a 1 GHz frequency. It won't actually get one that

svn commit: r273353 - head/sys/arm/freescale/imx

2014-10-20 Thread Ian Lepore
Author: ian Date: Mon Oct 20 23:34:47 2014 New Revision: 273353 URL: https://svnweb.freebsd.org/changeset/base/273353 Log: Attach the imx6 CCM driver during BUS_PASS_CPU. It controls the clocks for most on-chip devices and needs to be available before other drivers start attaching and

Re: svn commit: r269407 - in head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs: . sys

2014-10-20 Thread Steven Hartland
On 20/10/2014 23:54, Andriy Gapon wrote: On 02/08/2014 02:16, Steven Hartland wrote: Author: smh Date: Fri Aug 1 23:16:48 2014 New Revision: 269407 URL: http://svnweb.freebsd.org/changeset/base/269407 Log: Don't return ZIO_PIPELINE_CONTINUE from vdev_op_io_start methods This

svn commit: r273356 - head/sys/amd64/amd64

2014-10-20 Thread Neel Natu
Author: neel Date: Tue Oct 21 01:06:58 2014 New Revision: 273356 URL: https://svnweb.freebsd.org/changeset/base/273356 Log: Fix a race in pmap_emulate_accessed_dirty() that could trigger a EPT misconfiguration VM-exit. An EPT misconfiguration is triggered when the processor encounters a

svn commit: r273359 - head/sys/dev/re

2014-10-20 Thread Pyun YongHyeon
Author: yongari Date: Tue Oct 21 01:31:24 2014 New Revision: 273359 URL: https://svnweb.freebsd.org/changeset/base/273359 Log: It seems multicast filtering of RTL8168F does not work. Workaround the silicon bug by accepting any multicast packets. PR: 193488 MFC After:1 week

svn commit: r273360 - head/tools/tools/cxgbetool

2014-10-20 Thread Navdeep Parhar
Author: np Date: Tue Oct 21 01:34:18 2014 New Revision: 273360 URL: https://svnweb.freebsd.org/changeset/base/273360 Log: cxgbetool: Catch up with r185979. One of MAP_ANON, MAP_PRIVATE, MAP_SHARED, or MAP_STACK must be specified. This fixes the loadfw subcommand. MFC after:1

Re: svn commit: r273360 - head/tools/tools/cxgbetool

2014-10-20 Thread Navdeep Parhar
On 10/20/14 18:34, Navdeep Parhar wrote: Author: np Date: Tue Oct 21 01:34:18 2014 New Revision: 273360 URL: https://svnweb.freebsd.org/changeset/base/273360 Log: cxgbetool: Catch up with r185979. One of MAP_ANON, MAP_PRIVATE, MAP_SHARED, or MAP_STACK must be specified. Sorry, I meant

svn commit: r273365 - head/share/mk

2014-10-20 Thread Mark Johnston
Author: markj Date: Tue Oct 21 04:30:00 2014 New Revision: 273365 URL: https://svnweb.freebsd.org/changeset/base/273365 Log: Fix a few small bugs in the DTrace USDT rules: * anchor search strings appropriately, * use .ALLSRC to pass the full path to the D script to dtrace(1), * don't

svn commit: r273370 - head/cddl/lib/libdtrace

2014-10-20 Thread Mark Johnston
Author: markj Date: Tue Oct 21 05:19:08 2014 New Revision: 273370 URL: https://svnweb.freebsd.org/changeset/base/273370 Log: Correct the calculation of tcps_rto in the struct tcpcb - tcpsinfo_t translator. Submitted by: Grenville Armitage garmit...@swin.edu.au MFC after:1 week

Re: svn commit: r273356 - head/sys/amd64/amd64

2014-10-20 Thread Craig Rodrigues
Hi, Just to add some background to this fix, in the https://jenkins.freebsd.org cluster, we are using several bhyve VM's to host the environment for doing builds and tests. We are hammering on the VM's quite nicely. We found one problem where the bhyve binary would crash. Neel looked at the

svn commit: r273371 - head/sys/net

2014-10-20 Thread Bryan Venteicher
Author: bryanv Date: Tue Oct 21 05:45:57 2014 New Revision: 273371 URL: https://svnweb.freebsd.org/changeset/base/273371 Log: Use the size of the Ethernet address, not the entire header, when copying into forwarding entry. Reported by: Coverity CID: 1248849 Modified: