<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test/sys/dev/awi/awi_wicfg.c, branch main</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test/atom?h=main</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/'/>
<updated>2004-01-15T10:04:21Z</updated>
<entry>
<title>Use generic net80211 framework for awi driver.</title>
<updated>2004-01-15T10:04:21Z</updated>
<author>
<name>Atsushi Onoe</name>
<email>onoe@FreeBSD.org</email>
</author>
<published>2004-01-15T10:04:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=d148e81e76fda3dc7f606d21a9633685fb48bd26'/>
<id>urn:sha1:d148e81e76fda3dc7f606d21a9633685fb48bd26</id>
<content type='text'>
Restore awi to be workable again; it was broken..
XXX: The initialization is still unreliable yet, it sometimes fails on
     some card.
</content>
</entry>
<entry>
<title>Use __FBSDID().</title>
<updated>2003-08-24T17:55:58Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2003-08-24T17:55:58Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1'/>
<id>urn:sha1:aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1</id>
<content type='text'>
Also some minor style cleanups.
</content>
</entry>
<entry>
<title>update for new 802.11 support</title>
<updated>2003-06-28T06:17:26Z</updated>
<author>
<name>Sam Leffler</name>
<email>sam@FreeBSD.org</email>
</author>
<published>2003-06-28T06:17:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=2c71d3c7952ae128cde006655405e61c108fda6f'/>
<id>urn:sha1:2c71d3c7952ae128cde006655405e61c108fda6f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make this build on 4.x machines again (building a -current kernel on a</title>
<updated>2002-04-19T22:28:09Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2002-04-19T22:28:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=6d3ffec0e5f07edf56ed8f69bad7fe351e77665d'/>
<id>urn:sha1:6d3ffec0e5f07edf56ed8f69bad7fe351e77665d</id>
<content type='text'>
-stable machine via the old-school methods):

Use __FreeBSD_version in preference to __FreeBSD__ &gt;= N where possible.
Define a single variable mythread which is set to curproc or curthread
depending on the OS version (with a comment saying it is a white lie on
4.x since it really is a proc).

NB: __FreeBSD__ is the OS level of the host machine, not the target,
and should never be used, if possible, as __FreeBSD__ &gt;= N.
</content>
</entry>
<entry>
<title>Change the suser() API to take advantage of td_ucred as well as do a</title>
<updated>2002-04-01T21:31:13Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2002-04-01T21:31:13Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=44731cab3b9966b7ca67f3fe50e7f3c711533730'/>
<id>urn:sha1:44731cab3b9966b7ca67f3fe50e7f3c711533730</id>
<content type='text'>
general cleanup of the API.  The entire API now consists of two functions
similar to the pre-KSE API.  The suser() function takes a thread pointer
as its only argument.  The td_ucred member of this thread must be valid
so the only valid thread pointers are curthread and a few kernel threads
such as thread0.  The suser_cred() function takes a pointer to a struct
ucred as its first argument and an integer flag as its second argument.
The flag is currently only used for the PRISON_ROOT flag.

Discussed on:	smp@
</content>
</entry>
<entry>
<title>Remove __P.</title>
<updated>2002-03-20T02:08:01Z</updated>
<author>
<name>Alfred Perlstein</name>
<email>alfred@FreeBSD.org</email>
</author>
<published>2002-03-20T02:08:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=e51a25f8505c7f9c6684c928bb59b0bda2fc039b'/>
<id>urn:sha1:e51a25f8505c7f9c6684c928bb59b0bda2fc039b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>KSE Milestone 2</title>
<updated>2001-09-12T08:38:13Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>2001-09-12T08:38:13Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=b40ce4165d5eb3a5de1515245055350ae3dbab8e'/>
<id>urn:sha1:b40ce4165d5eb3a5de1515245055350ae3dbab8e</id>
<content type='text'>
Note ALL MODULES MUST BE RECOMPILED
make the kernel aware that there are smaller units of scheduling than the
process. (but only allow one thread per process at this time).
This is functionally equivalent to teh previousl -current except
that there is a thread associated with each process.

Sorry john! (your next MFC will be a doosie!)

Reviewed by: peter@freebsd.org, dillon@freebsd.org

X-MFC after:    ha ha ha ha
</content>
</entry>
<entry>
<title>Note new location of if_wavelan_ieee.h.</title>
<updated>2001-01-09T04:23:05Z</updated>
<author>
<name>Garrett Wollman</name>
<email>wollman@FreeBSD.org</email>
</author>
<published>2001-01-09T04:23:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=9935405bd29ff5c07506a26334101bad03e46bf4'/>
<id>urn:sha1:9935405bd29ff5c07506a26334101bad03e46bf4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move suser() and suser_xxx() prototypes and a related #define from</title>
<updated>2000-10-29T16:06:56Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2000-10-29T16:06:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=cf9fa8e72541441be08abdd3a8475449da7d7995'/>
<id>urn:sha1:cf9fa8e72541441be08abdd3a8475449da7d7995</id>
<content type='text'>
&lt;sys/proc.h&gt; to &lt;sys/systm.h&gt;.

Correctly document the #includes needed in the manpage.

Add one now needed #include of &lt;sys/systm.h&gt;.
Remove the consequent 48 unused #includes of &lt;sys/proc.h&gt;.
</content>
</entry>
<entry>
<title>Remove unneeded #include &lt;machine/clock.h&gt;</title>
<updated>2000-10-15T14:19:01Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2000-10-15T14:19:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=db7e3af11198d19592e7e6ef827f4817e823d450'/>
<id>urn:sha1:db7e3af11198d19592e7e6ef827f4817e823d450</id>
<content type='text'>
</content>
</entry>
</feed>
