From f631c1adaeedbc648b393077ec4f305e131ebb05 Mon Sep 17 00:00:00 2001 From: thorpej Date: Wed, 7 Jul 1999 05:32:26 +0000 Subject: [PATCH] Update a comment in uao_flush(). --- sys/uvm/uvm_aobj.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sys/uvm/uvm_aobj.c b/sys/uvm/uvm_aobj.c index d0fe5aaa9a40..776e760c1ff9 100644 --- a/sys/uvm/uvm_aobj.c +++ b/sys/uvm/uvm_aobj.c @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_aobj.c,v 1.20 1999/05/25 00:09:00 thorpej Exp $ */ +/* $NetBSD: uvm_aobj.c,v 1.21 1999/07/07 05:32:26 thorpej Exp $ */ /* * Copyright (c) 1998 Chuck Silvers, Charles D. Cranor and @@ -722,9 +722,13 @@ uao_flush(uobj, start, end, flags) */ /* * XXX - * deal with PGO_DEACTIVATE (for madvise(MADV_SEQUENTIAL)) - * and PGO_FREE (for msync(MSINVALIDATE)) - */ + * Deal with: + * + * PGO_DEACTIVATE for sequential access, via uvm_fault(), and + * for MADV_DONTNEED + * + * PGO_FREE for MADV_FREE and MSINVALIDATE + */ return TRUE; }