svn commit: r253480 - head/sys/dev/bge

2013-07-20 Thread Pyun YongHyeon
Author: yongari Date: Sat Jul 20 07:09:50 2013 New Revision: 253480 URL: http://svnweb.freebsd.org/changeset/base/253480 Log: Setup the PCIE Fast Training Sequence (FTS) value to prevent transmit hangs for 57766 and non Ax versions of 57765. While here, correct definition of

svn commit: r253481 - head/sys/dev/mii

2013-07-20 Thread Pyun YongHyeon
Author: yongari Date: Sat Jul 20 07:24:01 2013 New Revision: 253481 URL: http://svnweb.freebsd.org/changeset/base/253481 Log: Recognize BCM5725C PHY. Modified: head/sys/dev/mii/brgphy.c head/sys/dev/mii/miidevs Modified: head/sys/dev/mii/brgphy.c

svn commit: r253482 - in head: contrib/ipfilter sys/contrib/ipfilter

2013-07-20 Thread Cy Schubert
Author: cy Date: Sat Jul 20 07:29:19 2013 New Revision: 253482 URL: http://svnweb.freebsd.org/changeset/base/253482 Log: As per the developers handbook (5.3.1 step 1), bootstrap svn:mergeinfo on the ipfilter directories in the main tree to the last commit made to the ipfilter trees in the

svn commit: r253483 - head/sys/dev/bge

2013-07-20 Thread Pyun YongHyeon
Author: yongari Date: Sat Jul 20 07:58:03 2013 New Revision: 253483 URL: http://svnweb.freebsd.org/changeset/base/253483 Log: Add support for upcoming BCM5725 (ASIC 5762) controller. This is a new 1Gb server controller chip that will be going into production soon. BCM5725 combines MAC

svn commit: r253489 - head/sys/arm/include

2013-07-20 Thread Andrew Turner
Author: andrew Date: Sat Jul 20 09:24:48 2013 New Revision: 253489 URL: http://svnweb.freebsd.org/changeset/base/253489 Log: Start adding support to build bits of our code using the Thumb-2 instruction set. Thumb-2 requires an if-then instruction to implement conditional codes. When

svn commit: r253493 - head/sys/netinet

2013-07-20 Thread Michael Tuexen
Author: tuexen Date: Sat Jul 20 13:14:59 2013 New Revision: 253493 URL: http://svnweb.freebsd.org/changeset/base/253493 Log: Allow the code to be compiled without warnings for any combination of INET, INET6 and SCTP_DEBUG defines. The issue was reported by Lally Singh. MFC after: 2

svn commit: r253494 - in head/sys: compat/freebsd32 kern sys

2013-07-20 Thread Konstantin Belousov
Author: kib Date: Sat Jul 20 13:39:41 2013 New Revision: 253494 URL: http://svnweb.freebsd.org/changeset/base/253494 Log: id_t is 64bit, provide the compat32 wrapper for clock_getcpuclockid2(2). Reported and tested by: Petr Salinger petr.salin...@seznam.cz PR: threads/180652

svn commit: r253495 - head/sys/compat/freebsd32

2013-07-20 Thread Konstantin Belousov
Author: kib Date: Sat Jul 20 13:40:03 2013 New Revision: 253495 URL: http://svnweb.freebsd.org/changeset/base/253495 Log: Regenerate Modified: head/sys/compat/freebsd32/freebsd32_proto.h head/sys/compat/freebsd32/freebsd32_syscall.h head/sys/compat/freebsd32/freebsd32_syscalls.c

svn commit: r253497 - head/sys/dev/drm2/i915

2013-07-20 Thread Konstantin Belousov
Author: kib Date: Sat Jul 20 13:52:40 2013 New Revision: 253497 URL: http://svnweb.freebsd.org/changeset/base/253497 Log: Use the right name for the vm_map_find(9) flag to specify shared mapping. The MAP_SHARED and MAP_INHERIT_SHARE values are identical. Noted by: alc MFC after:

svn commit: r253498 - head/sys/fs/fuse

2013-07-20 Thread Pedro F. Giffuni
Author: pfg Date: Sat Jul 20 14:50:35 2013 New Revision: 253498 URL: http://svnweb.freebsd.org/changeset/base/253498 Log: fuse: revert birthtime support. The creation time support breaks the data structures used in linux fuse. libfuse carries it's own header. Revert the changes for

svn commit: r253502 - head/sbin/route

2013-07-20 Thread Hiroki Sato
Author: hrs Date: Sat Jul 20 15:23:42 2013 New Revision: 253502 URL: http://svnweb.freebsd.org/changeset/base/253502 Log: Add cast to (void *) to the following cases to suppress warnings by -Wcast-align. These do not increase the alignment requirement: - rtm = (struct rt_msghdr *)(rtm +

svn commit: r253503 - head/sbin/route

