svn commit: r234487 - head/sys/net

2012-04-20 Thread Andrew Thompson
Author: thompsa Date: Fri Apr 20 09:55:50 2012 New Revision: 234487 URL: http://svn.freebsd.org/changeset/base/234487 Log: Add linkstate to bridge(4), set the link to up when at least one underlying interface is up, otherwise the link is down. This, among other things, allows carp to work

svn commit: r234488 - head/sys/net

2012-04-20 Thread Andrew Thompson
Author: thompsa Date: Fri Apr 20 10:06:28 2012 New Revision: 234488 URL: http://svn.freebsd.org/changeset/base/234488 Log: Move the interface media check to a taskqueue, some interfaces (usb) sleep during SIOCGIFMEDIA and we were holding locks. Modified: head/sys/net/bridgestp.c head/sys/

svn commit: r235144 - head/sys/dev/tsec

2012-05-08 Thread Andrew Thompson
Author: thompsa Date: Tue May 8 21:09:03 2012 New Revision: 235144 URL: http://svn.freebsd.org/changeset/base/235144 Log: The DEVICE_POLLING dereference of sc->tsec_ifp needs to be checked for null first or this will panic. Condense three blocks that check sc->tsec_ifp into one while I am h

svn commit: r235147 - head/sys/dev/tsec

2012-05-08 Thread Andrew Thompson
Author: thompsa Date: Wed May 9 00:56:11 2012 New Revision: 235147 URL: http://svn.freebsd.org/changeset/base/235147 Log: Do not reinitialise the interface if it is already running, this prevents the bootp+nfs code from working as it calls init on each dhcp send and rx fails to start in tim

svn commit: r235870 - head/usr.bin/sockstat

2012-05-23 Thread Andrew Thompson
Author: thompsa Date: Thu May 24 01:31:10 2012 New Revision: 235870 URL: http://svn.freebsd.org/changeset/base/235870 Log: Allow the socket list to be limited to a specific jail id. No objections:current@ Modified: head/usr.bin/sockstat/sockstat.1 head/usr.bin/sockstat/sockstat

svn commit: r236062 - head/sys/net

2012-05-26 Thread Andrew Thompson
Author: thompsa Date: Sat May 26 08:09:01 2012 New Revision: 236062 URL: http://svn.freebsd.org/changeset/base/236062 Log: Turn LACP debugging from a compile time option to a sysctl, it is very handy to be able to turn it on when negotiation to a switch misbehaves. Submitted by: Andrew B

Re: svn commit: r228571 - in head: . lib/libc/net sbin/ifconfig share/man/man4 sys/net sys/netinet sys/netinet6 sys/sys

2012-05-29 Thread Andrew Thompson
On 17 December 2011 01:16, Gleb Smirnoff wrote: > Author: glebius > Date: Fri Dec 16 12:16:56 2011 > New Revision: 228571 > URL: http://svn.freebsd.org/changeset/base/228571 > > Log: >  A major overhaul of the CARP implementation. The ip_carp.c was started >  from scratch, copying needed functiona

Re: svn commit: r236593 - head/share/man/man4

2012-06-04 Thread Andrew Thompson
On 5 June 2012 10:59, David E. O'Brien wrote: > Author: obrien > Date: Mon Jun  4 22:59:06 2012 > New Revision: 236593 > URL: http://svn.freebsd.org/changeset/base/236593 > > Log: >  Add a man page for filemon(4) [r236592]. > +static void > +open_filemon(void) > +{ > + > +       if ((child = fork

Re: svn commit: r234712 - in head: lib/libc/sys usr.sbin/jail

2012-06-06 Thread Andrew Thompson
On 27 April 2012 05:36, Jamie Gritton wrote: > Author: jamie > Date: Thu Apr 26 17:36:05 2012 > New Revision: 234712 > URL: http://svn.freebsd.org/changeset/base/234712 > > Log: >  A new jail(8) with a configuration file, ultimately to replace the work >  currently done by /etc/rc.d/jail. > Is th

svn commit: r236916 - head/sys/net

