Page MenuHomeFreeBSD

vm_reserv_reclaim_contig: Return NULL not false
ClosedPublic

Authored by minsoochoo0122_proton.me on Apr 7 2024, 5:44 AM.
Referenced Files
Unknown Object (File)
Sat, Jan 25, 4:05 AM
Unknown Object (File)
Fri, Jan 24, 5:56 PM
Unknown Object (File)
Wed, Jan 22, 11:18 PM
Unknown Object (File)
Tue, Jan 21, 8:53 PM
Unknown Object (File)
Sun, Jan 5, 7:33 PM
Unknown Object (File)
Dec 4 2024, 10:52 AM
Unknown Object (File)
Nov 17 2024, 9:12 PM
Unknown Object (File)
Nov 17 2024, 8:35 PM

Details

Summary

Since vm_page_t is a typedef of a pointer to struct vm_page, returning
false is undefined.

Test Plan

make buildkernel

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 56953
Build 53841: arc lint + arc unit

Event Timeline

I'm not completely familar with FreeBSD's virtual memory system. But it seems the comment still doesn't match the code. Doesn't it return m_ret when the reclaim is successful and null when failed?

zlei added a subscriber: zlei.

Looks good to me.

sys/vm/vm_reserv.c
1195

English is not my tone but it sounds 'or' is more appropriate.

1197

The return type was changed from bool to vm_page_t by commit 0d5fac287294 (vm: alloc pages from reserv before breaking it) but the comments are left unchanged.

This revision is now accepted and ready to land.Apr 10 2024, 8:56 AM