Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/uebayasi-xip]: src/sys/miscfs/genfs s/PG_DIRECT/PG_XIP/



details:   https://anonhg.NetBSD.org/src/rev/8877364dafd2
branches:  uebayasi-xip
changeset: 751745:8877364dafd2
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Thu Jul 15 14:13:11 2010 +0000

description:
s/PG_DIRECT/PG_XIP/

diffstat:

 sys/miscfs/genfs/genfs_io.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 22b8aecba269 -r 8877364dafd2 sys/miscfs/genfs/genfs_io.c
--- a/sys/miscfs/genfs/genfs_io.c       Thu Jul 15 08:33:46 2010 +0000
+++ b/sys/miscfs/genfs/genfs_io.c       Thu Jul 15 14:13:11 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: genfs_io.c,v 1.36.2.15 2010/07/12 06:25:15 uebayasi Exp $      */
+/*     $NetBSD: genfs_io.c,v 1.36.2.16 2010/07/15 14:13:11 uebayasi Exp $      */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: genfs_io.c,v 1.36.2.15 2010/07/12 06:25:15 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: genfs_io.c,v 1.36.2.16 2010/07/15 14:13:11 uebayasi Exp $");
 
 #include "opt_xip.h"
 
@@ -876,7 +876,7 @@
                        KASSERT((pg->flags & PG_BUSY) == 0);
                        KASSERT((pg->flags & PG_RDONLY) != 0);
                        KASSERT((pg->flags & PG_CLEAN) != 0);
-                       KASSERT((pg->flags & PG_DIRECT) != 0);
+                       KASSERT((pg->flags & PG_XIP) != 0);
                        pg->flags |= PG_BUSY;
                        pg->flags &= ~PG_FAKE;
                        pg->uobject = &vp->v_uobj;



Home | Main Index | Thread Index | Old Index