Re: svn commit: r207933 - head/sys/cam/scsi

2010-05-12 Thread Ronald Klop
On Wed, 12 May 2010 00:22:01 +0200, Matt Jacob mja...@freebsd.org wrote: Author: mjacob Date: Tue May 11 22:22:01 2010 New Revision: 207933 URL: http://svn.freebsd.org/changeset/base/207933 Log: Deal sensibly with more than 26 sg devices. It isn't a complete solution. Sponsored by:

svn commit: r207956 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2010-05-12 Thread Martin Matuska
Author: mm Date: Wed May 12 09:51:57 2010 New Revision: 207956 URL: http://svn.freebsd.org/changeset/base/207956 Log: Fix possible hang when replaying large truncations. OpenSolaris onnv revision:7904:6a124a4ca9c5 Approved by: pjd, delphij (mentor) Obtained from:

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

2010-05-12 Thread Konstantin Belousov
Author: kib Date: Wed May 12 10:29:06 2010 New Revision: 207957 URL: http://svn.freebsd.org/changeset/base/207957 Log: Remove unneeded overrides of the segment registers in the inner trap frame upon segment register load fault. The doreti procedure does not load segment registers when

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

2010-05-12 Thread Konstantin Belousov
Author: kib Date: Wed May 12 10:29:35 2010 New Revision: 207958 URL: http://svn.freebsd.org/changeset/base/207958 Log: Route all returns from the interrupts and faults through the doreti_iret labeled iretq instruction. Suppose that multithreaded process executes two threads, currently

Re: svn commit: r207849 - in head: . lib/libarchive rescue/rescue usr.bin/ar usr.bin/cpio usr.bin/cpio/test usr.bin/tar usr.bin/tar/test

2010-05-12 Thread N.J. Mann
In message 4be9e69a.9020...@delphij.net, Xin LI (delp...@delphij.net) wrote: Please try this patch: http://people.freebsd.org/~delphij/for_review/patch-lzmabuild.diff I'm not quite satisfied with this patch though. [...] It fixed the build. If you need another patch testing just

Re: svn commit: r207849 - in head: . lib/libarchive rescue/rescue usr.bin/ar usr.bin/cpio usr.bin/cpio/test usr.bin/tar usr.bin/tar/test

2010-05-12 Thread Ruslan Ermilov
On Tue, May 11, 2010 at 04:22:02PM -0700, Xin LI wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, Please try this patch: http://people.freebsd.org/~delphij/for_review/patch-lzmabuild.diff I'm not quite satisfied with this patch though. The problem was: - ar, libarchive

svn commit: r207963 - head/sys/netinet

2010-05-12 Thread Randall Stewart
Author: rrs Date: Wed May 12 13:45:46 2010 New Revision: 207963 URL: http://svn.freebsd.org/changeset/base/207963 Log: This fixes PR-SCTP issues: - Slide the map at the proper place. - Mark the bits in the nr_array ONLY if there is no marking. - When generating a FWD-TSN we allow

Re: svn commit: r207933 - head/sys/cam/scsi

2010-05-12 Thread Scott Long
On May 12, 2010, at 8:29 AM, Matthew Jacob wrote: On 5/12/2010 7:23 AM, Scott Long wrote: On May 12, 2010, at 8:20 AM, Matthew Jacob wrote: Ow. No need to be rude :-). No, I didn't, why do you ask? Wow, did you copy this from windows? :-) Actually I'm impressed

svn commit: r207966 - head/sys/netinet

2010-05-12 Thread Michael Tuexen
Author: tuexen Date: Wed May 12 16:10:33 2010 New Revision: 207966 URL: http://svn.freebsd.org/changeset/base/207966 Log: Get rid of unused constants. MFC after: 3 days. Modified: head/sys/netinet/sctp_constants.h head/sys/netinet/sctp_indata.c Modified:

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

2010-05-12 Thread Pyun YongHyeon
Author: yongari Date: Wed May 12 16:59:58 2010 New Revision: 207971 URL: http://svn.freebsd.org/changeset/base/207971 Log: Document undocumented tunables and sysctl variables. While here use actual string to specify width as well as using Cm to set command argument. Reviewed by:

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

2010-05-12 Thread Christian Brueffer
Author: brueffer Date: Wed May 12 17:12:38 2010 New Revision: 207975 URL: http://svn.freebsd.org/changeset/base/207975 Log: IBM ServeRAID M5015 SAS/SATA works. PR: 144614 Submitted by: pluknet pluk...@gmail.com MFC after:1 week Modified: head/share/man/man4/mfi.4

svn commit: r207982 - head/release/doc/en_US.ISO8859-1/hardware

2010-05-12 Thread Christian Brueffer
Author: brueffer Date: Wed May 12 17:53:05 2010 New Revision: 207982 URL: http://svn.freebsd.org/changeset/base/207982 Log: Add et(4), sge(4) and mwl(4). Modified: head/release/doc/en_US.ISO8859-1/hardware/article.sgml Modified: head/release/doc/en_US.ISO8859-1/hardware/article.sgml

svn commit: r207983 - head/sys/netinet

