xv6-cs450/spinlock.c

44 lines
924 B
C
Raw Normal View History

#include "types.h"
#include "defs.h"
#include "x86.h"
#include "mmu.h"
#define LOCK_FREE -1
uint32_t kernel_lock = LOCK_FREE;
// lock = LOCK_FREE if free, else = cpu_id of owner CPU
void
acquire_spinlock(uint32_t* lock)
{
2006-06-22 22:47:23 +02:00
int cpu_id = cpu();
if (*lock == cpu_id)
return;
write_eflags(read_eflags() & ~FL_IF);
while ( cmpxchg(LOCK_FREE, cpu_id, lock) != cpu_id ) { ; }
2006-06-26 17:11:19 +02:00
// cprintf ("acquired: %d\n", cpu_id);
}
void
release_spinlock(uint32_t* lock)
{
2006-06-22 22:47:23 +02:00
int cpu_id = cpu();
2006-06-26 17:11:19 +02:00
// cprintf ("release: %d\n", cpu_id);
if (*lock != cpu_id)
panic("release_spinlock: releasing a lock that i don't own\n");
*lock = LOCK_FREE;
write_eflags(read_eflags() | FL_IF);
}
void
release_grant_spinlock(uint32_t* lock, int c)
{
2006-06-22 22:47:23 +02:00
int cpu_id = cpu();
2006-06-26 17:11:19 +02:00
// cprintf ("release_grant: %d -> %d\n", cpu_id, c);
if (*lock != cpu_id)
panic("release_spinlock: releasing a lock that i don't own\n");
*lock = c;
}