summaryrefslogtreecommitdiff
path: root/usr/src/boot/lib
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/boot/lib')
-rw-r--r--usr/src/boot/lib/libstand/stand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/usr/src/boot/lib/libstand/stand.h b/usr/src/boot/lib/libstand/stand.h
index 7653242656..cd10db19c4 100644
--- a/usr/src/boot/lib/libstand/stand.h
+++ b/usr/src/boot/lib/libstand/stand.h
@@ -195,6 +195,9 @@ extern struct open_file files[];
#define F_NODEV 0x0008 /* network open - no device */
#define F_GZIP 0x0010 /* file is compressed by gzip */
#define F_BZIP 0x0020 /* file is compressed by bzip */
+#define F_MASK 0xFFFF
+/* Mode modifier for strategy() */
+#define F_NORA (0x01 << 16) /* Disable Read-Ahead */
#define isascii(c) (((c) & ~0x7F) == 0)