[Bug 252227] Default value of vm.max_wired is too low in 12.2

2023-06-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 --- Comment #6 from Vladimir Druzenko --- As a workaround: added entry in pkg-message in "Troubleshooting" about "VERR_NO_MEMORY" in ports emulators/virtualbox-ose{,-legacy}. -- You are receiving this mail because: You are the assignee fo

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2023-06-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 Vladimir Druzenko changed: What|Removed |Added See Also||https://reviews.freebsd.org

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 --- Comment #5 from VVD --- https://cgit.freebsd.org/src/commit/sys/vm/vm_pageout.c?id=54a3a1142189f60edfbbdfb0e1f4085e2d30c115 https://cgit.freebsd.org/src/commit/sys/vm/vm_pageout.c?id=97458520cc15b26edbf5d5cd5ed54c3253dfa21c -- You are

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 VVD changed: What|Removed |Added See Also||https://reviews.freebsd.org

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 --- Comment #4 from VVD --- (In reply to VVD from comment #3) Fast fix. 1GB max reserved from wired ram: -vm_page_max_user_wired = 4 * freecount / 5; +vm_page_max_user_wired = freecount - min(freecount, 5 * 1024 * 1024 * 1024 / PAGE_SIZE)

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 --- Comment #3 from VVD --- 1GB max reserved from wired ram: -vm_page_max_user_wired = 4 * freecount / 5; +vm_page_max_user_wired = freecount - min(freecount, 5 * 1048576 / PAGE_SIZE) / 5; -- You are receiving this mail because: You are t

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-20 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 Kyle Evans changed: What|Removed |Added CC||kev...@freebsd.org,

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2021-01-19 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 VVD changed: What|Removed |Added CC||k...@freebsd.org, |

[Bug 252227] Default value of vm.max_wired is too low in 12.2

2020-12-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=252227 Bug ID: 252227 Summary: Default value of vm.max_wired is too low in 12.2 Product: Base System Version: 12.2-RELEASE Hardware: amd64 OS: Any Status: New