2012-06-11 Thread Andrew Thompson
Author: thompsa Date: Mon Jun 11 20:12:13 2012 New Revision: 236916 URL: http://svn.freebsd.org/changeset/base/236916 Log: Fix a panic I introduced in r234487, the bridge softc pointer is set to null early in the detach so rearrange things not to explode. Reported by: David Roffiaen, Gus

svn commit: r241183 - head/sys/net

2012-10-04 Thread Andrew Thompson
Author: thompsa Date: Thu Oct 4 07:40:55 2012 New Revision: 241183 URL: http://svn.freebsd.org/changeset/base/241183 Log: Remove the M_NOWAIT from bridge_rtable_init as it isn't needed. The function return value is not even checked and could lead to a panic on a null sc_rthash. MFC afte

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

2012-10-23 Thread Andrew Thompson
Author: thompsa Date: Tue Oct 23 22:58:25 2012 New Revision: 241970 URL: http://svn.freebsd.org/changeset/base/241970 Log: Fix spelling of NFSCL option. Modified: head/sys/mips/conf/AR71XX_BASE head/sys/mips/conf/AR724X_BASE Modified: head/sys/mips/conf/AR71XX_BASE

Re: svn commit: r245329 - head/sys/mips/beri

2013-01-12 Thread Andrew Thompson
On 13 January 2013 01:35, Robert Watson wrote: > Author: rwatson > Date: Sat Jan 12 12:34:59 2013 > New Revision: 245329 > URL: http://svnweb.freebsd.org/changeset/base/245329 > > Log: > Merge Perforce change @219935 to head: > > Initialise Openfirmware/FDT code earlier in the FreeBSD/beri b

svn commit: r237674 - head/usr.bin/sockstat

2012-06-27 Thread Andrew Thompson
Author: thompsa Date: Wed Jun 27 23:26:32 2012 New Revision: 237674 URL: http://svn.freebsd.org/changeset/base/237674 Log: Update the usage with the new jail option. Spotted by: Jason Hellenthal MFC after:3 days Modified: head/usr.bin/sockstat/sockstat.c Modified: head/usr.bin/s

svn commit: r237852 - head/sys/net

2012-06-30 Thread Andrew Thompson
Author: thompsa Date: Sat Jun 30 19:09:02 2012 New Revision: 237852 URL: http://svn.freebsd.org/changeset/base/237852 Log: Add the same check as vlan(4) where we ignore the ifnet departure event if the interface is just being renamed. PR: kern/169557 Submitted by: Mark Johnsto

Re: svn commit: r238361 - head/sys/dev/usb

2012-07-11 Thread Andrew Thompson
On 12 July 2012 10:15, Adrian Chadd wrote: > Again, that just touched usb. So, how'd that affect non-USB wifi cloning? I guess cloning is first match wins and usb was incorrectly matching wlan* Andrew ___ svn-src-head@freebsd.org mailing list http://l

svn commit: r232008 - head/sys/net

2012-02-22 Thread Andrew Thompson
Author: thompsa Date: Wed Feb 22 22:01:30 2012 New Revision: 232008 URL: http://svn.freebsd.org/changeset/base/232008 Log: Using the flowid in the mbuf assumes the network card is giving a good hash for the traffic flow, this may not be the case giving poor traffic distribution. Add a sysct

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

2012-02-22 Thread Andrew Thompson
Author: thompsa Date: Wed Feb 22 22:09:17 2012 New Revision: 232009 URL: http://svn.freebsd.org/changeset/base/232009 Log: Make it clear that fec is just an alias Modified: head/share/man/man4/lagg.4 Modified: head/share/man/man4/lagg.4 ===

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

2012-02-22 Thread Andrew Thompson
Author: thompsa Date: Wed Feb 22 22:29:23 2012 New Revision: 232010 URL: http://svn.freebsd.org/changeset/base/232010 Log: Document the net.link.lagg.X.use_flowid sysctl from r232008. Modified: head/share/man/man4/lagg.4 Modified: head/share/man/man4/lagg.4 ==

svn commit: r232014 - head/sys/net

