Commit f9066fe1 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: more reliable preemption

Currently it's possible that a goroutine
that periodically executes non-blocking
cgo/syscalls is never preempted.
This change splits scheduler and syscall
ticks to prevent such situation.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/12658045
parent cc4e6aad
...@@ -1085,7 +1085,7 @@ execute(G *gp) ...@@ -1085,7 +1085,7 @@ execute(G *gp)
gp->status = Grunning; gp->status = Grunning;
gp->preempt = false; gp->preempt = false;
gp->stackguard0 = gp->stackguard; gp->stackguard0 = gp->stackguard;
m->p->tick++; m->p->schedtick++;
m->curg = gp; m->curg = gp;
gp->m = m; gp->m = m;
...@@ -1272,7 +1272,7 @@ top: ...@@ -1272,7 +1272,7 @@ top:
// Check the global runnable queue once in a while to ensure fairness. // Check the global runnable queue once in a while to ensure fairness.
// Otherwise two goroutines can completely occupy the local runqueue // Otherwise two goroutines can completely occupy the local runqueue
// by constantly respawning each other. // by constantly respawning each other.
tick = m->p->tick; tick = m->p->schedtick;
// This is a fancy way to say tick%61==0, // This is a fancy way to say tick%61==0,
// it uses 2 MUL instructions instead of a single DIV and so is faster on modern processors. // it uses 2 MUL instructions instead of a single DIV and so is faster on modern processors.
if(tick - (((uint64)tick*0x4325c53fu)>>36)*61 == 0 && runtime·sched.runqsize > 0) { if(tick - (((uint64)tick*0x4325c53fu)>>36)*61 == 0 && runtime·sched.runqsize > 0) {
...@@ -1440,7 +1440,6 @@ void ...@@ -1440,7 +1440,6 @@ void
} }
m->mcache = nil; m->mcache = nil;
m->p->tick++;
m->p->m = nil; m->p->m = nil;
runtime·atomicstore(&m->p->status, Psyscall); runtime·atomicstore(&m->p->status, Psyscall);
if(runtime·gcwaiting) { if(runtime·gcwaiting) {
...@@ -1509,7 +1508,7 @@ runtime·exitsyscall(void) ...@@ -1509,7 +1508,7 @@ runtime·exitsyscall(void)
if(exitsyscallfast()) { if(exitsyscallfast()) {
// There's a cpu for us, so we can run. // There's a cpu for us, so we can run.
m->p->tick++; m->p->syscalltick++;
g->status = Grunning; g->status = Grunning;
// Garbage collector isn't running (since we are), // Garbage collector isn't running (since we are),
// so okay to clear gcstack and gcsp. // so okay to clear gcstack and gcsp.
...@@ -1539,6 +1538,7 @@ runtime·exitsyscall(void) ...@@ -1539,6 +1538,7 @@ runtime·exitsyscall(void)
// is not running. // is not running.
g->syscallstack = (uintptr)nil; g->syscallstack = (uintptr)nil;
g->syscallsp = (uintptr)nil; g->syscallsp = (uintptr)nil;
m->p->syscalltick++;
} }
#pragma textflag NOSPLIT #pragma textflag NOSPLIT
...@@ -2282,8 +2282,10 @@ sysmon(void) ...@@ -2282,8 +2282,10 @@ sysmon(void)
typedef struct Pdesc Pdesc; typedef struct Pdesc Pdesc;
struct Pdesc struct Pdesc
{ {
uint32 tick; uint32 schedtick;
int64 when; int64 schedwhen;
uint32 syscalltick;
int64 syscallwhen;
}; };
static Pdesc pdesc[MaxGomaxprocs]; static Pdesc pdesc[MaxGomaxprocs];
...@@ -2300,17 +2302,17 @@ retake(int64 now) ...@@ -2300,17 +2302,17 @@ retake(int64 now)
p = runtime·allp[i]; p = runtime·allp[i];
if(p==nil) if(p==nil)
continue; continue;
t = p->tick;
pd = &pdesc[i]; pd = &pdesc[i];
if(pd->tick != t) {
pd->tick = t;
pd->when = now;
continue;
}
s = p->status; s = p->status;
if(s == Psyscall) { if(s == Psyscall) {
// Retake P from syscall if it's there for more than 1 sysmon tick (20us). // Retake P from syscall if it's there for more than 1 sysmon tick (20us).
// But only if there is other work to do. // But only if there is other work to do.
t = p->syscalltick;
if(pd->syscalltick != t) {
pd->syscalltick = t;
pd->syscallwhen = now;
continue;
}
if(p->runqhead == p->runqtail && if(p->runqhead == p->runqtail &&
runtime·atomicload(&runtime·sched.nmspinning) + runtime·atomicload(&runtime·sched.npidle) > 0) runtime·atomicload(&runtime·sched.nmspinning) + runtime·atomicload(&runtime·sched.npidle) > 0)
continue; continue;
...@@ -2326,7 +2328,13 @@ retake(int64 now) ...@@ -2326,7 +2328,13 @@ retake(int64 now)
incidlelocked(1); incidlelocked(1);
} else if(s == Prunning) { } else if(s == Prunning) {
// Preempt G if it's running for more than 10ms. // Preempt G if it's running for more than 10ms.
if(pd->when + 10*1000*1000 > now) t = p->schedtick;
if(pd->schedtick != t) {
pd->schedtick = t;
pd->schedwhen = now;
continue;
}
if(pd->schedwhen + 10*1000*1000 > now)
continue; continue;
preemptone(p); preemptone(p);
} }
......
...@@ -361,9 +361,10 @@ struct P ...@@ -361,9 +361,10 @@ struct P
{ {
Lock; Lock;
uint32 status; // one of Pidle/Prunning/... uint32 status; // one of Pidle/Prunning/...
P* link; P* link;
uint32 tick; // incremented on every scheduler or system call uint32 schedtick; // incremented on every scheduler call
uint32 syscalltick; // incremented on every system call
M* m; // back-link to associated M (nil if idle) M* m; // back-link to associated M (nil if idle)
MCache* mcache; MCache* mcache;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment