Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/chs-ubc2]: src/sys/sys add mnt_fs_bshift and mnt_dev_bshift to struct mo...
details: https://anonhg.NetBSD.org/src/rev/c51d79dc0d1e
branches: chs-ubc2
changeset: 471368:c51d79dc0d1e
user: chs <chs%NetBSD.org@localhost>
date: Sun Jul 04 01:49:25 1999 +0000
description:
add mnt_fs_bshift and mnt_dev_bshift to struct mount.
these will allow greater sharing of code between filesystems.
diffstat:
sys/sys/mount.h | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (18 lines):
diff -r eefc73c88f7c -r c51d79dc0d1e sys/sys/mount.h
--- a/sys/sys/mount.h Sun Jul 04 01:48:19 1999 +0000
+++ b/sys/sys/mount.h Sun Jul 04 01:49:25 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mount.h,v 1.74.4.2 1999/07/01 23:50:36 thorpej Exp $ */
+/* $NetBSD: mount.h,v 1.74.4.3 1999/07/04 01:49:25 chs Exp $ */
/*
* Copyright (c) 1989, 1991, 1993
@@ -126,6 +126,8 @@
struct lock mnt_lock; /* mount structure lock */
int mnt_flag; /* flags */
int mnt_maxsymlinklen; /* max size of short symlink */
+ int mnt_fs_bshift; /* offset shift for lblkno */
+ int mnt_dev_bshift; /* sector shift of device */
struct statfs mnt_stat; /* cache of filesystem stats */
qaddr_t mnt_data; /* private data */
};
Home |
Main Index |
Thread Index |
Old Index