svn commit: r240482 - head/sys/dev/usb/controller

2012-09-14 Thread Hans Petter Selasky
Author: hselasky Date: Fri Sep 14 07:52:57 2012 New Revision: 240482 URL: http://svn.freebsd.org/changeset/base/240482 Log: DWC OTG improvements. Implement full support for SPLIT transactions, in other words FULL/LOW speed devices through HIGH speed HUBs. Improve support for suspend and

Re: svn commit: r240427 - head/sys/dev/virtio

2012-09-14 Thread Konstantin Belousov
On Fri, Sep 14, 2012 at 12:47:52AM -0500, Bryan Venteicher wrote: Hi - Original Message - From: John Baldwin j...@freebsd.org To: Bryan Venteicher bry...@daemoninthecloset.org Cc: svn-src-head@freebsd.org, svn-src-...@freebsd.org, src-committ...@freebsd.org, Peter Grehan

svn commit: r240483 - head/sys/arm/conf

2012-09-14 Thread Hans Petter Selasky
Author: hselasky Date: Fri Sep 14 08:11:59 2012 New Revision: 240483 URL: http://svn.freebsd.org/changeset/base/240483 Log: Add basic USB support to Raspberry PI target. Modified: head/sys/arm/conf/RPI-B Modified: head/sys/arm/conf/RPI-B

svn commit: r240484 - head/sys/dev/fdt

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 09:33:35 2012 New Revision: 240484 URL: http://svn.freebsd.org/changeset/base/240484 Log: Set busaddr and bussize to 0 when fdt_get_range() fails. Obtained from:Semihalf Modified: head/sys/dev/fdt/fdt_common.c Modified:

svn commit: r240485 - head/sys/dev/fdt

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 09:36:35 2012 New Revision: 240485 URL: http://svn.freebsd.org/changeset/base/240485 Log: Add fdt_get_unit() function. Obtained from:Semihalf Modified: head/sys/dev/fdt/fdt_common.c head/sys/dev/fdt/fdt_common.h Modified:

svn commit: r240486 - in head/sys/arm: arm include

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 09:38:54 2012 New Revision: 240486 URL: http://svn.freebsd.org/changeset/base/240486 Log: Support identification of new PJ4B cores. Obtained from:Semihalf Modified: head/sys/arm/arm/cpufunc.c head/sys/arm/arm/identcpu.c

svn commit: r240487 - head/sys/dev/fdt

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 09:45:13 2012 New Revision: 240487 URL: http://svn.freebsd.org/changeset/base/240487 Log: If virtual addresses are not set use one to one mapping. Do not map memory and IO space at address 0. Obtained from: Semihalf Modified: head/sys/dev/fdt/fdt_pci.c

svn commit: r240488 - in head/sys: arm/conf arm/include arm/mv arm/mv/armadaxp boot/fdt/dts

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 09:55:19 2012 New Revision: 240488 URL: http://svn.freebsd.org/changeset/base/240488 Log: Add support for Armada XP A0. - Add functions to calculate clocks instead using hardcoded values - Update reset and timers functions - Update number of interrupts -

svn commit: r240489 - head/sys/arm/mv

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 09:57:41 2012 New Revision: 240489 URL: http://svn.freebsd.org/changeset/base/240489 Log: pci: Implement new memory and io space allocator for PCI. Cleanup code and move initializing bridge into separate function. Add checking of PCI mode (RC or endpoint).

svn commit: r240490 - in head/sys/arm: conf mv/armadaxp

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 09:59:27 2012 New Revision: 240490 URL: http://svn.freebsd.org/changeset/base/240490 Log: Enable PCI for Armada XP Obtained from:Semihalf Modified: head/sys/arm/conf/ARMADAXP head/sys/arm/mv/armadaxp/armadaxp.c Modified:

svn commit: r240491 - head/sys/arm/mv

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 10:01:52 2012 New Revision: 240491 URL: http://svn.freebsd.org/changeset/base/240491 Log: Remove unused structure fields Obtained from:Semihalf Modified: head/sys/arm/mv/mpic.c Modified: head/sys/arm/mv/mpic.c

