Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Andrey Chernov
We even don't need to check arg excepting for 0, because what is needed is rlimt_t and not arg. So this version will be better: rlimt_t targ; if (arg 0) { errno = EINVAL; return (-1); } targ = arg; if (targ RLIM_INFINITY / 512) targ = RLIM_INFINITY / 512; limit.rlim_max =

svn commit: r278668 - stable/10/lib/libthr/thread

2015-02-13 Thread Konstantin Belousov
Author: kib Date: Fri Feb 13 08:42:01 2015 New Revision: 278668 URL: https://svnweb.freebsd.org/changeset/base/278668 Log: MFC r278313: Fully initialize allocated memory for the new barrier. Modified: stable/10/lib/libthr/thread/thr_barrier.c Directory Properties: stable/10/ (props

svn commit: r278669 - head/usr.bin/passwd

2015-02-13 Thread Baptiste Daroussin
Author: bapt Date: Fri Feb 13 09:02:15 2015 New Revision: 278669 URL: https://svnweb.freebsd.org/changeset/base/278669 Log: Revert r278642 install(1) does not handle chflags on hardlinks Modified: head/usr.bin/passwd/Makefile Modified: head/usr.bin/passwd/Makefile

Re: svn commit: r278650 - in stable/10: sys/kern tools/sched usr.bin/man

2015-02-13 Thread Thomas Mueller
On Fri, 13 Feb 2015 00:29:58 + (UTC), Sean Bruno wrote: Author: sbruno Date: Fri Feb 13 00:29:57 2015 New Revision: 278650 URL: https://svnweb.freebsd.org/changeset/base/278650 Log: MFC 272315 272757 274091 274902 r272315 Explicitly return None for negative event indices.

svn commit: r278670 - head/sys/dev/dwc

2015-02-13 Thread Ruslan Bukin
Author: br Date: Fri Feb 13 11:00:13 2015 New Revision: 278670 URL: https://svnweb.freebsd.org/changeset/base/278670 Log: o Correct the condition in reset procedure o Setup interrupt hander after reset, not before This fixes operation on ODROID-C1 (Amlogic S805) Submitted by: John

svn commit: r278671 - head/sys/dev/smc

2015-02-13 Thread Ruslan Bukin
Author: br Date: Fri Feb 13 11:13:08 2015 New Revision: 278671 URL: https://svnweb.freebsd.org/changeset/base/278671 Log: o Correct the calculation how many pages we need o Ensure we use correct bank for MSK register o Save and restore current bank in interrupt handler o Stop TX watchdog

svn commit: r278667 - stable/10/sys/ufs/ffs

2015-02-13 Thread Konstantin Belousov
Author: kib Date: Fri Feb 13 08:40:10 2015 New Revision: 278667 URL: https://svnweb.freebsd.org/changeset/base/278667 Log: MFC r277922: When mounting SU-enabled mount point, wait until the softdep_flush() thread started and incremented the stat_flush_threads. MFC r278257: Partially

svn commit: r278672 - in head/sys: cam/ctl sys

2015-02-13 Thread Alexander Motin
Author: mav Date: Fri Feb 13 13:26:23 2015 New Revision: 278672 URL: https://svnweb.freebsd.org/changeset/base/278672 Log: Teach CTL to ask GEOM devices about BIO_DELETE support. MFC after:1 week Modified: head/sys/cam/ctl/ctl_backend_block.c head/sys/cam/ctl/ctl_backend_ramdisk.c

svn commit: r278675 - stable/10/sys/boot/arm/uboot

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 15:16:55 2015 New Revision: 278675 URL: https://svnweb.freebsd.org/changeset/base/278675 Log: MFC r276632: Create a custom /boot/defaults/loader.conf for ARM. Added: stable/10/sys/boot/arm/uboot/loader.conf - copied unchanged from r276632,

Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Bruce Evans
On Sat, 14 Feb 2015, Bruce Evans wrote: ... However, I don't like using rlim_t for the scaled value that is not an rlimit. An incomplete fix with handling of negative values restored is something like: intmax_t targ; targ = arg; if (targ RLIM_INFINITY / 512)

Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Bruce Evans
On Fri, 13 Feb 2015, Andrey Chernov wrote: On 13.02.2015 10:18, Bruce Evans wrote: if (arg RLIM_INFINITY) err(...); Checking for RLIM_INFINITY is wrong here, since it is ulong long max, No, it is correct. rlim_t is neither unsigned not specificially ulong long. It is

svn commit: r278673 - head/sys/dev/vt/font

