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:
committed by
waddlesplash
parent
dcf4948bff
commit
2b9d1bb9c2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user