svn commit: r240492 - in head/sys: arm/include arm/mv boot/fdt/dts

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 10:05:01 2012 New Revision: 240492 URL: http://svn.freebsd.org/changeset/base/240492 Log: Add support for MSI in interrupt controlller. MSI are implemented via software interrupt. PCIe cards will write into software interrupt register which will cause

svn commit: r240493 - head/sys/arm/mv

2012-09-14 Thread Grzegorz Bernacki
Author: gber Date: Fri Sep 14 10:06:56 2012 New Revision: 240493 URL: http://svn.freebsd.org/changeset/base/240493 Log: Implement MSI support. MSI are implemented via Inbound Shared Doorbell 1 interrupts. Interrupts are triggered by writing to Software Triggered Interrupt registeri (PCIe

Re: svn commit: r240475 - in head/sys: dev/hwpmc kern

2012-09-14 Thread Attilio Rao
On 9/14/12, Konstantin Belousov kostik...@gmail.com wrote: On Thu, Sep 13, 2012 at 10:26:22PM +, Attilio Rao wrote: Author: attilio Date: Thu Sep 13 22:26:22 2012 New Revision: 240475 URL: http://svn.freebsd.org/changeset/base/240475 Log: Remove all the checks on curthread != NULL

svn commit: r240495 - head/lib/libfetch

2012-09-14 Thread Eitan Adler
Author: eadler Date: Fri Sep 14 12:15:13 2012 New Revision: 240495 URL: http://svn.freebsd.org/changeset/base/240495 Log: Adding missing return statements during error conditions. PR: kern/171187 Submitted by: Mark Johnston mark...@gmail.com Reviewed by: des Approved by:

Re: svn commit: r240427 - head/sys/dev/virtio

2012-09-14 Thread John Baldwin
On Friday, September 14, 2012 3:55:20 am Konstantin Belousov wrote: On Fri, Sep 14, 2012 at 12:47:52AM -0500, Bryan Venteicher wrote: I also found myself wanting an atomic_load_rel_*() type function. That would be odd I think. _rel barriers only affect stores, so there would be no

Re: svn commit: r240475 - in head/sys: dev/hwpmc kern

2012-09-14 Thread John Baldwin
On Friday, September 14, 2012 12:20:31 am Konstantin Belousov wrote: On Thu, Sep 13, 2012 at 10:26:22PM +, Attilio Rao wrote: Author: attilio Date: Thu Sep 13 22:26:22 2012 New Revision: 240475 URL: http://svn.freebsd.org/changeset/base/240475 Log: Remove all the checks on

svn commit: r240496 - in head: lib/libfetch usr.bin/fetch

2012-09-14 Thread Dag-Erling Sm�rgrav
Author: des Date: Fri Sep 14 13:00:43 2012 New Revision: 240496 URL: http://svn.freebsd.org/changeset/base/240496 Log: Use libmd if and only if OpenSSL is not available. PR: bin/171402 MFC after:3 days Modified: head/lib/libfetch/Makefile head/lib/libfetch/http.c

svn commit: r240497 - head/sbin/pfctl

2012-09-14 Thread Joel Dahl
Author: joel (doc committer) Date: Fri Sep 14 13:14:48 2012 New Revision: 240497 URL: http://svn.freebsd.org/changeset/base/240497 Log: Minor mdoc fix. Modified: head/sbin/pfctl/pfctl.8 Modified: head/sbin/pfctl/pfctl.8

Re: svn commit: r240475 - in head/sys: dev/hwpmc kern

2012-09-14 Thread Konstantin Belousov
On Fri, Sep 14, 2012 at 01:03:13PM +0100, Attilio Rao wrote: On 9/14/12, Konstantin Belousov kostik...@gmail.com wrote: On Thu, Sep 13, 2012 at 10:26:22PM +, Attilio Rao wrote: Author: attilio Date: Thu Sep 13 22:26:22 2012 New Revision: 240475 URL:

Re: svn commit: r240475 - in head/sys: dev/hwpmc kern

2012-09-14 Thread Attilio Rao
On Fri, Sep 14, 2012 at 2:38 PM, Konstantin Belousov kostik...@gmail.com wrote: On Fri, Sep 14, 2012 at 01:03:13PM +0100, Attilio Rao wrote: On 9/14/12, Konstantin Belousov kostik...@gmail.com wrote: On Thu, Sep 13, 2012 at 10:26:22PM +, Attilio Rao wrote: Author: attilio Date: Thu Sep

Re: svn commit: r240484 - head/sys/dev/fdt

2012-09-14 Thread Aleksandr Rybalko
On Fri, 14 Sep 2012 09:33:35 + (UTC) Grzegorz Bernacki g...@freebsd.org wrote: Author: gber Date: Fri Sep 14 09:33:35 2012 New Revision: 240484 URL: http://svn.freebsd.org/changeset/base/240484 Log: Set busaddr and bussize to 0 when fdt_get_range() fails. Why bussize is 0?

Re: svn commit: r240427 - head/sys/dev/virtio

2012-09-14 Thread Bryan Venteicher
Hi, - Original Message - From: John Baldwin j...@freebsd.org To: Konstantin Belousov kostik...@gmail.com Cc: Bryan Venteicher bry...@daemoninthecloset.org, svn-src-head@freebsd.org, svn-src-...@freebsd.org, src-committ...@freebsd.org, Peter Grehan gre...@freebsd.org Sent: Friday,

Re: svn commit: r240484 - head/sys/dev/fdt

2012-09-14 Thread Grzegorz Bernacki
On 09/14/12 16:16, Aleksandr Rybalko wrote: On Fri, 14 Sep 2012 09:33:35 + (UTC) Grzegorz Bernackig...@freebsd.org wrote: Author: gber Date: Fri Sep 14 09:33:35 2012 New Revision: 240484 URL: http://svn.freebsd.org/changeset/base/240484 Log: Set busaddr and bussize to 0 when

Re: svn commit: r240496 - in head: lib/libfetch usr.bin/fetch

2012-09-14 Thread Baptiste Daroussin
On Fri, Sep 14, 2012 at 01:00:43PM +, Dag-Erling Sm�rgrav wrote: Author: des Date: Fri Sep 14 13:00:43 2012 New Revision: 240496 URL: http://svn.freebsd.org/changeset/base/240496 Log: Use libmd if and only if OpenSSL is not available. PR: bin/171402 MFC after: 3

svn commit: r240505 - head/bin/sh

2012-09-14 Thread Jilles Tjoelker
Author: jilles Date: Fri Sep 14 15:22:15 2012 New Revision: 240505 URL: http://svn.freebsd.org/changeset/base/240505 Log: sh: Reduce code duplication: use setinputfile instead of open/setinputfd combination. MFC after:2 weeks Modified: head/bin/sh/main.c Modified:

svn commit: r240506 - in head: lib/libpam/modules/pam_lastlog libexec/comsat libexec/ftpd share/man/man3 share/man/man7 usr.bin/finger usr.bin/last usr.bin/ncplist usr.bin/talk usr.bin/users usr.bi...

2012-09-14 Thread Eitan Adler
Author: eadler Date: Fri Sep 14 17:50:42 2012 New Revision: 240506 URL: http://svn.freebsd.org/changeset/base/240506 Log: Bump date missed in r202756 PR: docs/171624 Submitted by: bdrewery Approved by: gabor MFC after:3 days Modified:

svn commit: r240507 - head/sys/netinet

2012-09-14 Thread Michael Tuexen
Author: tuexen Date: Fri Sep 14 18:32:20 2012 New Revision: 240507 URL: http://svn.freebsd.org/changeset/base/240507 Log: Small cleanups. No functional change. MFC after:10 days Modified: head/sys/netinet/sctputil.c Modified: head/sys/netinet/sctputil.c

svn commit: r240508 - in head/release/doc/en_US.ISO8859-1: errata hardware readme relnotes

