Module Name:    src
Committed By:   hannken
Date:           Wed Apr 27 09:47:25 UTC 2011

Modified Files:
        src/sys/sys: buf.h

Log Message:
Remove no longer needed flag BC_SCANNED /* Block already pushed during sync */.


To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 src/sys/sys/buf.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/buf.h
diff -u src/sys/sys/buf.h:1.115 src/sys/sys/buf.h:1.116
--- src/sys/sys/buf.h:1.115	Wed Nov 11 09:15:42 2009
+++ src/sys/sys/buf.h	Wed Apr 27 09:47:25 2011
@@ -1,4 +1,4 @@
-/*     $NetBSD: buf.h,v 1.115 2009/11/11 09:15:42 rmind Exp $ */
+/*     $NetBSD: buf.h,v 1.116 2011/04/27 09:47:25 hannken Exp $ */
 
 /*-
  * Copyright (c) 1999, 2000, 2007, 2008 The NetBSD Foundation, Inc.
@@ -162,7 +162,6 @@
  */
 #define	BC_AGE		0x00000001	/* Move to age queue when I/O done. */
 #define	BC_BUSY		0x00000010	/* I/O in progress. */
-#define BC_SCANNED	0x00000020	/* Block already pushed during sync */
 #define	BC_INVAL	0x00002000	/* Does not contain valid info. */
 #define	BC_NOCACHE	0x00008000	/* Do not cache block after use. */
 #define	BC_WANTED	0x00800000	/* Process wants this buffer. */
@@ -188,7 +187,7 @@
 #define	B_DEVPRIVATE	0x02000000	/* Device driver private flag. */
 
 #define BUF_FLAGBITS \
-    "\20\1AGE\3ASYNC\4BAD\5BUSY\6SCANNED\10DELWRI" \
+    "\20\1AGE\3ASYNC\4BAD\5BUSY\10DELWRI" \
     "\12DONE\13COWDONE\15GATHERED\16INVAL\17LOCKED\20NOCACHE" \
     "\23PHYS\24RAW\25READ\32DEVPRIVATE\33VFLUSH"
 

Reply via email to