2012-02-22 Thread Andrew Thompson
Author: thompsa Date: Thu Feb 23 00:59:21 2012 New Revision: 232014 URL: http://svn.freebsd.org/changeset/base/232014 Log: bstp_input() always consumes the packet so remove the mbuf handling dance around it. Obtained from:OpenBSD (r1.37) Modified: head/sys/net/bridgestp.c hea

svn commit: r232030 - head/sys/net

2012-02-22 Thread Andrew Thompson
Author: thompsa Date: Thu Feb 23 06:26:16 2012 New Revision: 232030 URL: http://svn.freebsd.org/changeset/base/232030 Log: Now that network interfaces advertise if they support linkstate notifications we do not need to perform a media ioctl every 15 seconds. Modified: head/sys/net/bridgestp

svn commit: r232070 - head/sys/net

2012-02-23 Thread Andrew Thompson
Author: thompsa Date: Thu Feb 23 20:58:52 2012 New Revision: 232070 URL: http://svn.freebsd.org/changeset/base/232070 Log: Indicate this function decrements the timer as well as testing for expiry. Modified: head/sys/net/bridgestp.c Modified: head/sys/net/bridgestp.c

svn commit: r232080 - in head: share/man/man4 sys/net

2012-02-23 Thread Andrew Thompson
Author: thompsa Date: Thu Feb 23 21:56:53 2012 New Revision: 232080 URL: http://svn.freebsd.org/changeset/base/232080 Log: Add a sysctl/tunable default value for the use_flowid sysctl in r232008. Modified: head/share/man/man4/lagg.4 head/sys/net/if_lagg.c Modified: head/share/man/man4/lagg

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

2012-02-23 Thread Andrew Thompson
Author: thompsa Date: Thu Feb 23 23:37:29 2012 New Revision: 232089 URL: http://svn.freebsd.org/changeset/base/232089 Log: Break the last part to its own sentence rather than a run-on. Suggested by: dougb Modified: head/share/man/man4/lagg.4 Modified: head/share/man/man4/lagg.4

Re: svn commit: r232080 - in head: share/man/man4 sys/net

2012-02-23 Thread Andrew Thompson
On 24 February 2012 12:23, Doug Barton wrote: > First, I'm always glad to see devs updating the documentation, so please > don't take this as in any way being critical, just trying to help. :) n/p, I like feedback. > On 02/23/2012 13:56, Andrew Thompson wrote: >> Modi

svn commit: r232118 - head/sys/net

2012-02-24 Thread Andrew Thompson
Author: thompsa Date: Fri Feb 24 17:50:36 2012 New Revision: 232118 URL: http://svn.freebsd.org/changeset/base/232118 Log: Only look for a usable MAC address for the bridge ID from ports within our bridge, this allows us to have more than one independent bridge in the same STP domain. P

svn commit: r232315 - head/sys/net

2012-02-29 Thread Andrew Thompson
Author: thompsa Date: Wed Feb 29 20:58:21 2012 New Revision: 232315 URL: http://svn.freebsd.org/changeset/base/232315 Log: Use a more appropriate default for the maximum number of addresses in the bridge forwarding table. PR: docs/164564 Discussed with: brueffer Modifie

svn commit: r232321 - head/share/man/man9

2012-02-29 Thread Andrew Thompson
Author: thompsa Date: Wed Feb 29 22:41:40 2012 New Revision: 232321 URL: http://svn.freebsd.org/changeset/base/232321 Log: Correct the description for CTLFLAG_TUN and CTLFLAG_RDTUN, the declaring of a system tunable has never been implemented. This flag is only used by sysctl(8) to provide a

Re: svn commit: r232526 - head/sys/net80211

2012-03-04 Thread Andrew Thompson
On 5 March 2012 12:13, Adrian Chadd wrote: > Author: adrian > Date: Sun Mar  4 23:13:52 2012 > New Revision: 232526 > URL: http://svn.freebsd.org/changeset/base/232526 > > Log: >  Add the thread id to the net80211 alq records. > >  This will (hopefully) aid in debugging concurrency related issues.

svn commit: r232629 - in head: sbin/ifconfig sys/net

