summaryrefslogtreecommitdiff
path: root/spinlock.c
blob: 7ab0bbeb41cca23f268e882aa0b0d9614013352c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#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.
#define cprintf dont_use_cprintf

extern int bootstrap;

int
getcallerpc(void *v)
{
	return ((int*)v)[-1];
}

void
acquire(struct spinlock * lock)
{
	if(cpus[cpu()].nlock++ == 0)
		cli();
	while(cmpxchg(0, 1, &lock->locked) == 1)
		;
	cpuid(0, 0, 0, 0, 0);	// memory barrier
	lock->locker_pc = getcallerpc(&lock);
}

void
release(struct spinlock * lock)
{
	cpuid(0, 0, 0, 0, 0);	// memory barrier
	lock->locked = 0;
	if(--cpus[cpu()].nlock == 0 && !bootstrap)
		sti();
}