2013-07-20 Thread Hiroki Sato
Author: hrs Date: Sat Jul 20 15:58:43 2013 New Revision: 253503 URL: http://svnweb.freebsd.org/changeset/base/253503 Log: Show default for the zero-filled address consistently when nflag == 0. Modified: head/sbin/route/route.c Modified: head/sbin/route/route.c

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

2013-07-20 Thread Jean-Sébastien Pédron
Hello Neel! With commit r252646, I have a vm_page_dirty: page is invalid! panic almost each time an X11 application or the X.Org server itself exit. Everything runs fine if I revert this commit. FreeBSD is built with the experimental radeonkms driver. As I haven't seen any other report of this

svn commit: r253504 - head/sbin/route

2013-07-20 Thread Hiroki Sato
Author: hrs Date: Sat Jul 20 16:46:51 2013 New Revision: 253504 URL: http://svnweb.freebsd.org/changeset/base/253504 Log: - Simplify getaddr() and print_getmsg() by using RTAX_* instead of RTA_* as the argument. - Reduce unnecessary loop in print_getmsg(). Modified:

svn commit: r253505 - head/etc

2013-07-20 Thread Hiroki Sato
Author: hrs Date: Sat Jul 20 16:58:17 2013 New Revision: 253505 URL: http://svnweb.freebsd.org/changeset/base/253505 Log: Fix address range specification with ifconfig(8) options such as: - inet 192.0.2.1-10 netmask 255.255.255.0 (inet range spec + ifconfig options) - inet6

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

2013-07-20 Thread Neel Natu
Hi Jean-Sebastien, On Sat, Jul 20, 2013 at 9:28 AM, Jean-Sébastien Pédron dumbb...@freebsd.org wrote: Hello Neel! With commit r252646, I have a vm_page_dirty: page is invalid! panic almost each time an X11 application or the X.Org server itself exit. Everything runs fine if I revert this

svn commit: r253506 - head/sys/fs/nfs

2013-07-20 Thread Rick Macklem
Author: rmacklem Date: Sat Jul 20 22:35:32 2013 New Revision: 253506 URL: http://svnweb.freebsd.org/changeset/base/253506 Log: The NFSv4 server incorrectly assumed that the high order words of the attribute bitmap argument would be non-zero. This caused an interoperability problem for a

svn commit: r253507 - head/sys/mips/atheros

2013-07-20 Thread Adrian Chadd
Author: adrian Date: Sun Jul 21 03:51:24 2013 New Revision: 253507 URL: http://svnweb.freebsd.org/changeset/base/253507 Log: Add two new CPU specific definitions - the watchdog clock frequency and the UART clock frequency. The AR933x and AR934x have separate PLL settings for these.

svn commit: r253508 - head/sys/mips/atheros

2013-07-20 Thread Adrian Chadd
Author: adrian Date: Sun Jul 21 03:52:52 2013 New Revision: 253508 URL: http://svnweb.freebsd.org/changeset/base/253508 Log: Initialise the watchdog and UART frequencies. For all pre-AR933x chips, the frequency is just the APB frequency. For the AR933x, the UART frequency is different

svn commit: r253509 - head/sys/mips/atheros

2013-07-20 Thread Adrian Chadd
Author: adrian Date: Sun Jul 21 03:54:39 2013 New Revision: 253509 URL: http://svnweb.freebsd.org/changeset/base/253509 Log: Use the UART frequency when programming the UART clock. This allows the 16550 support to work correctly on the upcoming AR934x support. Modified:

svn commit: r253510 - head/sys/mips/atheros

2013-07-20 Thread Adrian Chadd
Author: adrian Date: Sun Jul 21 03:55:18 2013 New Revision: 253510 URL: http://svnweb.freebsd.org/changeset/base/253510 Log: Teach the GPIO code about the AR934x GPIO register and pin counts. Modified: head/sys/mips/atheros/ar71xx_gpio.c Modified: head/sys/mips/atheros/ar71xx_gpio.c

svn commit: r253511 - head/sys/mips/atheros

2013-07-20 Thread Adrian Chadd
Author: adrian Date: Sun Jul 21 03:56:57 2013 New Revision: 253511 URL: http://svnweb.freebsd.org/changeset/base/253511 Log: Implement some initial AR934x support routines. This code reads the PLL configuration registers and correctly programs things so the UART and such can come up.

svn commit: r253512 - head/sys/mips/conf

2013-07-20 Thread Adrian Chadd
Author: adrian Date: Sun Jul 21 04:00:48 2013 New Revision: 253512 URL: http://svnweb.freebsd.org/changeset/base/253512 Log: Add some initial board support for the AR934x and the Qualcomm Atheros DB120 development board. The AR934x SoCs are a MIPS74k based system with increased RAM

svn commit: r253513 - head/release

2013-07-20 Thread Glen Barber
Author: gjb Date: Sun Jul 21 05:23:34 2013 New Revision: 253513 URL: http://svnweb.freebsd.org/changeset/base/253513 Log: Create memstick images with the '.img' filename extension. Requested by: many Approved by: kib (mentor) MFC after:3 days X-MFC-To: stable/9 only