Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Feb 18, 2024
1 parent ff9480a commit bbb4e12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unified-scheduler-logic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,8 @@ impl SchedulingStateMachine {
};
match lock_status {
LockResult::Ok(PageUsage::Unused) => unreachable!(),
LockResult::Ok(usage) => {
page.usage = usage;
LockResult::Ok(new_usage) => {
page.usage = new_usage;
}
LockResult::Err(()) => {
blocked_page_count.increment_self();
Expand Down

0 comments on commit bbb4e12

Please sign in to comment.