2012-03-06 Thread Andrew Thompson
Author: thompsa Date: Tue Mar 6 22:58:13 2012 New Revision: 232629 URL: http://svn.freebsd.org/changeset/base/232629 Log: Add the ability to set which packet layers are used for the load balance hash calculation. Modified: head/sbin/ifconfig/ifconfig.8 head/sbin/ifconfig/iflagg.c head/

Re: svn commit: r232629 - in head: sbin/ifconfig sys/net

2012-03-06 Thread Andrew Thompson
On 7 March 2012 19:07, Andrey Zonov wrote: > On 07.03.2012 2:58, Andrew Thompson wrote: > [snip] > >> Modified: head/sbin/ifconfig/ifconfig.8 >> >> == >> --- head/sbin/ifconfig/ifconfig

svn commit: r232638 - head/sbin/ifconfig

2012-03-06 Thread Andrew Thompson
Author: thompsa Date: Wed Mar 7 06:25:17 2012 New Revision: 232638 URL: http://svn.freebsd.org/changeset/base/232638 Log: Fix typo and bump the document date which I also forgot. Spotted by: Andrey Zonov Modified: head/sbin/ifconfig/ifconfig.8 Modified: head/sbin/ifconfig/ifconfig.8

svn commit: r232640 - head/sys/net

2012-03-06 Thread Andrew Thompson
Author: thompsa Date: Wed Mar 7 07:22:53 2012 New Revision: 232640 URL: http://svn.freebsd.org/changeset/base/232640 Log: Move the vlan buffer space into the union which also fixes an unused variable warning with !INET & !INET6. Spotted by: pluknet Modified: head/sys/net/if_lagg.c

Re: svn commit: r221780 - head/usr.sbin/freebsd-update

2012-03-11 Thread Andrew Thompson
On 12 May 2011 03:23, Colin Percival wrote: > Author: cperciva > Date: Wed May 11 15:23:27 2011 > New Revision: 221780 > URL: http://svn.freebsd.org/changeset/base/221780 > > Log: >  Make freebsd-update(8) smarter in how it handles $FreeBSD$ tags in >  configuration files. > >  Nagged by:    pgoll

Re: svn commit: r240075 - in head: crypto/openssh crypto/openssh/openbsd-compat secure/lib/libssh

2013-02-21 Thread Andrew Thompson
On 4 September 2012 04:51, Dag-Erling Smørgrav wrote: > Author: des > Date: Mon Sep 3 16:51:41 2012 > New Revision: 240075 > URL: http://svn.freebsd.org/changeset/base/240075 > > Log: > Upgrade OpenSSH to 6.1p1. MFC? ___ svn-src-head@freebsd.org mail

Re: svn commit: r240075 - in head: crypto/openssh crypto/openssh/openbsd-compat secure/lib/libssh

2013-02-21 Thread Andrew Thompson
On 22 February 2013 01:29, Dag-Erling Smørgrav wrote: > Andrew Thompson writes: >> Dag-Erling Smørgrav writes: >> > Log: >> > Upgrade OpenSSH to 6.1p1. >> MFC? > > Not sure, it's a fairly large change. I assume you're asking because of &g

Re: svn commit: r249589 - head/sys/mips/malta

2013-04-17 Thread Andrew Thompson
On 18 April 2013 06:26, Adrian Chadd wrote: > Author: adrian > Date: Wed Apr 17 18:26:01 2013 > New Revision: 249589 > URL: http://svnweb.freebsd.org/changeset/base/249589 > > Log: > Add the static kernel boot environment, needed to actually boot this > thing. > > (Wasting 4k just as a tempor

svn commit: r203896 - head/sys/dev/usb/input

2010-02-14 Thread Andrew Thompson
Author: thompsa Date: Sun Feb 14 19:53:45 2010 New Revision: 203896 URL: http://svn.freebsd.org/changeset/base/203896 Log: Detect when we are polling from kernel via cngetc() in the boot process and reserve the keypresses so they do not get passed to syscons. Submitted by: Hans Petter Sel

svn commit: r203899 - head/sys/dev/usb/quirk

2010-02-14 Thread Andrew Thompson
Author: thompsa Date: Sun Feb 14 19:56:05 2010 New Revision: 203899 URL: http://svn.freebsd.org/changeset/base/203899 Log: Add UQ_KBD_BOOTPROTO quirk needed in r203896 Modified: head/sys/dev/usb/quirk/usb_quirk.c head/sys/dev/usb/quirk/usb_quirk.h Modified: head/sys/dev/usb/quirk/usb_quirk

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

2010-02-14 Thread Andrew Thompson
Author: thompsa Date: Sun Feb 14 19:59:19 2010 New Revision: 203903 URL: http://svn.freebsd.org/changeset/base/203903 Log: Make umodem more tolerant for devices which modem descriptors are misplaced. Reported by: Erick Wales Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb

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

2010-02-14 Thread Andrew Thompson
Author: thompsa Date: Sun Feb 14 20:05:12 2010 New Revision: 203905 URL: http://svn.freebsd.org/changeset/base/203905 Log: Add support for the E1752 3G modem and the required eject command. Submitted by: Milan Obuch Modified: head/sys/dev/usb/serial/u3g.c head/sys/dev/usb/usb_msctest.c

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

2010-02-14 Thread Andrew Thompson
Author: thompsa Date: Sun Feb 14 20:10:41 2010 New Revision: 203906 URL: http://svn.freebsd.org/changeset/base/203906 Log: Add device ID for the FTDI 4232H. PR: usb/143832 Submitted by: UEMURA Tetsuya Modified: head/sys/dev/usb/serial/uftdi.c head/sys/dev/usb/usbdevs Modif

Re: svn commit: r204145 - head/sys/net

2010-02-20 Thread Andrew Thompson
On Sat, Feb 20, 2010 at 10:09:48PM +, Bjoern A. Zeeb wrote: > Author: bz > Date: Sat Feb 20 22:09:48 2010 > New Revision: 204145 > URL: http://svn.freebsd.org/changeset/base/204145 > > Log: > Start to implement ifnet DDB support: > - 'show ifnets' prints a list of ifnet *s per virtual netw

svn commit: r205003 - head/sys/dev/siba

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 08:03:56 2010 New Revision: 205003 URL: http://svn.freebsd.org/changeset/base/205003 Log: Revert r204992 and just wrap it all in ifdef INVARIANTS to fix the debug and non-debug cases. Modified: head/sys/dev/siba/siba_core.c Modified: head/sys/dev/siba/siba_

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 08:33:39 2010 New Revision: 205005 URL: http://svn.freebsd.org/changeset/base/205005 Log: Wrap the proc wakeup special case for ddb in ifdef DDB. Submitted by: Giovanni Trematerra Modified: head/sys/dev/usb/controller/usb_controller.c Modified: head/sys/

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 20:41:21 2010 New Revision: 205026 URL: http://svn.freebsd.org/changeset/base/205026 Log: Reapply r185998 which was overwritten at some point. Modified: head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/usbdevs ==

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:42:09 2010 New Revision: 205029 URL: http://svn.freebsd.org/changeset/base/205029 Log: Use wMaxPacketSize for the uftdi input buffer size. Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/serial/uftdi.c Modified: head/sys/dev/usb/serial/uf

svn commit: r205030 - head/sys/dev/usb/template

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:45:31 2010 New Revision: 205030 URL: http://svn.freebsd.org/changeset/base/205030 Log: - make the usb_temp_setup() and usb_temp_unsetup() functions public so that other modules can generate USB descriptors. - extend the vendor specific request function b

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:46:33 2010 New Revision: 205031 URL: http://svn.freebsd.org/changeset/base/205031 Log: It appears that some UVISOR devices do not handle when the clear stall command is issued at the beginning of the initial IN/OUT data transfers. Reason unknown, probably

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:47:25 2010 New Revision: 205032 URL: http://svn.freebsd.org/changeset/base/205032 Log: Add new uvisor(4) device ID. PR: usb/144201 Modified: head/sys/dev/usb/serial/uvisor.c head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/serial/uvisor

