diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-03-29 02:09:49 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-03-29 02:09:49 +0200 |
commit | e6b30b287c4386075ee045327c2c28474ae11cfe (patch) | |
tree | f763d026e856c58531eb65af53054761ce62ba86 | |
parent | ce00c68059d50ccaeb87fb85b03d60c5d0889456 (diff) | |
download | plan9front-e6b30b287c4386075ee045327c2c28474ae11cfe.tar.xz |
kernel: fix procflushmmu()
fix bug introduced in previous change for zynq, broke
procflushseg() function only flushing the first proc
matching the segment.
-rw-r--r-- | sys/src/9/port/proc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/src/9/port/proc.c b/sys/src/9/port/proc.c index 170548977..5d723e8f5 100644 --- a/sys/src/9/port/proc.c +++ b/sys/src/9/port/proc.c @@ -1343,7 +1343,6 @@ procflushmmu(int (*match)(Proc*, void*), void *a) nwait++; } } - break; } } |