kernel/vm: Rename vm_page::busy_writing to busy_io.

This way, it's clear that it can be used for more than just writing.

Change-Id: Ifd0928f0e8ec7b5eeb312795ceaae6e3fd266257
Reviewed-on: https://review.haiku-os.org/c/haiku/+/10590
Tested-by: Commit checker robot <[email protected]>
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Augustin Cavalier
2026-03-30 22:11:53 +00:00
committed by waddlesplash
parent dcf4948bff
commit 2b9d1bb9c2
3 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -146,7 +146,7 @@ private:
uint8 state : 3;
public:
bool busy : 1;
bool busy_writing : 1;
bool busy_io : 1;
bool accessed : 1;
bool modified : 1;
uint8 _unused : 1;
@@ -207,7 +207,7 @@ vm_page::Init(page_num_t pageNumber)
SetCacheRef(NULL);
InitState(PAGE_STATE_FREE);
busy = busy_writing = false;
busy = busy_io = false;
accessed = modified = false;
_unused = 0;
usage_count = 0;