aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_object.h
diff options
context:
space:
mode:
authorJeff Roberson <jeff@FreeBSD.org>2019-10-15 03:48:22 +0000
committerJeff Roberson <jeff@FreeBSD.org>2019-10-15 03:48:22 +0000
commitfff5403f848ff847aa6bee1155bdc4f99c9053de (patch)
treebe6cabac940e8d38a337a62c65aaa25dec7453d7 /sys/vm/vm_object.h
parent0012f373e43db2341c20329163ed2d5ad3b0f341 (diff)
downloadsrc-fff5403f848ff847aa6bee1155bdc4f99c9053de.tar.gz
src-fff5403f848ff847aa6bee1155bdc4f99c9053de.zip
(5/6) Move the VPO_NOSYNC to PGA_NOSYNC to eliminate the dependency on the
object lock in vm_page_set_validclean(). Reviewed by: kib, markj Tested by: pho Sponsored by: Netflix, Intel Differential Revision: https://reviews.freebsd.org/D21595
Notes
Notes: svn path=/head/; revision=353540
Diffstat (limited to 'sys/vm/vm_object.h')
-rw-r--r--sys/vm/vm_object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h
index ab56d8da34d1..f5aac8bb74a6 100644
--- a/sys/vm/vm_object.h
+++ b/sys/vm/vm_object.h
@@ -209,7 +209,7 @@ struct vm_object {
#define OBJPC_SYNC 0x1 /* sync I/O */
#define OBJPC_INVAL 0x2 /* invalidate */
-#define OBJPC_NOSYNC 0x4 /* skip if VPO_NOSYNC */
+#define OBJPC_NOSYNC 0x4 /* skip if PGA_NOSYNC */
/*
* The following options are supported by vm_object_page_remove().