<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/powerpc, branch release/13.4.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F13.4.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F13.4.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2024-06-06T15:54:35Z</updated>
<entry>
<title>Adjust comments referencing vm_mem_init()</title>
<updated>2024-06-06T15:54:35Z</updated>
<author>
<name>Mitchell Horne</name>
<email>mhorne@FreeBSD.org</email>
</author>
<published>2024-05-27T21:37:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8490d5ec8e0e642de1cf8d1ed474bdd45edb7dbc'/>
<id>urn:sha1:8490d5ec8e0e642de1cf8d1ed474bdd45edb7dbc</id>
<content type='text'>
I cannot find a time where the function was not named this.

Reviewed by:	kib, markj
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D45383

(cherry picked from commit deab57178f0b06eab56d7811674176985a8ea98d)
</content>
</entry>
<entry>
<title>identcpu: Let the hw.model be readable in capability mode</title>
<updated>2024-01-11T14:33:16Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2024-01-04T13:26:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=337b2a037299915af419723fc57d7d6d46bd5e1e'/>
<id>urn:sha1:337b2a037299915af419723fc57d7d6d46bd5e1e</id>
<content type='text'>
On some platforms this static information can be derived directly from
the CPU, and there doesn't seem much use in restricting it.

Reviewed by:	emaste, imp, kib
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D43281

(cherry picked from commit 0aba5dd2af57ea3ae90eb49d7745c4c5b6f0ab6b)
</content>
</entry>
<entry>
<title>sys/*/conf/*, docs: fix links to handbook</title>
<updated>2024-01-10T03:07:46Z</updated>
<author>
<name>Ceri Davies</name>
<email>ceri@FreeBSD.org</email>
</author>
<published>2021-05-20T08:26:02Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=677a7402cea46eb253a241b443471ab072e2b6a7'/>
<id>urn:sha1:677a7402cea46eb253a241b443471ab072e2b6a7</id>
<content type='text'>
While here, fix all links to older en_US.ISO8859-1 documentation
in the src/ tree.

PR:             255026
Reported by:    Michael Büker &lt;freebsd@michael-bueker.de&gt;
Reviewed by:    dbaio
Differential Revision: https://reviews.freebsd.org/D30265

(cherry picked from commit c1a148873d6488f1dac1cfb207a5927cef89888e)
</content>
</entry>
<entry>
<title>powerpc: Avoid ignoring copyin()'s return value</title>
<updated>2024-01-02T01:12:45Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2023-12-26T01:40:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=76ecdbce7703d5a7bae90d53cb612a496c87c261'/>
<id>urn:sha1:76ecdbce7703d5a7bae90d53cb612a496c87c261</id>
<content type='text'>
A recent change made it possible for cpu_set_upcall() to return an
error.  Do that here instead of ignoring an error from copyin().

Reviewed by:	jhibbits
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D43105

(cherry picked from commit bdf03b4bcc4a9aa0be503dbc64415e6b0b845fbc)
</content>
</entry>
<entry>
<title>thread: Add a return value to cpu_set_upcall()</title>
<updated>2024-01-02T01:12:45Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2023-12-26T01:39:39Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=bcced8754840857be3fe86540de796db4832fe5b'/>
<id>urn:sha1:bcced8754840857be3fe86540de796db4832fe5b</id>
<content type='text'>
Some implementations copy data to userspace, an operation which can in
principle fail.  In preparation for adding a __result_use_check
annotation to copyin() and related functions, let implementations of
cpu_set_upcall() return an error, and check for errors when copying data
to user memory.

Reviewed by:	kib, jhb
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D43100

(cherry picked from commit 7b68fb5ab2a276ccd081cc1a43cebf0fb315e952)
</content>
</entry>
<entry>
<title>busdma: emit a warning for use of filters</title>
<updated>2023-12-07T00:22:19Z</updated>
<author>
<name>Mitchell Horne</name>
<email>mhorne@FreeBSD.org</email>
</author>
<published>2023-12-04T15:46:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7fd0973775aa9a293739afa0c5068f77ba88cb17'/>
<id>urn:sha1:7fd0973775aa9a293739afa0c5068f77ba88cb17</id>
<content type='text'>
Filter functions are deprecated, and unused in the tree. If either of
the filter or filterarg arguments to bus_dma_tag_create() are non-NULL,
print a warning.

This is a direct commit to stable/13.

Reviewed by:	jhb
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D42897
</content>
</entry>
<entry>
<title>Add cpu_sync_core()</title>
<updated>2023-10-26T04:07:29Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2021-10-07T21:57:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ef71fbf692af963b1a4fa072e88d0d1256f1f897'/>
<id>urn:sha1:ef71fbf692af963b1a4fa072e88d0d1256f1f897</id>
<content type='text'>
(cherry picked from commit 74ccb8ecf6c115a79f008bc32d4981f1126b63a8)
</content>
</entry>
<entry>
<title>add pmap_active_cpus()</title>
<updated>2023-10-26T04:07:29Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2021-10-07T22:25:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=27272d3d97c8e363e3f454f1de3b1be307c8a033'/>
<id>urn:sha1:27272d3d97c8e363e3f454f1de3b1be307c8a033</id>
<content type='text'>
(cherry picked from commit 8882b7852acf2588d87ccb6d4c6bf7694511fc56)
</content>
</entry>
<entry>
<title>uiomove: Add some assertions</title>
<updated>2023-10-24T13:18:54Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2023-10-16T20:12:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=eb8923452e1e4071d06c28322e19f544844378ba'/>
<id>urn:sha1:eb8923452e1e4071d06c28322e19f544844378ba</id>
<content type='text'>
Make sure that we don't try to copy with a negative resid.

Make sure that we don't walk off the end of the iovec array.

Reviewed by:	kib
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D42098

(cherry picked from commit 8fd0ec53deaad34383d4b344714b74d67105b258)
</content>
</entry>
<entry>
<title>pmap: Prefer consistent naming for loader tunable</title>
<updated>2023-10-23T10:15:12Z</updated>
<author>
<name>Zhenlei Huang</name>
<email>zlei@FreeBSD.org</email>
</author>
<published>2023-10-19T17:00:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=16afc2a4d9c581064aa32babc29c748ccd59863c'/>
<id>urn:sha1:16afc2a4d9c581064aa32babc29c748ccd59863c</id>
<content type='text'>
The sysctl knob 'vm.pmap.pv_entry_max' becomes a loader tunable since
7ff48af7040f (Allow a specific setting for pv entries) but is fetched
from system environment 'vm.pmap.pv_entries'. That is inconsistent and
obscure.

This reverts 36e1b9702e21 (Correct the tunable name in the message).

PR:		231577
Reviewed by:	jhibbits, alc, kib
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D42274

(cherry picked from commit 02320f64209563e35fa371fc5eac94067f688f7f)
(cherry picked from commit e53f8ca323e8e563d4b55883fc3544bea75aab29)
</content>
</entry>
</feed>
