Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread John Baldwin
() purging.) Warner On Sep 19, 2014, at 2:07 PM, John Baldwin j...@freebsd.org wrote: This patch fixes various issues in wl(4) including: - Use bus_space instead of inb/outb. - Use device_printf() and if_printf() - Use callout(9) instead of timeout(9) - Don't hold the driver lock

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Adrian Chadd
On 22 September 2014 12:20, John Baldwin j...@freebsd.org wrote: On Friday, September 19, 2014 03:47:16 PM Warner Losh wrote: I got rid of my pre-802.11 WaveLAN cards about 8 years go after not having them in a system at all for 8 years. And they were about 4 years obsolete when I took them

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread John Baldwin
On Monday, September 22, 2014 12:42:34 PM Adrian Chadd wrote: On 22 September 2014 12:20, John Baldwin j...@freebsd.org wrote: On Friday, September 19, 2014 03:47:16 PM Warner Losh wrote: I got rid of my pre-802.11 WaveLAN cards about 8 years go after not having them in a system at all

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Adrian Chadd
Oh yeah, I am. but wl likely hasn't been tested in a long time.. I think my last pair of wl(4) NICs disappeared in 2001. -a On 22 September 2014 13:35, John Baldwin j...@freebsd.org wrote: On Monday, September 22, 2014 12:42:34 PM Adrian Chadd wrote: On 22 September 2014 12:20, John Baldwin

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Warner Losh
I have a dozen I can bring to the next bafug I go to :) Warner On Sep 22, 2014, at 2:44 PM, Adrian Chadd adr...@freebsd.org wrote: Oh yeah, I am. but wl likely hasn't been tested in a long time.. I think my last pair of wl(4) NICs disappeared in 2001. -a On 22 September 2014

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Adrian Chadd
On 22 September 2014 13:46, Warner Losh i...@bsdimp.com wrote: I have a dozen I can bring to the next bafug I go to :) But, do you have the pentium class machines with ISA slots that we'd need to use em? :P -a ___ freebsd-current@freebsd.org mailing

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Alfred Perlstein
On 9/22/14 3:05 PM, Adrian Chadd wrote: On 22 September 2014 13:46, Warner Losh i...@bsdimp.com wrote: I have a dozen I can bring to the next bafug I go to :) But, do you have the pentium class machines with ISA slots that we'd need to use em? :P I have the pci card to pccard bridge cards.

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Adrian Chadd
On 22 September 2014 15:28, Alfred Perlstein bri...@mu.org wrote: On 9/22/14 3:05 PM, Adrian Chadd wrote: On 22 September 2014 13:46, Warner Losh i...@bsdimp.com wrote: I have a dozen I can bring to the next bafug I go to :) But, do you have the pentium class machines with ISA slots that

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Warner Losh
On Sep 22, 2014, at 4:05 PM, Adrian Chadd adr...@freebsd.org wrote: On 22 September 2014 13:46, Warner Losh i...@bsdimp.com wrote: I have a dozen I can bring to the next bafug I go to :) But, do you have the pentium class machines with ISA slots that we'd need to use em? :P For wi(4)? You

Re: [PATCH] Various fixes to wl(4)

2014-09-22 Thread Adrian Chadd
I have lots of wavelan/prism NICs. The driver just doesn't work with them. -a ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to

[PATCH] Various fixes to wl(4)

2014-09-19 Thread John Baldwin
This patch fixes various issues in wl(4) including: - Use bus_space instead of inb/outb. - Use device_printf() and if_printf() - Use callout(9) instead of timeout(9) - Don't hold the driver lock across sleeping actions like bus_teardown_intr(), subyte(), etc. - Don't recurse on the driver

Re: [PATCH] Various fixes to wl(4)

2014-09-19 Thread Warner Losh
more :) Warner On Sep 19, 2014, at 2:07 PM, John Baldwin j...@freebsd.org wrote: This patch fixes various issues in wl(4) including: - Use bus_space instead of inb/outb. - Use device_printf() and if_printf() - Use callout(9) instead of timeout(9) - Don't hold the driver lock across