<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/sys/dev/amd, branch release/5.2.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2004-01-10T05:53:29Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2004-01-10T05:53:29Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2004-01-10T05:53:29Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=58c9ff44c8041f394c663cb9640e9b77fe07bb13'/>
<id>urn:sha1:58c9ff44c8041f394c663cb9640e9b77fe07bb13</id>
<content type='text'>
'RELENG_5_2_0_RELEASE'.

This commit was manufactured to restore the state of the 5.2-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
</entry>
<entry>
<title>Prefer new location of pci include files (which have only been in the</title>
<updated>2003-08-22T05:54:52Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2003-08-22T05:54:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=4fbd232c8640bb1d58dca36e50df7c1c8eb4ca72'/>
<id>urn:sha1:4fbd232c8640bb1d58dca36e50df7c1c8eb4ca72</id>
<content type='text'>
tree for two or more years now), except in a few places where there's
code to be compatible with older versions of FreeBSD.
</content>
</entry>
<entry>
<title>bus_dmamap_create() is no longer optional for non-static dma mappings.  Thanks</title>
<updated>2003-08-11T09:09:10Z</updated>
<author>
<name>Scott Long</name>
<email>scottl@FreeBSD.org</email>
</author>
<published>2003-08-11T09:09:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=9e8559d2c2625fd821ae904b769d2c3a30253b69'/>
<id>urn:sha1:9e8559d2c2625fd821ae904b769d2c3a30253b69</id>
<content type='text'>
to ru@ for testing this.
</content>
</entry>
<entry>
<title>Record the missing module dependency ("amd" on "cam").</title>
<updated>2003-07-31T16:55:44Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2003-07-31T16:55:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=69e4c730376c7789a1f05e654f2eaaf3c4937be9'/>
<id>urn:sha1:69e4c730376c7789a1f05e654f2eaaf3c4937be9</id>
<content type='text'>
Reviewed by:	scottl
</content>
</entry>
<entry>
<title>Mega busdma API commit.</title>
<updated>2003-07-01T15:52:06Z</updated>
<author>
<name>Scott Long</name>
<email>scottl@FreeBSD.org</email>
</author>
<published>2003-07-01T15:52:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=f6b1c44d1f70d5f298b911f2c1dcd802b0d11339'/>
<id>urn:sha1:f6b1c44d1f70d5f298b911f2c1dcd802b0d11339</id>
<content type='text'>
Add two new arguments to bus_dma_tag_create(): lockfunc and lockfuncarg.
Lockfunc allows a driver to provide a function for managing its locking
semantics while using busdma.  At the moment, this is used for the
asynchronous busdma_swi and callback mechanism.  Two lockfunc implementations
are provided: busdma_lock_mutex() performs standard mutex operations on the
mutex that is specified from lockfuncarg.  dftl_lock() is a panic
implementation and is defaulted to when NULL, NULL are passed to
bus_dma_tag_create().  The only time that NULL, NULL should ever be used is
when the driver ensures that bus_dmamap_load() will not be deferred.
Drivers that do not provide their own locking can pass
busdma_lock_mutex,&amp;Giant args in order to preserve the former behaviour.

sparc64 and powerpc do not provide real busdma_swi functions, so this is
largely a noop on those platforms.  The busdma_swi on is64 is not properly
locked yet, so warnings will be emitted on this platform when busdma
callback deferrals happen.

If anyone gets panics or warnings from dflt_lock() being called, please
let me know right away.

Reviewed by:	tmm, gibbs
</content>
</entry>
<entry>
<title>Merge common XPT_CALC_GEOMETRY functions into a single convenience function.</title>
<updated>2003-06-14T22:17:41Z</updated>
<author>
<name>Nate Lawson</name>
<email>njl@FreeBSD.org</email>
</author>
<published>2003-06-14T22:17:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=2813692cc2f54cac20d43ed85039329e9d71ada6'/>
<id>urn:sha1:2813692cc2f54cac20d43ed85039329e9d71ada6</id>
<content type='text'>
Devices below may experience a change in geometry.

* Due to a bug, aic(4) never used extended geometry.  Changes all drives
  &gt;1G to now use extended translation.
* sbp(4) drives exactly 1 GB in size now no longer use extended geometry.
* umass(4) drives exactly 1 GB in size now no longer use extended geometry.

For all other controllers in this commit, this should be a no-op.

Looked over by:	scottl
</content>
</entry>
<entry>
<title>Remove unused variable(s).</title>
<updated>2003-05-31T20:43:17Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2003-05-31T20:43:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=35e1694a4dbe5b31138b9ed1bb9dd23e3aa8d290'/>
<id>urn:sha1:35e1694a4dbe5b31138b9ed1bb9dd23e3aa8d290</id>
<content type='text'>
Add XXX comment where intent is unclear.

Found by:       FlexeLint
</content>
</entry>
<entry>
<title>Bring back bus_dmasync_op_t.  It is now a typedef to an int, though the</title>
<updated>2003-05-27T04:59:59Z</updated>
<author>
<name>Scott Long</name>
<email>scottl@FreeBSD.org</email>
</author>
<published>2003-05-27T04:59:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7e71df93390826733b07b547c105326fc6ba2a74'/>
<id>urn:sha1:7e71df93390826733b07b547c105326fc6ba2a74</id>
<content type='text'>
BUS_DMASYNC_ definitions remain as before.  The does not change the ABI,
and reverts the API to be a bit more compatible and flexible.  This has
survived a full 'make universe'.

Approved by:	re (bmah)
</content>
</entry>
<entry>
<title>I deserve a big pointy hat for having missed all those references</title>
<updated>2003-04-10T23:50:06Z</updated>
<author>
<name>Maxime Henrion</name>
<email>mux@FreeBSD.org</email>
</author>
<published>2003-04-10T23:50:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7a648f56cf84d2445098a8143ac93224be9c408e'/>
<id>urn:sha1:7a648f56cf84d2445098a8143ac93224be9c408e</id>
<content type='text'>
to bus_dmasync_op_t in my last commit.
</content>
</entry>
<entry>
<title>Convert the use of vtophys() for doing autosense to use busdma.  Also correct</title>
<updated>2002-12-14T19:20:57Z</updated>
<author>
<name>Scott Long</name>
<email>scottl@FreeBSD.org</email>
</author>
<published>2002-12-14T19:20:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=2c6a3591f93766e4452f73d4152ab48bec0e0371'/>
<id>urn:sha1:2c6a3591f93766e4452f73d4152ab48bec0e0371</id>
<content type='text'>
some error codes that get returned to CAM.
</content>
</entry>
</feed>
