xv6-cs450/spinlock.c

71 lines
1.2 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"
extern int use_console_lock;
void
initlock(struct spinlock *lock, char *name)
{
lock->name = name;
lock->locked = 0;
lock->cpu = 0xffffffff;
}
void
getcallerpcs(void *v, uint pcs[])
{
uint *ebp = (uint*)v - 2;
int i;
2006-09-06 21:08:14 +02:00
for(i = 0; i < 10; i++){
if(ebp == 0 || ebp == (uint*)0xffffffff)
break;
pcs[i] = ebp[1]; // saved %eip
ebp = (uint*)ebp[0]; // saved %ebp
}
2006-09-06 21:08:14 +02:00
for(; i < 10; i++)
pcs[i] = 0;
2006-07-11 03:07:40 +02:00
}
void
2006-09-06 19:27:19 +02:00
acquire(struct spinlock *lock)
{
if(holding(lock))
panic("acquire");
2006-07-17 07:00:25 +02:00
if(cpus[cpu()].nlock == 0)
cli();
cpus[cpu()].nlock++;
2006-09-06 19:27:19 +02:00
while(cmpxchg(0, 1, &lock->locked) == 1)
;
cpuid(0, 0, 0, 0, 0); // memory barrier
getcallerpcs(&lock, lock->pcs);
lock->cpu = cpu() + 10;
}
void
2006-09-06 19:27:19 +02:00
release(struct spinlock *lock)
{
if(!holding(lock))
panic("release");
2006-07-17 07:00:25 +02:00
lock->pcs[0] = 0;
lock->cpu = 0xffffffff;
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() + 10;
2006-07-17 07:00:25 +02:00
}