2012-09-14 Thread Gabor Kovesdan
Author: gabor Date: Fri Sep 14 18:33:12 2012 New Revision: 240508 URL: http://svn.freebsd.org/changeset/base/240508 Log: - Make the release notes build with the XMLified doc tree Modified: head/release/doc/en_US.ISO8859-1/errata/article.sgml

Re: svn commit: r240496 - in head: lib/libfetch usr.bin/fetch

2012-09-14 Thread Dag-Erling Smørgrav
Baptiste Daroussin b...@freebsd.org writes: Do you plan to push it to 9.1, that will help having pkgng linked against libmd. That's not really up to me. I'll ask re@. DES -- Dag-Erling Smørgrav - d...@des.no ___ svn-src-head@freebsd.org mailing

svn commit: r240512 - head/release/doc/share/misc

2012-09-14 Thread Glen Barber
Author: gjb (doc,ports committer) Date: Fri Sep 14 19:52:33 2012 New Revision: 240512 URL: http://svn.freebsd.org/changeset/base/240512 Log: Fix man2hwnotes.pl script, which should fix the RELNOTES build. Modified: head/release/doc/share/misc/man2hwnotes.pl Modified:

svn commit: r240513 - head/sys/kern

2012-09-14 Thread Andriy Gapon
Author: avg Date: Fri Sep 14 19:55:28 2012 New Revision: 240513 URL: http://svn.freebsd.org/changeset/base/240513 Log: sched_ule: fix inverted condition in reporting of priority lending via ktr Reviewed by: kan MFC after:1 week Modified: head/sys/kern/sched_ule.c Modified:

svn commit: r240514 - head/sys/dev/isci/scil

2012-09-14 Thread Jim Harris
Author: jimharris Date: Fri Sep 14 20:05:38 2012 New Revision: 240514 URL: http://svn.freebsd.org/changeset/base/240514 Log: isci(4): Fix SCSI/ATA translation for SCSI_WRITE_BUFFER w/ mode==0x7 (download microcode with offsets, save, and activate). SATI translation layer was incorrectly

svn commit: r240515 - head/release/doc/share/misc

2012-09-14 Thread Glen Barber
Author: gjb (doc,ports committer) Date: Fri Sep 14 20:51:35 2012 New Revision: 240515 URL: http://svn.freebsd.org/changeset/base/240515 Log: Revert previous commit... Pointyhat to: gjb (myself) Modified: head/release/doc/share/misc/man2hwnotes.pl Modified:

svn commit: r240516 - in head/release/doc/de_DE.ISO8859-1: early-adopter errata hardware/alpha hardware/i386 hardware/ia64 hardware/pc98 hardware/sparc64 installation/alpha installation/common inst...

2012-09-14 Thread Gabor Kovesdan
Author: gabor Date: Fri Sep 14 21:12:41 2012 New Revision: 240516 URL: http://svn.freebsd.org/changeset/base/240516 Log: - Fix build of the German release notes with the XMLified doc tree Modified: head/release/doc/de_DE.ISO8859-1/early-adopter/article.sgml

svn commit: r240517 - in head/contrib/byacc: . package package/debian

2012-09-14 Thread Baptiste Daroussin
Author: bapt Date: Fri Sep 14 21:17:53 2012 New Revision: 240517 URL: http://svn.freebsd.org/changeset/base/240517 Log: update to version 20120526 Modified: head/contrib/byacc/CHANGES head/contrib/byacc/VERSION head/contrib/byacc/defs.h head/contrib/byacc/lr0.c

svn commit: r240518 - in head: lib/libc/stdio share/examples/diskless sys/arm/ti sys/dev/altera/jtag_uart sys/dev/buslogic sys/dev/e1000 sys/dev/isci/scil sys/dev/isp sys/dev/mps sys/kern sys/sparc...

2012-09-14 Thread Eitan Adler
Author: eadler Date: Fri Sep 14 21:28:56 2012 New Revision: 240518 URL: http://svn.freebsd.org/changeset/base/240518 Log: Correct double the the Approved by: cperciva MFC after:3 days Modified: head/lib/libc/stdio/scanf_l.3 head/share/examples/diskless/README.BOOTP