2010-05-12 Thread Randall Stewart
Author: rrs Date: Wed May 12 18:00:15 2010 New Revision: 207983 URL: http://svn.freebsd.org/changeset/base/207983 Log: More PR-SCTP bugs: - Make sure that when you kick the streams you add correctly using a 16 bit unsigned. - Make sure when sending out you allow FWD-TSN to skip

Re: svn commit: r207933 - head/sys/cam/scsi

2010-05-12 Thread Dmitry Marakasov
* Matt Jacob (mja...@freebsd.org) wrote: - (void)make_dev_alias(softc-dev, sg%c, 'a' + periph-unit_number); + if (periph-unit_number 26) { + (void)make_dev_alias(softc-dev, sg%c, periph-unit_number + 'a'); + } else { + (void)make_dev_alias(softc-dev,

Re: svn commit: r207933 - head/sys/cam/scsi

2010-05-12 Thread Matthew Jacob
On 05/12/2010 11:12 AM, Dmitry Marakasov wrote: * Matt Jacob (mja...@freebsd.org) wrote: - (void)make_dev_alias(softc-dev, sg%c, 'a' + periph-unit_number); + if (periph-unit_number 26) { + (void)make_dev_alias(softc-dev, sg%c, periph-unit_number + 'a'); +

svn commit: r207985 - head/sys/netinet

2010-05-12 Thread Randall Stewart
Author: rrs Date: Wed May 12 18:33:25 2010 New Revision: 207985 URL: http://svn.freebsd.org/changeset/base/207985 Log: Fix an old long time bug in generating a fwd-tsn. This would appear when greater than the size of mbuf TSN's would need to be skipped. MFC after:3 days Modified:

svn commit: r207995 - in head: . etc/mtree gnu/lib/libgcc gnu/lib/libstdc++ gnu/lib/libsupc++ gnu/usr.bin/cc gnu/usr.bin/cc/cc_tools gnu/usr.bin/cc/include

2010-05-12 Thread David E. O'Brien
Author: obrien Date: Wed May 12 19:59:32 2010 New Revision: 207995 URL: http://svn.freebsd.org/changeset/base/207995 Log: Non-GCC gcc compatible compilers may provide the same multimedia intrinsic headers as GCC, but of their own implementation. So put the GCC ones into their own header

svn commit: r207998 - head/sbin/restore

2010-05-12 Thread Christian Brueffer
Author: brueffer Date: Wed May 12 20:21:44 2010 New Revision: 207998 URL: http://svn.freebsd.org/changeset/base/207998 Log: Fix grammar in a line of output. PR: 145343 Submitted by: Hywel Mallett hy...@hmallett.co.uk MFC after:1 week Modified:

svn commit: r208002 - head

2010-05-12 Thread Christian Brueffer
Author: brueffer Date: Wed May 12 21:20:04 2010 New Revision: 208002 URL: http://svn.freebsd.org/changeset/base/208002 Log: Note 8.0-RELEASE. PR: 143824 Submitted by: pluknet pluk...@gmail.com Modified: head/UPDATING Modified: head/UPDATING

svn commit: r208003 - in head/sys: kern sys

2010-05-12 Thread Zachary Loafman
Author: zml Date: Wed May 12 21:24:46 2010 New Revision: 208003 URL: http://svn.freebsd.org/changeset/base/208003 Log: Add VOP_ADVLOCKPURGE so that the file system is called when purging locks (in the case where the VFS impl isn't using lf_*) Submitted by: Matthew Fleming

svn commit: r208004 - head/usr.sbin/extattr

2010-05-12 Thread Zachary Loafman
Author: zml Date: Wed May 12 21:25:05 2010 New Revision: 208004 URL: http://svn.freebsd.org/changeset/base/208004 Log: extattr: Fix a signed/unsigned issue Submitted by: Matthew Fleming matthew.flem...@isilon.com Reviewed by:zml, dfr Modified:

svn commit: r208006 - in head/sys/dev/usb: . quirk

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:26:23 2010 New Revision: 208006 URL: http://svn.freebsd.org/changeset/base/208006 Log: Add quirks for the Alcor SDCR_6362 Card Reader, Freecom HDD storage device and Samsung YP_U4 music player. PR: usb/145265, usb/146104 Submitted by:

svn commit: r208007 - head/sys/dev/usb

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:28:40 2010 New Revision: 208007 URL: http://svn.freebsd.org/changeset/base/208007 Log: Staticise usb_ref_device and usb_unref_device. Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/usb_dev.c Modified: head/sys/dev/usb/usb_dev.c

svn commit: r208008 - head/sys/dev/usb

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:42:35 2010 New Revision: 208008 URL: http://svn.freebsd.org/changeset/base/208008 Log: If a USB device is suspended and a USB set config request is issued when the USB enumeration lock is locked, then the USB stack fails to resume the device because

svn commit: r208009 - in head/sys/dev/usb: . input

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:43:33 2010 New Revision: 208009 URL: http://svn.freebsd.org/changeset/base/208009 Log: Enable support for mouse panning wheels. Submitted by: Henry Hu Modified: head/sys/dev/usb/input/ums.c head/sys/dev/usb/usbhid.h Modified:

svn commit: r208010 - head/sys/dev/usb

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:44:57 2010 New Revision: 208010 URL: http://svn.freebsd.org/changeset/base/208010 Log: Provide more information about the device location in the USB system. Submitted by: Hans Petter Sekasky Modified: head/sys/dev/usb/usb_hub.c Modified:

svn commit: r208011 - head/sys/dev/usb

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:45:44 2010 New Revision: 208011 URL: http://svn.freebsd.org/changeset/base/208011 Log: Add the ASUS MyPal A730W device id. Submitted by: Dmitry Luhtionov Modified: head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/usbdevs

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

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:51:45 2010 New Revision: 208013 URL: http://svn.freebsd.org/changeset/base/208013 Log: Add missing ifdefs for usb power saving support. Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/controller/usb_controller.c Modified:

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

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:55:45 2010 New Revision: 208014 URL: http://svn.freebsd.org/changeset/base/208014 Log: Back out r203140 which was causing problems when the first and the last microframe slot was not in the smask. The problem was that the EHCI driver was then thinking

svn commit: r208015 - head/sys/dev/usb/serial

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:57:16 2010 New Revision: 208015 URL: http://svn.freebsd.org/changeset/base/208015 Log: Increase the max ports to 12, 3G devices exist where the ppp endpoint is #9. Requested by: n_hibma Modified: head/sys/dev/usb/serial/u3g.c Modified:

svn commit: r208016 - in head/sys/dev/usb: . serial

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 22:58:59 2010 New Revision: 208016 URL: http://svn.freebsd.org/changeset/base/208016 Log: Add new FTDI USB device ID. PR: kern/146483 Submitted by: Andre Albsmeier Modified: head/sys/dev/usb/serial/uftdi.c head/sys/dev/usb/usbdevs

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

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 23:00:36 2010 New Revision: 208017 URL: http://svn.freebsd.org/changeset/base/208017 Log: Fix possibly wrong bit masking. Reported by: n_hibma Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/net/uhso.c Modified:

svn commit: r208018 - head/sys/dev/usb

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Wed May 12 23:40:44 2010 New Revision: 208018 URL: http://svn.freebsd.org/changeset/base/208018 Log: Reduce diffs to p4. Add test code for delaying or failing usb control requests, disabled by default under ifdef USB_REQ_DEBUG. Submitted by: Hans Petter

svn commit: r208019 - in head/sys: contrib/dev/run dev/usb/wlan

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Thu May 13 00:19:03 2010 New Revision: 208019 URL: http://svn.freebsd.org/changeset/base/208019 Log: Sync run(4) driver from author's site. Submitted by: Akinori Furukoshi Obtained from:git://gitorious.org/run/run.git Modified:

svn commit: r208021 - head/lib/libusb

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Thu May 13 00:26:30 2010 New Revision: 208021 URL: http://svn.freebsd.org/changeset/base/208021 Log: Fix return values for usb_find_busses() and usb_find_devices(). We should try to return the actual number of busses and devices. Reported by: Mike Tancsa

svn commit: r208023 - head/lib/libusbhid

2010-05-12 Thread Andrew Thompson
Author: thompsa Date: Thu May 13 02:03:00 2010 New Revision: 208023 URL: http://svn.freebsd.org/changeset/base/208023 Log: Use fixed width integer types for parsing the binary hid data. PR: usb/146367 Submitted by: Hans Petter Selasky Modified: head/lib/libusbhid/data.c

Re: svn commit: r208002 - head

2010-05-12 Thread pluknet
On 13 May 2010 01:20, Christian Brueffer bruef...@freebsd.org wrote: Author: brueffer Date: Wed May 12 21:20:04 2010 New Revision: 208002 URL: http://svn.freebsd.org/changeset/base/208002 Log:  Note 8.0-RELEASE.  PR:           143824  Submitted by: pluknet pluk...@gmail.com Modified:  

Re: svn commit: r208002 - head

2010-05-12 Thread Ken Smith
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 5/12/10 11:13 PM, pluknet wrote: On 13 May 2010 01:20, Christian Brueffer bruef...@freebsd.org wrote: Author: brueffer Date: Wed May 12 21:20:04 2010 New Revision: 208002 URL: http://svn.freebsd.org/changeset/base/208002 Log: Note

Re: svn commit: r208002 - head

2010-05-12 Thread pluknet
On 13 May 2010 07:37, Ken Smith kensm...@buffalo.edu wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 5/12/10 11:13 PM, pluknet wrote: On 13 May 2010 01:20, Christian Brueffer bruef...@freebsd.org wrote: Author: brueffer Date: Wed May 12 21:20:04 2010 New Revision: 208002 URL:

svn commit: r208024 - head/release/doc/en_US.ISO8859-1/hardware

2010-05-12 Thread Christian Brueffer
Author: brueffer Date: Thu May 13 03:56:57 2010 New Revision: 208024 URL: http://svn.freebsd.org/changeset/base/208024 Log: et.4 doesn't have a HARDWARE section. Unbreak the build by manually describing the supported et(4) chips. Modified: