summaryrefslogtreecommitdiff
path: root/kern/llsync.h
diff options
context:
space:
mode:
Diffstat (limited to 'kern/llsync.h')
-rw-r--r--kern/llsync.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/llsync.h b/kern/llsync.h
index 273346fb..c58030d0 100644
--- a/kern/llsync.h
+++ b/kern/llsync.h
@@ -90,7 +90,7 @@ llsync_read_unlock(void)
static inline void
llsync_reset_checkpoint(unsigned int cpu)
{
- llsync_cpu_checkpoints[cpu].checked = 0;
+ llsync_cpus[cpu].checked = 0;
}
/*
@@ -101,7 +101,7 @@ llsync_reset_checkpoint(unsigned int cpu)
static inline void
llsync_checkin(unsigned int cpu)
{
- llsync_cpu_checkpoints[cpu].checked = 1;
+ llsync_cpus[cpu].checked = 1;
}
/*