<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/if_ndis, branch releng/8.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>MFC: r197403, r197644, r197654, and r197659</title>
<updated>2009-10-06T16:05:06+00:00</updated>
<author>
<name>Coleman Kane</name>
<email>cokane@FreeBSD.org</email>
</author>
<published>2009-10-06T16:05:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4718640084534498f1234d59e5d759df7dfcdc64'/>
<id>4718640084534498f1234d59e5d759df7dfcdc64</id>
<content type='text'>
Fix some unexpected potential NULL de-references in kernel mode due to
usage of pre-8.0 wifi operations with the ndis driver wrapping a Win32/64
wifi driver.

Submitted by:	Paul B Mahol &lt;onemda@gmail.com&gt;
Approved by:	re
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix some unexpected potential NULL de-references in kernel mode due to
usage of pre-8.0 wifi operations with the ndis driver wrapping a Win32/64
wifi driver.

Submitted by:	Paul B Mahol &lt;onemda@gmail.com&gt;
Approved by:	re
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix regression in last set of commits. Submitted via e-mail and then</title>
<updated>2009-07-20T23:21:19+00:00</updated>
<author>
<name>Coleman Kane</name>
<email>cokane@FreeBSD.org</email>
</author>
<published>2009-07-20T23:21:19+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e0d12c4b944536528d8c8f5a7851a0535bb75f0b'/>
<id>e0d12c4b944536528d8c8f5a7851a0535bb75f0b</id>
<content type='text'>
nagged again via PR. Thank Paul for his persistence and contributions.

PR:		136895
Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
Reviewed by:	sam (timeout, 10 days), weongyo (timeout, 10 days), me
Approved by:	re (Kostik Belousov &lt;kostikbel@gmail.com&gt;)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
nagged again via PR. Thank Paul for his persistence and contributions.

PR:		136895
Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
Reviewed by:	sam (timeout, 10 days), weongyo (timeout, 10 days), me
Approved by:	re (Kostik Belousov &lt;kostikbel@gmail.com&gt;)
</pre>
</div>
</content>
</entry>
<entry>
<title>Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/</title>
<updated>2009-06-26T11:45:06+00:00</updated>
<author>
<name>Robert Watson</name>
<email>rwatson@FreeBSD.org</email>
</author>
<published>2009-06-26T11:45:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=eb956cd041f956275522092d6ba66671356ff84f'/>
<id>eb956cd041f956275522092d6ba66671356ff84f</id>
<content type='text'>
IF_ADDR_UNLOCK() across network device drivers when accessing the
per-interface multicast address list, if_multiaddrs.  This will
allow us to change the locking strategy without affecting our driver
programming interface or binary interface.

For two wireless drivers, remove unnecessary locking, since they
don't actually access the multicast address list.

Approved by:	re (kib)
MFC after:	6 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
IF_ADDR_UNLOCK() across network device drivers when accessing the
per-interface multicast address list, if_multiaddrs.  This will
allow us to change the locking strategy without affecting our driver
programming interface or binary interface.

For two wireless drivers, remove unnecessary locking, since they
don't actually access the multicast address list.

Approved by:	re (kib)
MFC after:	6 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>Code cleanup by moving some repetitive code into an ndis_get_bssid_list</title>
<updated>2009-06-23T14:37:07+00:00</updated>
<author>
<name>Coleman Kane</name>
<email>cokane@FreeBSD.org</email>
</author>
<published>2009-06-23T14:37:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7c1a5c7c9324befac78ae49d41cdc059f9596710'/>
<id>7c1a5c7c9324befac78ae49d41cdc059f9596710</id>
<content type='text'>
helper function. Also, add ieee80211_announce() call for bootverbose case.

Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
helper function. Also, add ieee80211_announce() call for bootverbose case.

Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>- Make struct usb_xfer opaque so that drivers can not access the internals</title>
<updated>2009-06-23T02:19:59+00:00</updated>
<author>
<name>Andrew Thompson</name>
<email>thompsa@FreeBSD.org</email>
</author>
<published>2009-06-23T02:19:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ed6d949afdbe3f25e6ef640881d8a0a72d7b7aa8'/>
<id>ed6d949afdbe3f25e6ef640881d8a0a72d7b7aa8</id>
<content type='text'>
- Reduce the number of headers needed for a usb driver, the common case is just   usb.h and usbdi.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Reduce the number of headers needed for a usb driver, the common case is just   usb.h and usbdi.h
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace use of ic-&gt;ic_flags with vap-&gt;iv_flags to operate on per-vap flags</title>
<updated>2009-06-18T11:12:10+00:00</updated>
<author>
<name>Coleman Kane</name>
<email>cokane@FreeBSD.org</email>
</author>
<published>2009-06-18T11:12:10+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=d9cacbcf4f2419d1e52dd4b167f5aee98a776779'/>
<id>d9cacbcf4f2419d1e52dd4b167f5aee98a776779</id>
<content type='text'>
for ndis 802.11 work.

Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
for ndis 802.11 work.

Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>s/usb2_/usb_|usbd_/ on all function names for the USB stack.</title>
<updated>2009-06-15T01:02:43+00:00</updated>
<author>
<name>Andrew Thompson</name>
<email>thompsa@FreeBSD.org</email>
</author>
<published>2009-06-15T01:02:43+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a593f6b8de8b956bd0dd22f74805ede942e3d6a9'/>
<id>a593f6b8de8b956bd0dd22f74805ede942e3d6a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix an LOR</title>
<updated>2009-06-10T18:00:10+00:00</updated>
<author>
<name>Coleman Kane</name>
<email>cokane@FreeBSD.org</email>
</author>
<published>2009-06-10T18:00:10+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=badff0e4d805d7ea38f16d60cad9a7bffb291fd4'/>
<id>badff0e4d805d7ea38f16d60cad9a7bffb291fd4</id>
<content type='text'>
Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
MFC after:	1 week
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Submitted by:	Paul B. Mahol &lt;onemda@gmail.com&gt;
MFC after:	1 week
</pre>
</div>
</content>
</entry>
<entry>
<title>Commit missed driver_info to driver_ivar change in usb_attach_args.</title>
<updated>2009-06-08T19:56:23+00:00</updated>
<author>
<name>Andrew Thompson</name>
<email>thompsa@FreeBSD.org</email>
</author>
<published>2009-06-08T19:56:23+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=5cdee58296e197996a3f9b1f031dcad4b9e1c1eb'/>
<id>5cdee58296e197996a3f9b1f031dcad4b9e1c1eb</id>
<content type='text'>
Pointed out by:	kib
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pointed out by:	kib
</pre>
</div>
</content>
</entry>
<entry>
<title>fix setting of ni_txrate</title>
<updated>2009-06-02T20:32:13+00:00</updated>
<author>
<name>Sam Leffler</name>
<email>sam@FreeBSD.org</email>
</author>
<published>2009-06-02T20:32:13+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e6c312987713e9c1b9ed0d397229fa76ab9a655c'/>
<id>e6c312987713e9c1b9ed0d397229fa76ab9a655c</id>
<content type='text'>
Submitted by:	"Paul B. Mahol" &lt;onemda@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Submitted by:	"Paul B. Mahol" &lt;onemda@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
