diff options
author | gallatin <gallatin@FreeBSD.org> | 2000-10-11 01:01:54 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2000-10-11 01:01:54 +0000 |
commit | 42b028e2b21504ef1a5d1ed91a3a6963ca528099 (patch) | |
tree | 4aa4fce53d19aeb4c6258b5593c9f37432c84b52 | |
parent | 02e5ad12baf178ba230b46a58f74e6d2ef5738af (diff) | |
download | FreeBSD-src-42b028e2b21504ef1a5d1ed91a3a6963ca528099.zip FreeBSD-src-42b028e2b21504ef1a5d1ed91a3a6963ca528099.tar.gz |
kmem transfers were being double-counted due to a missing continue.
This silences the dreaded "swapinfo:cannot read blmeta_t" messages at boot.
I'm really suprised there were no PRs open about this...
-rw-r--r-- | sys/alpha/alpha/mem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/alpha/alpha/mem.c b/sys/alpha/alpha/mem.c index caebb4f..9bd09e0 100644 --- a/sys/alpha/alpha/mem.c +++ b/sys/alpha/alpha/mem.c @@ -203,6 +203,7 @@ kmemphys: VM_PROT_READ : VM_PROT_WRITE)) return (EFAULT); error = uiomove((caddr_t)v, c, uio); + continue; } if (error) |