xv6-cs450/spinlock.c

59 lines
1 KiB
C
Raw Normal View History

#include "types.h"
#include "defs.h"
#include "x86.h"
#include "mmu.h"
#include "param.h"
#include "proc.h"
#include "spinlock.h"
// Can't call cprintf from inside these routines,
// because cprintf uses them itself.
2006-07-29 11:35:02 +02:00
//#define cprintf dont_use_cprintf
extern int use_console_lock;
int
getcallerpc(void *v)
{
return ((int*)v)[-1];
2006-07-11 03:07:40 +02:00
}
void
2006-07-16 17:38:13 +02:00
acquire(struct spinlock * lock)
{
2006-07-29 11:35:02 +02:00
if(holding(lock)){
extern use_console_lock;
use_console_lock = 0;
cprintf("lock %s pc %x\n", lock->name ? lock->name : "", lock->pc);
2006-07-17 07:00:25 +02:00
panic("acquire");
2006-07-29 11:35:02 +02:00
}
2006-07-17 07:00:25 +02:00
if(cpus[cpu()].nlock++ == 0)
cli();
while(cmpxchg(0, 1, &lock->locked) == 1)
;
cpuid(0, 0, 0, 0, 0); // memory barrier
2006-07-17 07:00:25 +02:00
lock->pc = getcallerpc(&lock);
lock->cpu = cpu();
2006-07-29 11:35:02 +02:00
cpus[cpu()].lastacquire = lock;
}
void
2006-07-16 17:38:13 +02:00
release(struct spinlock * lock)
{
2006-07-17 07:00:25 +02:00
if(!holding(lock))
panic("release");
2006-07-29 11:35:02 +02:00
cpus[cpu()].lastrelease = lock;
cpuid(0, 0, 0, 0, 0); // memory barrier
lock->locked = 0;
if(--cpus[cpu()].nlock == 0)
sti();
}
2006-07-17 07:00:25 +02:00
int
holding(struct spinlock *lock)
{
return lock->locked && lock->cpu == cpu();
}