svn commit: r205033 - head/sys/dev/usb/template

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:48:10 2010 New Revision: 205033 URL: http://svn.freebsd.org/changeset/base/205033 Log: isochronous endpoint descriptors should have two more bytes which are zero by default. Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/template/usb_te

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:49:00 2010 New Revision: 205034 URL: http://svn.freebsd.org/changeset/base/205034 Log: For USS820 driver we need to manually reset TX FIFO at each SETUP transaction because the chip doesn't do this by itself. Submitted by: Hans Petter Selasky Modified:

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:49:43 2010 New Revision: 205035 URL: http://svn.freebsd.org/changeset/base/205035 Log: Make sure there is a way to reset the endpoint FIFO on transfer errors for ISOCHRONOUS transfers Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/usb_t

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:50:36 2010 New Revision: 205036 URL: http://svn.freebsd.org/changeset/base/205036 Log: Implement USB kernel driver detach from userland. Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/usb_device.c head/sys/dev/usb/usb_device.h head/sy

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:54:23 2010 New Revision: 205038 URL: http://svn.freebsd.org/changeset/base/205038 Log: add new vendor ID for APACER Submitted by: Paul B Mahol Modified: head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/usbdevs ==

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:55:25 2010 New Revision: 205039 URL: http://svn.freebsd.org/changeset/base/205039 Log: Add new device ID for the SMC 2514HUB Submitted by: Alexander Best Modified: head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/usbdevs ===

svn commit: r205040 - head/sys/dev/usb/input

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 21:57:01 2010 New Revision: 205040 URL: http://svn.freebsd.org/changeset/base/205040 Log: extend search for Apple Function Key. PR: usb/144414 Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/input/ukbd.c Modified: head/sys/dev/us

svn commit: r205042 - in head/sys/dev/usb: . wlan

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 22:05:12 2010 New Revision: 205042 URL: http://svn.freebsd.org/changeset/base/205042 Log: - Integrate latest driver code from OpenBSD - Drain our tasks from the ieee80211 taskqueue - Add more IDs Submitted by: Akinori Furukoshi Modified: head/sys/dev/

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

2010-03-11 Thread Andrew Thompson
Author: thompsa Date: Thu Mar 11 22:09:21 2010 New Revision: 205043 URL: http://svn.freebsd.org/changeset/base/205043 Log: Add device ID for the NATURAL4000 keyboard Modified: head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/usbdevs

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

2010-03-28 Thread Andrew Thompson
Author: thompsa Date: Sun Mar 28 20:02:13 2010 New Revision: 205801 URL: http://svn.freebsd.org/changeset/base/205801 Log: Add a couple of usb product IDs. Submitted by: Dmitry Luhtionov @ gmail.com Modified: head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/usbdevs ==

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

2010-03-28 Thread Andrew Thompson
Author: thompsa Date: Sun Mar 28 20:02:50 2010 New Revision: 205802 URL: http://svn.freebsd.org/changeset/base/205802 Log: Add PCI IDs for two more nForce controllers. Submitted by: Dmitry Luhtionov @ gmail.com Modified: head/sys/dev/usb/controller/ehci_pci.c head/sys/dev/usb/controlle

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

2010-03-28 Thread Andrew Thompson
Author: thompsa Date: Sun Mar 28 20:04:03 2010 New Revision: 205803 URL: http://svn.freebsd.org/changeset/base/205803 Log: Make sure the bsd_urb_list gets initialised and that new URB's are queued at the end of the list. Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/usb_

svn commit: r205804 - head/sys/dev/usb/input

2010-03-28 Thread Andrew Thompson
Author: thompsa Date: Sun Mar 28 20:07:08 2010 New Revision: 205804 URL: http://svn.freebsd.org/changeset/base/205804 Log: Do not swap Apple keys when detecting Apple-FN keyboards. Reported by: Steven Noonan Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/input/ukbd.c Mo

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

2010-03-28 Thread Andrew Thompson
Author: thompsa Date: Sun Mar 28 20:09:04 2010 New Revision: 205805 URL: http://svn.freebsd.org/changeset/base/205805 Log: Do not sync cache for the PL2506 PR: usb/144915 Submitted by: Monty Hall Modified: head/sys/dev/usb/quirk/usb_quirk.c head/sys/dev/usb/usbdevs Modifie

<    1   2