2015-02-13 Thread Alexey Dokuchaev
Author: danfe (ports committer) Date: Fri Feb 13 13:55:38 2015 New Revision: 278673 URL: https://svnweb.freebsd.org/changeset/base/278673 Log: Improve vt(4) default mouse pointer image. Previous one looked rather ugly, especially on native monitor resolutions. This one essentially matches

Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Bruce Evans
On Fri, 13 Feb 2015, Andrey Chernov wrote: We even don't need to check arg excepting for 0, because what is needed is rlimt_t and not arg. So this version will be better: rlimt_t targ; if (arg 0) { errno = EINVAL; return (-1); } This is reasonable, but not encouraged by the API or

Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Pedro Giffuni
On 02/13/15 09:29, Bruce Evans wrote: On Fri, 13 Feb 2015, Andrey Chernov wrote: We even don't need to check arg excepting for 0, because what is needed is rlimt_t and not arg. So this version will be better: rlimt_t targ; if (arg 0) { errno = EINVAL; return (-1); } This is

svn commit: r278681 - head/sys/ofed/include/linux

2015-02-13 Thread Hans Petter Selasky
Author: hselasky Date: Fri Feb 13 16:35:12 2015 New Revision: 278681 URL: https://svnweb.freebsd.org/changeset/base/278681 Log: Add more functions to the Linux kernel compatibility layer. Add some missing includes which are needed when the header files are not included in a particular

Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Pedro Giffuni
On 02/13/15 11:46, Bruce Evans wrote: On Fri, 13 Feb 2015, Pedro Giffuni wrote: On 02/13/15 09:29, Bruce Evans wrote: On Fri, 13 Feb 2015, Andrey Chernov wrote: We even don't need to check arg excepting for 0, because what is needed is rlimt_t and not arg. So this version will be better:

svn commit: r278677 - stable/10/sys/arm/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 15:32:31 2015 New Revision: 278677 URL: https://svnweb.freebsd.org/changeset/base/278677 Log: MFC r276642, r276644: Remove commented-out options SMP and APIC_IO from old arm boards that will never be able to support smp. Switch all arm kernels with

svn commit: r278680 - in stable/10/sys/arm: arm include

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 16:21:36 2015 New Revision: 278680 URL: https://svnweb.freebsd.org/changeset/base/278680 Log: MFC r266083, r267597: Give suitably-endowed ARMs a register similar to the x86 TSC register. Modified: stable/10/sys/arm/arm/cpufunc.c

svn commit: r278676 - stable/10/sys/arm/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 15:27:46 2015 New Revision: 278676 URL: https://svnweb.freebsd.org/changeset/base/278676 Log: MFC r266647, r270912, r273089: Reduce the diff between the PandaBoard and BeableBone kernel configs Resync comments about scbus and pass for life after AHCI

svn commit: r278678 - stable/10/sys/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 15:41:28 2015 New Revision: 278678 URL: https://svnweb.freebsd.org/changeset/base/278678 Log: MFC r276645: Don't allow clang to use fpu instructions or registers in kernel modules. Modified: stable/10/sys/conf/kmod.mk Directory Properties: stable/10/

Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Bruce Evans
On Fri, 13 Feb 2015, Pedro Giffuni wrote: On 02/13/15 09:29, Bruce Evans wrote: On Fri, 13 Feb 2015, Andrey Chernov wrote: We even don't need to check arg excepting for 0, because what is needed is rlimt_t and not arg. So this version will be better: rlimt_t targ; if (arg 0) { errno =

svn commit: r278679 - stable/10/sys/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 16:08:45 2015 New Revision: 278679 URL: https://svnweb.freebsd.org/changeset/base/278679 Log: MFC r27: Eliminate uninitialized variable warnings in kernel and module builds when building with gcc 4.2 Modified: stable/10/sys/conf/kern.mk Directory

svn commit: r278682 - head/share/mk

2015-02-13 Thread John Baldwin
Author: jhb Date: Fri Feb 13 17:33:27 2015 New Revision: 278682 URL: https://svnweb.freebsd.org/changeset/base/278682 Log: Make the extra dependencies in DPADD be dependencies of PROG_FULL and SHLIB_NAME_FULL so that the full binary is relinked when a dependency changes. Right now the

svn commit: r278683 - in stable/10/sys/arm: conf tegra

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 17:36:41 2015 New Revision: 278683 URL: https://svnweb.freebsd.org/changeset/base/278683 Log: MFC r267719: Remove the incomplete Tegra 2 code, nobody was maintaining it. The AC100 never booted to single user mode. (And now it is blocking the ability

svn commit: r278689 - stable/10/sys/arm/broadcom/bcm2835

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 18:16:08 2015 New Revision: 278689 URL: https://svnweb.freebsd.org/changeset/base/278689 Log: MFC r277028, r277038: Check for and handle failures of bus_dmamap_load(). Handle dma mappings with more than one segment for rpi sdhci. Modified:

Re: svn commit: r278623 - head/sys/kern

2015-02-13 Thread hiren panchasara
On 02/12/15 at 01:31P, Randall Stewart wrote: Author: rrs Date: Thu Feb 12 13:31:08 2015 New Revision: 278623 URL: https://svnweb.freebsd.org/changeset/base/278623 Log: This fixes a bug I in-advertantly inserted when I updated the callout code in my last commit. The cc_exec_next is

svn commit: r278690 - head/usr.sbin/gssd

2015-02-13 Thread Mark Johnston
Author: markj Date: Fri Feb 13 18:32:55 2015 New Revision: 278690 URL: https://svnweb.freebsd.org/changeset/base/278690 Log: Check for an error from daemon(3), and correct the check for an error from socket(2). MFC after:3 days Sponsored by: EMC / Isilon Storage Division Modified:

svn commit: r278688 - stable/10/sys/dev/sdhci

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 18:13:42 2015 New Revision: 278688 URL: https://svnweb.freebsd.org/changeset/base/278688 Log: MFC r277027: Handle the possibility that SDHCI_PLATFORM_START_TRANSFER() can fail. Modified: stable/10/sys/dev/sdhci/sdhci.c Directory Properties: stable/10/

svn commit: r278691 - head/usr.sbin/gssd

2015-02-13 Thread Mark Johnston
Author: markj Date: Fri Feb 13 18:34:04 2015 New Revision: 278691 URL: https://svnweb.freebsd.org/changeset/base/278691 Log: Add an auto-generated file to CLEANFILES. MFC after:3 days Sponsored by: EMC / Isilon Storage Division Modified: head/usr.sbin/gssd/Makefile Modified:

svn commit: r278693 - in stable/10: sys/kern tools/sched usr.bin/man

2015-02-13 Thread Sean Bruno
Author: sbruno Date: Fri Feb 13 18:45:44 2015 New Revision: 278693 URL: https://svnweb.freebsd.org/changeset/base/278693 Log: Revert r278650. Definite layer 8 bug. Submitted by: dhw and Thomas Mueller tmuel...@sysgo.com Modified: stable/10/sys/kern/kern_lock.c

Re: svn commit: r278634 - head/lib/libc/gen

2015-02-13 Thread Andrey Chernov
On 13.02.2015 17:29, Bruce Evans wrote: if (arg 0) { errno = EINVAL; return (-1); } This is reasonable, but not encouraged by the API or compatible with what setrlimit() does with negative args. (setrlimit() still uses my hack from 1994, of converting negative args to

svn commit: r278685 - stable/10/sys/arm/broadcom/bcm2835

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 18:03:50 2015 New Revision: 278685 URL: https://svnweb.freebsd.org/changeset/base/278685 Log: MFC r276985: Store the shadow command/mode register in the softc, not a local static var. Modified: stable/10/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c Directory

svn commit: r278686 - stable/10/sys/kern

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 18:10:06 2015 New Revision: 278686 URL: https://svnweb.freebsd.org/changeset/base/278686 Log: MFC r277025: Fix an off-by-one in ppsratecheck(). Modified: stable/10/sys/kern/kern_time.c Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278692 - stable/10/sys/arm/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 18:37:22 2015 New Revision: 278692 URL: https://svnweb.freebsd.org/changeset/base/278692 Log: MFC r275962: Clean up style of CUBIEBOARD2 config. Modified: stable/10/sys/arm/conf/CUBIEBOARD2 Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278687 - stable/10/sys/dev/mmc

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 18:12:30 2015 New Revision: 278687 URL: https://svnweb.freebsd.org/changeset/base/278687 Log: MFC r277026: Rate-limit error logging to 5 lines per second. Modified: stable/10/sys/dev/mmc/mmcsd.c Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278696 - stable/10/sys/arm/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 19:52:16 2015 New Revision: 278696 URL: https://svnweb.freebsd.org/changeset/base/278696 Log: MFC r271220: Create a common i.MX53 config and use it with the two existing i.MX53 boards. Added: stable/10/sys/arm/conf/IMX53 - copied unchanged from

svn commit: r278699 - stable/10/sys/arm/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 20:15:10 2015 New Revision: 278699 URL: https://svnweb.freebsd.org/changeset/base/278699 Log: MFC r276003: Start to clean up the armv6 kernel configs by reducing the diff between them in the first sections and the later FDT support. Modified:

svn commit: r278703 - in stable/10/sys: arm/broadcom/bcm2835 dev/sdhci

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 20:38:39 2015 New Revision: 278703 URL: https://svnweb.freebsd.org/changeset/base/278703 Log: MFC r277306, r277307, r277346: Add defines for SDHCI 3.0 controllers. Add a new SDHCI quirk, SDHCI_QUIRK_DONT_SET_HISPD_BIT. Save the command-and-flags

svn commit: r278697 - head/sys/kern

2015-02-13 Thread Alan Cox
Author: alc Date: Fri Feb 13 19:58:53 2015 New Revision: 278697 URL: https://svnweb.freebsd.org/changeset/base/278697 Log: Preset the object's color, or alignment, to maximize superpage usage. MFC after:5 days Modified: head/sys/kern/sysv_shm.c Modified: head/sys/kern/sysv_shm.c

svn commit: r278702 - stable/10/sys/arm/arm

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 20:23:06 2015 New Revision: 278702 URL: https://svnweb.freebsd.org/changeset/base/278702 Log: MFC r277305: Minor cleanups, comment changes. Modified: stable/10/sys/arm/arm/locore-v6.S Directory Properties: stable/10/ (props changed) Modified:

Re: svn commit: r278623 - head/sys/kern

2015-02-13 Thread Peter Holm
On Fri, Feb 13, 2015 at 10:29:01AM -0800, hiren panchasara wrote: On 02/12/15 at 01:31P, Randall Stewart wrote: Author: rrs Date: Thu Feb 12 13:31:08 2015 New Revision: 278623 URL: https://svnweb.freebsd.org/changeset/base/278623 Log: This fixes a bug I in-advertantly inserted

svn commit: r278700 - stable/10/sys/arm/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 20:18:29 2015 New Revision: 278700 URL: https://svnweb.freebsd.org/changeset/base/278700 Log: MFC r277037: Enable ALT_BREAK_TO_DEBUGGER for rpi. Modified: stable/10/sys/arm/conf/RPI-B Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278695 - head/sys/dev/oce

2015-02-13 Thread John-Mark Gurney
Author: jmg Date: Fri Feb 13 19:44:04 2015 New Revision: 278695 URL: https://svnweb.freebsd.org/changeset/base/278695 Log: srandom has no influence on read_random, at least not this late... Modified: head/sys/dev/oce/oce_mbox.c Modified: head/sys/dev/oce/oce_mbox.c

svn commit: r278701 - stable/10/sys/arm/xilinx

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 20:21:13 2015 New Revision: 278701 URL: https://svnweb.freebsd.org/changeset/base/278701 Log: MFC r277265: Enable the snoop control unit during MP startup Modified: stable/10/sys/arm/xilinx/zy7_mp.c Directory Properties: stable/10/ (props changed) Modified:

Re: svn commit: r278472 - in head/sys: netinet netinet6

2015-02-13 Thread Randall Stewart via svn-src-all
Gleb: Ok here is the diff of the arp timer function that this changed made (238990): arptimer(void *arg) { + struct llentry *lle = (struct llentry *)arg; struct ifnet *ifp; - struct llentry *lle; - int pkts_dropped; + size_t

svn commit: r278728 - head/usr.sbin/freebsd-update

2015-02-13 Thread Thomas Quinot
Author: thomas Date: Fri Feb 13 22:55:25 2015 New Revision: 278728 URL: https://svnweb.freebsd.org/changeset/base/278728 Log: (backup_kernel_finddir, backup_kernel, install_files): Add missing references to $BASEDIR, in order to allow correct operation when updating a system mounted at

svn commit: r278732 - stable/10/sys/arm/freescale/imx

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 23:34:40 2015 New Revision: 278732 URL: https://svnweb.freebsd.org/changeset/base/278732 Log: MFC r277555, r277568: Enable all sd device clocks on imx6. Add imx5/6 pinmux driver support for encoded input register configs. Modified:

svn commit: r278694 - in stable/10: sys/kern tools/sched

2015-02-13 Thread Sean Bruno
Author: sbruno Date: Fri Feb 13 19:06:22 2015 New Revision: 278694 URL: https://svnweb.freebsd.org/changeset/base/278694 Log: MFC 272315 272757 274091 274902 for real this time r272315 Explicitly return None for negative event indices. Prior to this, eventat(-1) would return the

svn commit: r278698 - stable/10/sys/arm/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 20:05:37 2015 New Revision: 278698 URL: https://svnweb.freebsd.org/changeset/base/278698 Log: MFC r263245, r269233, r267101, r275961: Config style cleanups. Some of these are effectively record-only merges, because the actual merge happened during conflict

svn commit: r278705 - stable/10/share/mk

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 20:49:49 2015 New Revision: 278705 URL: https://svnweb.freebsd.org/changeset/base/278705 Log: MFC r277355: For armv6 builds, add -mfloat-abi=softfp. Modified: stable/10/share/mk/bsd.cpu.mk Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278704 - head/etc/rc.d

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 20:49:43 2015 New Revision: 278704 URL: https://svnweb.freebsd.org/changeset/base/278704 Log: Unbreak rcorder when MK_UNBOUND == no by moving local_unbound from REQUIRE: in NETWORKING to BEFORE: in the script MFC after: 2 weeks Modified:

svn commit: r278731 - stable/10/sys/arm/arm

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 23:32:03 2015 New Revision: 278731 URL: https://svnweb.freebsd.org/changeset/base/278731 Log: MFC r277523: Add last_fault_code when DEBUG is defined. Modified: stable/10/sys/arm/arm/trap-v6.c Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278733 - head/lib/libiconv

2015-02-13 Thread Bryan Drewery
Author: bdrewery Date: Fri Feb 13 23:35:58 2015 New Revision: 278733 URL: https://svnweb.freebsd.org/changeset/base/278733 Log: Remove disconnected (and broken) directory libiconv. It was added in the initial citrus import in r219019 but never used as iconv is just built with libc. A

svn commit: r278729 - head/sys/sys

2015-02-13 Thread Simon J. Gerraty
Author: sjg Date: Fri Feb 13 23:19:35 2015 New Revision: 278729 URL: https://svnweb.freebsd.org/changeset/base/278729 Log: sbspace: size of bleft, mleft must match sockbuf fields to avoid overflow on amd64 Submitted by: anshu...@juniper.net Obtained from:Juniper Networks

svn commit: r278730 - in stable/10/sys/arm: arm include

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 23:30:48 2015 New Revision: 278730 URL: https://svnweb.freebsd.org/changeset/base/278730 Log: MFC r277532, r277533: Add Maxmem global for arm. Modified: stable/10/sys/arm/arm/physmem.c stable/10/sys/arm/include/md_var.h Directory Properties: stable/10/

Re: svn commit: r278472 - in head/sys: netinet netinet6

2015-02-13 Thread Gleb Smirnoff
Randall, thanks a lot for investigating that. On Fri, Feb 13, 2015 at 05:27:40PM -0500, Randall Stewart wrote: R Gleb: R R Ok here is the diff of the arp timer function that this changed made (238990): R R arptimer(void *arg) R { R + struct llentry *lle

svn commit: r278735 - stable/10/sys/arm/arm

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 23:37:56 2015 New Revision: 278735 URL: https://svnweb.freebsd.org/changeset/base/278735 Log: MFC r278031: Remove a stale comment. Modified: stable/10/sys/arm/arm/busdma_machdep-v6.c Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278734 - stable/10/sys/dev/fdt

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 23:37:11 2015 New Revision: 278734 URL: https://svnweb.freebsd.org/changeset/base/278734 Log: MFC r277655, r277989: Reimplement fdt_clock_register_provider() correctly. Modified: stable/10/sys/dev/fdt/fdt_clock.c Directory Properties: stable/10/ (props

Re: svn commit: r278623 - head/sys/kern

2015-02-13 Thread hiren panchasara
On 02/13/15 at 08:11P, Peter Holm wrote: On Fri, Feb 13, 2015 at 10:29:01AM -0800, hiren panchasara wrote: On 02/12/15 at 01:31P, Randall Stewart wrote: Author: rrs Date: Thu Feb 12 13:31:08 2015 New Revision: 278623 URL: https://svnweb.freebsd.org/changeset/base/278623 Log:

svn commit: r278727 - in stable/10/sys: arm/allwinner arm/allwinner/a20 arm/arm arm/at91 arm/broadcom/bcm2835 arm/cavium/cns11xx arm/freescale/imx arm/freescale/vybrid arm/include arm/lpc arm/mv ar...

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 22:32:02 2015 New Revision: 278727 URL: https://svnweb.freebsd.org/changeset/base/278727 Log: MFC r277454, r277460, r277465, r277466, r277467, r277469, r277470, r277471, r277472, r277473, r277474, r277475, r277476, r277477, r277478, r277479, r277480,

svn commit: r278710 - in stable/10: libexec share/mk tools/build/mk tools/build/options usr.bin

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:19:54 2015 New Revision: 278710 URL: https://svnweb.freebsd.org/changeset/base/278710 Log: MFC r277676: r277676: Add MK_TALK knob for building the talk and talkd Sponsored by: EMC / Isilon Storage Division Added:

svn commit: r278709 - in stable: 10/contrib/llvm/lib/Target/ARM 10/contrib/llvm/patches 9/contrib/llvm/lib/Target/ARM 9/contrib/llvm/patches

2015-02-13 Thread Dimitry Andric
Author: dim Date: Fri Feb 13 21:19:02 2015 New Revision: 278709 URL: https://svnweb.freebsd.org/changeset/base/278709 Log: MFC r271025, r271029, r271030 (by sbruno): MFV: Only emit movw on ARMv6T2 Building for the FreeBSD default target ARMv6 was emitting movw ASM on certain test

Re: svn commit: r278472 - in head/sys: netinet netinet6

2015-02-13 Thread Gleb Smirnoff
On Mon, Feb 09, 2015 at 03:11:21PM -0500, John Baldwin wrote: J On Monday, February 09, 2015 07:28:12 PM Randall Stewart wrote: J Author: rrs J Date: Mon Feb 9 19:28:11 2015 J New Revision: 278472 J URL: https://svnweb.freebsd.org/changeset/base/278472 J J Log: JThis fixes a bug in the

svn commit: r278715 - stable/10/sys/conf

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 21:26:45 2015 New Revision: 278715 URL: https://svnweb.freebsd.org/changeset/base/278715 Log: MFC r272605: Use -mfpu=none when building arm kernels. Modified: stable/10/sys/conf/Makefile.arm Directory Properties: stable/10/ (props changed) Modified:

svn commit: r278720 - stable/9/share/man/man5

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:44:43 2015 New Revision: 278720 URL: https://svnweb.freebsd.org/changeset/base/278720 Log: Regen src.conf(5) Modified: stable/9/share/man/man5/src.conf.5 Modified: stable/9/share/man/man5/src.conf.5

svn commit: r278722 - in stable/10/sys/arm: allwinner allwinner/a20 freescale/imx rockchip

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 22:01:14 2015 New Revision: 278722 URL: https://svnweb.freebsd.org/changeset/base/278722 Log: MFC r257740, r257739: Switch to using common armv6 bus_space tag. Deleted: stable/10/sys/arm/allwinner/bus_space.c stable/10/sys/arm/freescale/imx/bus_space.c

svn commit: r278726 - in stable/10/sys: arm/conf arm/s3c2xx0 arm/samsung/s3c2xx0 dev/usb/controller

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 22:08:19 2015 New Revision: 278726 URL: https://svnweb.freebsd.org/changeset/base/278726 Log: MFC r272103: Move s3c2xx0 into the samsung directory. Added: stable/10/sys/arm/samsung/s3c2xx0/ - copied from r272103, head/sys/arm/samsung/s3c2xx0/ Deleted:

svn commit: r278709 - in stable: 10/contrib/llvm/lib/Target/ARM 10/contrib/llvm/patches 9/contrib/llvm/lib/Target/ARM 9/contrib/llvm/patches

2015-02-13 Thread Dimitry Andric
Author: dim Date: Fri Feb 13 21:19:02 2015 New Revision: 278709 URL: https://svnweb.freebsd.org/changeset/base/278709 Log: MFC r271025, r271029, r271030 (by sbruno): MFV: Only emit movw on ARMv6T2 Building for the FreeBSD default target ARMv6 was emitting movw ASM on certain test

svn commit: r278713 - in stable/10: share/mk tools/build/mk tools/build/options usr.sbin

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:24:32 2015 New Revision: 278713 URL: https://svnweb.freebsd.org/changeset/base/278713 Log: MFC r277677: r277677: Add MK_BSDINSTALL knob for building and installing bsdinstall Sponsored by: EMC / Isilon Storage Division Added:

svn commit: r278716 - in stable: 10/contrib/llvm/patches 9/contrib/llvm/patches

2015-02-13 Thread Dimitry Andric
Author: dim Date: Fri Feb 13 21:31:43 2015 New Revision: 278716 URL: https://svnweb.freebsd.org/changeset/base/278716 Log: MFC r271931: Add a few missing llvm/clang patches, update the other ones to be able to apply with the same patch options onto a fresh upstream llvm/clang 3.4.1

svn commit: r278716 - in stable: 10/contrib/llvm/patches 9/contrib/llvm/patches

2015-02-13 Thread Dimitry Andric
Author: dim Date: Fri Feb 13 21:31:43 2015 New Revision: 278716 URL: https://svnweb.freebsd.org/changeset/base/278716 Log: MFC r271931: Add a few missing llvm/clang patches, update the other ones to be able to apply with the same patch options onto a fresh upstream llvm/clang 3.4.1

svn commit: r278717 - in stable/10: etc/rc.d sbin share/man/man4 share/mk sys/modules/geom tools/build/mk tools/build/options

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:32:05 2015 New Revision: 278717 URL: https://svnweb.freebsd.org/changeset/base/278717 Log: MFC r277678: r277678: Add MK_CCD knob for building and installing ccd(4), ccdconfig, etc Sponsored by: EMC / Isilon Storage Division Added:

svn commit: r278721 - stable/10/share/man/man5

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:46:22 2015 New Revision: 278721 URL: https://svnweb.freebsd.org/changeset/base/278721 Log: Regen src.conf(5) Modified: stable/10/share/man/man5/src.conf.5 Modified: stable/10/share/man/man5/src.conf.5

svn commit: r278724 - in stable/10: contrib/libc++ contrib/libc++/include contrib/libc++/include/experimental contrib/libc++/include/ext contrib/libc++/src contrib/libcxxrt lib/libc++ lib/libcxxrt

2015-02-13 Thread Dimitry Andric
Author: dim Date: Fri Feb 13 22:05:54 2015 New Revision: 278724 URL: https://svnweb.freebsd.org/changeset/base/278724 Log: Synchronize the default C++ stack in stable/10 with head, by merging almost all recent changes to libc++ and libcxxrt. MFC r256642: Since C++ typeinfo objects

svn commit: r278706 - head/etc/rc.d

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 20:52:23 2015 New Revision: 278706 URL: https://svnweb.freebsd.org/changeset/base/278706 Log: Unbreak rcorder when MK_UTX == no by moving utx from REQUIRE: in LOGIN to BEFORE: in utx MFC after: 1 week Modified: head/etc/rc.d/LOGIN head/etc/rc.d/utx

svn commit: r278712 - in stable/9: libexec share/mk tools/build/mk tools/build/options usr.bin

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:21:51 2015 New Revision: 278712 URL: https://svnweb.freebsd.org/changeset/base/278712 Log: MFstable/10 r278710: r278710: MFC r277676: r277676: Add MK_TALK knob for building the talk and talkd Sponsored by: EMC / Isilon

svn commit: r278723 - stable/9/share/man/man4

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 22:05:36 2015 New Revision: 278723 URL: https://svnweb.freebsd.org/changeset/base/278723 Log: Unbreak the build by .include'ing bsd.own.mk Pointyhat to: me Modified: stable/9/share/man/man4/Makefile Modified: stable/9/share/man/man4/Makefile

svn commit: r278714 - in stable/9: share/mk tools/build/mk tools/build/options usr.sbin

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:25:56 2015 New Revision: 278714 URL: https://svnweb.freebsd.org/changeset/base/278714 Log: MFC r278713: r278713: MFC r277677: r277677: Add MK_BSDINSTALL knob for building and installing bsdinstall Sponsored by: EMC / Isilon

svn commit: r278718 - in stable/9: etc/rc.d sbin share/man/man4 share/mk sys/modules/geom tools/build/mk tools/build/options

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:36:16 2015 New Revision: 278718 URL: https://svnweb.freebsd.org/changeset/base/278718 Log: MFC r278717: r278717: MFC r277678: r277678: Add MK_CCD knob for building and installing ccd(4), ccdconfig, etc Sponsored by: EMC /

svn commit: r278719 - in stable/9: etc/rc.d sbin share/examples share/mk tools/build/mk tools/build/options

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Fri Feb 13 21:41:23 2015 New Revision: 278719 URL: https://svnweb.freebsd.org/changeset/base/278719 Log: MFstable/10 r278556: r278556: MFC r277725: r277725: Add MK_HAST knob for building and installing hastd(8), et al Sponsored by: EMC /

svn commit: r278725 - in stable/9: contrib/libc++ contrib/libc++/include contrib/libc++/include/experimental contrib/libc++/include/ext contrib/libc++/src contrib/libcxxrt etc/mtree lib/libc++ lib/...

2015-02-13 Thread Dimitry Andric
Author: dim Date: Fri Feb 13 22:07:45 2015 New Revision: 278725 URL: https://svnweb.freebsd.org/changeset/base/278725 Log: Synchronize the (non-default) libc++/libcxxrt C++ stack in stable/9 with head, by merging almost all recent changes to libc++ and libcxxrt. MFC r255206 (by

Re: svn commit: r278472 - in head/sys: netinet netinet6

2015-02-13 Thread Randall Stewart via svn-src-all
On Feb 13, 2015, at 4:21 PM, Gleb Smirnoff gleb...@freebsd.org wrote: On Mon, Feb 09, 2015 at 03:11:21PM -0500, John Baldwin wrote: J On Monday, February 09, 2015 07:28:12 PM Randall Stewart wrote: J Author: rrs J Date: Mon Feb 9 19:28:11 2015 J New Revision: 278472 J URL:

Phabricator + 'Reviewed by' [was Re: svn commit: r278472 - in head/sys: netinet netinet6]

2015-02-13 Thread Bryan Drewery
On 2/9/2015 3:45 PM, Bjoern A. Zeeb wrote: Commented upon by hiren and sbruno See Phabricator D1777 for more details. Commented upon by hiren and sbruno Reviewed by:adrian, jhb and bz I have not reviewed this; as a matter of fact you are aware that I still wanted to do that.

svn commit: r278738 - head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/io

2015-02-13 Thread Mark Johnston
Author: markj Date: Sat Feb 14 00:03:43 2015 New Revision: 278738 URL: https://svnweb.freebsd.org/changeset/base/278738 Log: Tweak the fds test program so that it actually compiles. Also use 0 instead of -1 for the bogus ioctl command so that dmesg doesn't get spammed with sign extension

Re: svn commit: r278739 - head/lib/libc/regex

2015-02-13 Thread Bryan Drewery
On 2/13/2015 6:37 PM, Bryan Drewery wrote: On 2/13/2015 6:23 PM, Xin LI wrote: Author: delphij Date: Sat Feb 14 00:23:53 2015 New Revision: 278739 URL: https://svnweb.freebsd.org/changeset/base/278739 Log: Disallow pattern spaces which would cause intermediate calculations to overflow

Re: svn commit: r278739 - head/lib/libc/regex

2015-02-13 Thread Bryan Drewery
On 2/13/2015 6:23 PM, Xin LI wrote: Author: delphij Date: Sat Feb 14 00:23:53 2015 New Revision: 278739 URL: https://svnweb.freebsd.org/changeset/base/278739 Log: Disallow pattern spaces which would cause intermediate calculations to overflow size_t. Obtained from:

Re: svn commit: r278739 - head/lib/libc/regex

2015-02-13 Thread Xin Li
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 02/13/15 16:37, Bryan Drewery wrote: On 2/13/2015 6:23 PM, Xin LI wrote: Author: delphij Date: Sat Feb 14 00:23:53 2015 New Revision: 278739 URL: https://svnweb.freebsd.org/changeset/base/278739 Log: Disallow pattern spaces which would

svn commit: r278736 - stable/10/sys/boot/fdt

2015-02-13 Thread Ian Lepore
Author: ian Date: Fri Feb 13 23:43:59 2015 New Revision: 278736 URL: https://svnweb.freebsd.org/changeset/base/278736 Log: MFC r278032: Do not skip setting the memory 'reg' property if the fdt data already contains one. Modified: stable/10/sys/boot/fdt/fdt_loader_cmd.c Directory

svn commit: r278737 - head/usr.sbin/flowctl

2015-02-13 Thread Gleb Smirnoff
Author: glebius Date: Fri Feb 13 23:57:20 2015 New Revision: 278737 URL: https://svnweb.freebsd.org/changeset/base/278737 Log: Use less ugly code to allocate buffer of SORCVBUF_SIZE. Modified: head/usr.sbin/flowctl/flowctl.c Modified: head/usr.sbin/flowctl/flowctl.c

Re: svn commit: r278640 - head/sys/netgraph

2015-02-13 Thread Gleb Smirnoff
Hi! On Thu, Feb 12, 2015 at 10:20:34PM +, Gleb Smirnoff wrote: T Author: glebius T Date: Thu Feb 12 22:20:34 2015 T New Revision: 278640 T URL: https://svnweb.freebsd.org/changeset/base/278640 T T Log: T Revise default limit for maximum of netgraph data items. T With modern internet

svn commit: r278739 - head/lib/libc/regex

2015-02-13 Thread Xin LI
Author: delphij Date: Sat Feb 14 00:23:53 2015 New Revision: 278739 URL: https://svnweb.freebsd.org/changeset/base/278739 Log: Disallow pattern spaces which would cause intermediate calculations to overflow size_t. Obtained from:DragonFly (2841837793bd095a82f477e9c370cfe6cfb3862c

svn commit: r278740 - stable/10/usr.bin/svn/svn

2015-02-13 Thread Glen Barber
Author: gjb Date: Sat Feb 14 01:33:11 2015 New Revision: 278740 URL: https://svnweb.freebsd.org/changeset/base/278740 Log: MFC r278603, r278607: r278603: Ensure ORGANIZATION_NAME is quoted when ORGANIZATION could contain strings of two or more words. r278607: Reduce

svn commit: r278741 - head/sys/contrib/dev/ath/ath_hal/ar9300

2015-02-13 Thread Adrian Chadd
Author: adrian Date: Sat Feb 14 04:28:51 2015 New Revision: 278741 URL: https://svnweb.freebsd.org/changeset/base/278741 Log: Update the AR9300 HAL to the latest public available HAL from QCA. I've been sitting on this for a year or so now; I've finally tested it on enough devices to be

Re: svn commit: r278321 - head/sys/dev/ipmi

2015-02-13 Thread Will Andrews
On Fri, Feb 06, 2015 at 12:00:02PM -0500, John Baldwin wrote: I think we should further change this to only allow the watchdog to be used with KCS and SMIC so that watchdog requests never sleep. I think that we could then revert r272366 as to my knowledge this was the only watchdog driver

svn commit: r278742 - head/bin/pkill/tests

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Sat Feb 14 06:19:24 2015 New Revision: 278742 URL: https://svnweb.freebsd.org/changeset/base/278742 Log: Simplify jail_name_to_jid and try to be more fault tolerant when scanning for the jail ID (poll up to 10 times for the jail IDs to become available) If the scan

svn commit: r278744 - stable/10/sys/dev/cxgb

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Sat Feb 14 06:58:32 2015 New Revision: 278744 URL: https://svnweb.freebsd.org/changeset/base/278744 Log: MFC r278364: r278364: Remove kdb_backtrace extern; get the definition for kdb_backtrace from sys/kdb.h instead Fix whitespace in WARN_ON macro

svn commit: r278743 - stable/9/sys/dev/cxgb

2015-02-13 Thread Garrett Cooper
Author: ngie Date: Sat Feb 14 06:58:27 2015 New Revision: 278743 URL: https://svnweb.freebsd.org/changeset/base/278743 Log: MFC r278364: r278364: Remove kdb_backtrace extern; get the definition for kdb_backtrace from sys/kdb.h instead Fix whitespace in WARN_ON macro