summaryrefslogtreecommitdiff
path: root/sys/vm/vm_glue.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm/vm_glue.c')
-rw-r--r--sys/vm/vm_glue.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c
index 1edd45ca25cc..e211e5d7d6e4 100644
--- a/sys/vm/vm_glue.c
+++ b/sys/vm/vm_glue.c
@@ -513,14 +513,16 @@ void
faultin(p)
struct proc *p;
{
- struct thread *td;
+#ifdef NO_SWAPPING
- GIANT_REQUIRED;
PROC_LOCK_ASSERT(p, MA_OWNED);
-#ifdef NO_SWAPPING
if ((p->p_sflag & PS_INMEM) == 0)
panic("faultin: proc swapped out with NO_SWAPPING!");
-#else
+#else /* !NO_SWAPPING */
+ struct thread *td;
+
+ GIANT_REQUIRED;
+ PROC_LOCK_ASSERT(p, MA_OWNED);
/*
* If another process is swapping in this process,
* just wait until it finishes.
@@ -558,7 +560,7 @@ faultin(p)
/* Allow other threads to swap p out now. */
--p->p_lock;
}
-#endif
+#endif /* NO_SWAPPING */
}
/*