cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-06-11 Thread Andrew Thompson
thompsa 2007-06-11 10:56:06 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c if_iwivar.h Log: MFp4 (missed in net80211 megaupdate) - Use a seperate taskqueue+thread for reset tasks since iwi_ops will block. - Return from iwi_ops if the interface

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-21 Thread Luigi Rizzo
On Wed, Feb 21, 2007 at 09:39:18AM +0100, Jeremie Le Hen wrote: > Hi, > > On Tue, Feb 20, 2007 at 09:41:31AM -0800, Luigi Rizzo wrote: > > On Tue, Feb 20, 2007 at 09:06:08AM -0800, Sam Leffler wrote: > > > This driver has been in use for many months w/o complaints > > > of the sort you

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-21 Thread Jeremie Le Hen
Hi, On Tue, Feb 20, 2007 at 09:41:31AM -0800, Luigi Rizzo wrote: > On Tue, Feb 20, 2007 at 09:06:08AM -0800, Sam Leffler wrote: > > This driver has been in use for many months w/o complaints > > of the sort you are seeing. > > The fact that I am the only one seeing (or reporting) the

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Nick Hibma
Luigi, I have similar problems, freezing and loosing lock on the access point that is under the table the laptop is sitting on, although the later has become better over time with various commits. Especially the 'firmware loading problem' would be a nice thing to have in RELENG_6. It would

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Luigi Rizzo
On Tue, Feb 20, 2007 at 09:48:38AM -0800, Sam Leffler wrote: > Luigi Rizzo wrote: ... > > The fact that I am the only one seeing (or reporting) the problem > > does not mean that there is no bug (or i wouldn't spend so much > > time trying to fix it :). > > I'm not arguing this; I just don't like

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Sam Leffler
Luigi Rizzo wrote: > On Tue, Feb 20, 2007 at 09:06:08AM -0800, Sam Leffler wrote: >> Luigi Rizzo wrote: >> >>> + add debugging code IWI_LOCK_ASSERT() to detect missing locks. >>> These only do a printf, and should go away once we figure out why >>> the driver sometimes freezes the system

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Luigi Rizzo
On Tue, Feb 20, 2007 at 09:06:08AM -0800, Sam Leffler wrote: > Luigi Rizzo wrote: > > > + add debugging code IWI_LOCK_ASSERT() to detect missing locks. > > These only do a printf, and should go away once we figure out why > > the driver sometimes freezes the system due to a (yet unidenti

cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Luigi Rizzo
luigi 2007-02-20 17:32:30 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c if_iwivar.h Log: Rename IWI_LOCK_ASSERT to IWI_LOCK_CHECK per Sam's suggestion, and make it print under debug.iwi control same as other debugging stuff. Remove the device_p

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Sam Leffler
Luigi Rizzo wrote: > + add debugging code IWI_LOCK_ASSERT() to detect missing locks. > These only do a printf, and should go away once we figure out why > the driver sometimes freezes the system due to a (yet unidentified) > race condition. LOCK_ASSERT should do a mtx_assert and not

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Max Laier
On Tuesday 20 February 2007 16:45, Luigi Rizzo wrote: > luigi 2007-02-20 15:45:59 UTC > > FreeBSD src repository > > Modified files: > sys/dev/iwi if_iwi.c if_iwivar.h > Log: > Address a few issues with the iwi driver, namely: ... > + add debugging code IWI_LOCK_ASSERT(

cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2007-02-20 Thread Luigi Rizzo
luigi 2007-02-20 15:45:59 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c if_iwivar.h Log: Address a few issues with the iwi driver, namely: + do not release the dma-ble region used for downloading firmware. This should fix the problems that so

cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2006-03-12 Thread Damien Bergamini
damien 2006-03-12 18:54:40 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c if_iwivar.h Log: o don't use '-' characters in firmware names o call firmware_put() early to release the firmware module o on firmware panics or watchdog timeouts, schedule a

Re: cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2006-03-11 Thread Bjoern A. Zeeb
On Fri, 10 Mar 2006, Damien Bergamini wrote: damien 2006-03-10 18:55:30 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c if_iwivar.h Log: fix the locking. Revision ChangesPath 1.29 +72 -26src/sys/dev/iwi/if_iwi.c 1.9 +1 -2 src/sy

cvs commit: src/sys/dev/iwi if_iwi.c if_iwivar.h

2006-03-10 Thread Damien Bergamini
damien 2006-03-10 18:55:30 UTC FreeBSD src repository Modified files: sys/dev/iwi if_iwi.c if_iwivar.h Log: fix the locking. Revision ChangesPath 1.29 +72 -26src/sys/dev/iwi/if_iwi.c 1.9 +1 -2 src/sys/dev/iwi/if_iwivar.h ___