cvs commit: src/sys/dev/an if_an.c if_an_pci.c

2008-01-18 Thread Doug Ambrisko
ambrisko2008-01-18 16:34:18 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c if_an_pci.c Log: Style changes from avatar. Submitted by: avatar Revision ChangesPath 1.88 +39 -39src/sys/dev/an/if_an.c 1.30 +9 -9

cvs commit: src/sys/dev/an if_an.c if_an_pci.c if_anreg.h

2008-01-18 Thread Doug Ambrisko
ambrisko2008-01-18 16:31:24 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c if_an_pci.c if_anreg.h Log: First real attempt at proper locking. The locking is a little complicated since the the command and data that is being built to be sent to or read

cvs commit: src/sys/dev/an if_an.c

2007-11-30 Thread Tai-hwa Liang
avatar 2007-12-01 07:01:46 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/an if_an.c Log: MFC(1.86): Eliminating an unnecessary check on an_gone inside an_stats_update() since a properly locked callout_stop(9) does do the right thing.

cvs commit: src/sys/dev/an if_an.c if_anreg.h

2007-11-27 Thread Tai-hwa Liang
avatar 2007-11-27 08:11:13 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/dev/an if_an.c if_anreg.h Log: MFC(if_an.c:1.85, if_anreg.h:1.24): Trying to eliminate a racing as well as reducing the chance of device removal(PCCARD) panic by

cvs commit: src/sys/dev/an if_an.c if_anreg.h

2007-11-27 Thread Tai-hwa Liang
avatar 2007-11-27 08:22:37 UTC FreeBSD src repository Modified files:(Branch: RELENG_6_3) sys/dev/an if_an.c if_anreg.h Log: MFC(if_an.c:1.85, if_anreg.h:1.24): Trying to eliminate a racing as well as reducing the chance of device removal(PCCARD) panic by

cvs commit: src/sys/dev/an if_an.c

2007-11-27 Thread Tai-hwa Liang
avatar 2007-11-27 08:29:24 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: MFP4(129048): Eliminating an unnecessary check on an_gone inside an_stats_update() since a properly locked callout_stop(9) does do the right thing. Reviewed by:

cvs commit: src/sys/dev/an if_an.c if_anreg.h

2007-11-20 Thread Tai-hwa Liang
avatar 2007-11-21 06:37:40 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/dev/an if_an.c if_anreg.h Log: MFC(if_an.c:1.85, if_anreg.h:1.24): Trying to eliminate a racing as well as reducing the chance of device removal(PCCARD) panic by

cvs commit: src/sys/dev/an if_an.c if_anreg.h

2007-11-16 Thread Tai-hwa Liang
avatar 2007-11-16 11:22:18 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c if_anreg.h Log: MFP4(128855, 129015): - Trying to eliminate another racing by replacing the timeout(9) with callout APIs. In addition to that, the callout_drain() in

cvs commit: src/sys/dev/an if_an.c

2007-09-10 Thread Tai-hwa Liang
avatar 2007-09-10 12:53:34 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: Fixing invalid channel display in ifconfig(8) by implementing required ioctl(). Note that other information provided by ifconfig(8) such like list chan or list ap

cvs commit: src/sys/dev/an if_an.c

2007-08-07 Thread Tai-hwa Liang
avatar 2007-08-07 12:26:19 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: MFP4(123687): Closing another LOR by dropping the driver lock around calls to if_input(). Reviewed by:ambrisko Tested by: dhw Approved by:re

cvs commit: src/sys/dev/an if_an.c

2007-08-01 Thread Tai-hwa Liang
avatar 2007-08-02 02:20:19 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: MFP4(123686): Fixing various ancontrol(8) related panics by dropping locks around copyin()/copyout(). Reviewed by:sam, thompsa Tested by: dhw Approved by:

cvs commit: src/sys/dev/an if_an.c

2007-06-07 Thread Matt Jacob
mjacob 2007-06-08 01:21:20 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: Remove assignment to uninitialized variable that wasn't then used anyway. Revision ChangesPath 1.81 +0 -2 src/sys/dev/an/if_an.c

cvs commit: src/sys/dev/an if_an.c

2006-02-04 Thread Warner Losh
imp 2006-02-04 22:51:03 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: Silence the strict-alias warnings. Make a trip through (void *) when casting a structure to a uint32_t *. Many drivers in the tree do this, but I'll not update them

cvs commit: src/sys/dev/an if_an.c

2006-01-26 Thread Nate Lawson
njl 2006-01-26 19:55:29 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: Since the A-Z range is contained in the previous check, the else-if is dead code. Clean up both by using isprint() instead, since that's what it really wants.

cvs commit: src/sys/dev/an if_an.c

2006-01-15 Thread Robert Watson
rwatson 2006-01-15 12:06:09 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: If frame length is excessive, don't leak an mbuf and cluster when abandoning processing. Found with: Coverity Prevent (tm) MFC after: 1 week Revision

cvs commit: src/sys/dev/an if_an.c

2006-01-15 Thread Robert Watson
rwatson 2006-01-15 12:09:03 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: Don't leak mbufs and mbuf clusters in several error-handling situations in the if_an receive routine. Found with: Coverity Prevent (tm) MFC after: 1 week