svn commit: r240519 - in head/release/doc/fr_FR.ISO8859-1: early-adopter errata hardware/alpha hardware/common hardware/i386 hardware/ia64 hardware/pc98 hardware/sparc64 installation/alpha installa...

2012-09-14 Thread Gabor Kovesdan
Author: gabor Date: Fri Sep 14 21:36:01 2012 New Revision: 240519 URL: http://svn.freebsd.org/changeset/base/240519 Log: - Fix build of French release notes with the XMLified doc tree Modified: head/release/doc/fr_FR.ISO8859-1/early-adopter/article.sgml

svn commit: r240521 - in head/sys: cam/scsi dev/isci/scil dev/xen/netback libkern net80211

2012-09-14 Thread Eitan Adler
Author: eadler Date: Fri Sep 14 22:00:03 2012 New Revision: 240521 URL: http://svn.freebsd.org/changeset/base/240521 Log: s/ is is / is /g s/ a a / a /g Approved by: cperciva MFC after:3 days Modified: head/sys/cam/scsi/scsi_enc.c

svn commit: r240520 - in head/sys: dev/isci/scil dev/vxge/include i386/include/xen netinet

2012-09-14 Thread Eitan Adler
Author: eadler Date: Fri Sep 14 21:59:55 2012 New Revision: 240520 URL: http://svn.freebsd.org/changeset/base/240520 Log: s/teh/the/g Approved by: cperciva MFC after:3 days Modified: head/sys/dev/isci/scil/scic_io_request.h head/sys/dev/vxge/include/vxgehal-ll.h

svn commit: r240522 - head/share/man/man3

2012-09-14 Thread Jilles Tjoelker
Author: jilles Date: Fri Sep 14 22:05:09 2012 New Revision: 240522 URL: http://svn.freebsd.org/changeset/base/240522 Log: siginfo(3): Document SI_USER and SI_KERNEL signal codes. MFC after:1 week Modified: head/share/man/man3/siginfo.3 Modified: head/share/man/man3/siginfo.3

svn commit: r240523 - head/share/man/man3

2012-09-14 Thread Jilles Tjoelker
Author: jilles Date: Fri Sep 14 22:10:01 2012 New Revision: 240523 URL: http://svn.freebsd.org/changeset/base/240523 Log: siginfo(3): Document SI_LWP signal code. Describe SI_LWP as being generated by pthread_kill() because thr_kill() is a private undocumented function. MFC after:

svn commit: r240524 - head/share/man/man3

2012-09-14 Thread Jilles Tjoelker
Author: jilles Date: Fri Sep 14 22:12:04 2012 New Revision: 240524 URL: http://svn.freebsd.org/changeset/base/240524 Log: siginfo(3): Document TRAP_DTRACE signal code. MFC after:1 week Modified: head/share/man/man3/siginfo.3 Modified: head/share/man/man3/siginfo.3

Re: svn commit: r238563 - head/gnu/usr.bin/groff/tmac

2012-09-14 Thread Jilles Tjoelker
On Wed, Aug 22, 2012 at 05:36:03PM -0700, Simon J. Gerraty wrote: On Thu, 23 Aug 2012 00:30:02 +0200, Jilles Tjoelker writes: I think the most important reason is to reduce special cases. The POSIX developers did not want to create a second subset of utilities that are not available via

svn commit: r240527 - head/bin/df

2012-09-14 Thread Eitan Adler
Author: eadler Date: Fri Sep 14 23:47:23 2012 New Revision: 240527 URL: http://svn.freebsd.org/changeset/base/240527 Log: Free memory before exiting in order to help tools understand that we're not leaking it. PR: bin/171634 Submitted by: Erik Cederstrand e...@cederstrand.dk

Re: svn commit: r238563 - head/gnu/usr.bin/groff/tmac

2012-09-14 Thread Simon J. Gerraty
On Sat, 15 Sep 2012 00:36:31 +0200, Jilles Tjoelker writes: POSIX make command lines are executed as if by the shell, and if the make implementation wants to optimize by not executing sh for every command line, the burden is on it to make it behave the same. IIRC the man page mentions the