Deleted Added
full compact
msdosfsmount.h (12338) msdosfsmount.h (13765)
1/* $Id: msdosfsmount.h,v 1.4 1995/11/07 14:06:45 phk Exp $ */
1/* $Id: msdosfsmount.h,v 1.5 1995/11/16 11:48:10 bde Exp $ */
2/* $NetBSD: msdosfsmount.h,v 1.7 1994/08/21 18:44:17 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994 Wolfgang Solfrank.
6 * Copyright (C) 1994 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9 *

--- 64 unchanged lines hidden (view full) ---

74 u_long pm_bpcluster; /* bytes per cluster */
75 u_long pm_depclust; /* directory entries per cluster */
76 u_long pm_fmod; /* ~0 if fs is modified, this can rollover to 0 */
77 u_long pm_fatblocksize; /* size of fat blocks in bytes */
78 u_long pm_fatblocksec; /* size of fat blocks in sectors */
79 u_long pm_fatsize; /* size of fat in bytes */
80 u_int *pm_inusemap; /* ptr to bitmap of in-use clusters */
81 char pm_ronly; /* read only if non-zero */
2/* $NetBSD: msdosfsmount.h,v 1.7 1994/08/21 18:44:17 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994 Wolfgang Solfrank.
6 * Copyright (C) 1994 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9 *

--- 64 unchanged lines hidden (view full) ---

74 u_long pm_bpcluster; /* bytes per cluster */
75 u_long pm_depclust; /* directory entries per cluster */
76 u_long pm_fmod; /* ~0 if fs is modified, this can rollover to 0 */
77 u_long pm_fatblocksize; /* size of fat blocks in bytes */
78 u_long pm_fatblocksec; /* size of fat blocks in sectors */
79 u_long pm_fatsize; /* size of fat in bytes */
80 u_int *pm_inusemap; /* ptr to bitmap of in-use clusters */
81 char pm_ronly; /* read only if non-zero */
82 char pm_waitonfat; /* wait for writes of the fat to complt, when 0 use bdwrite, else use bwrite */
82 char pm_waitonfat; /* wait for writes of the fat to complete, when 0 use bdwrite, else use bwrite */
83 struct netexport pm_export; /* export information */
84};
85
86/* Number of bits in one pm_inusemap item: */
87#define N_INUSEBITS (8 * sizeof(u_int))
88
89/*
90 * How to compute pm_cnshift and pm_crbomask.

--- 81 unchanged lines hidden ---
83 struct netexport pm_export; /* export information */
84};
85
86/* Number of bits in one pm_inusemap item: */
87#define N_INUSEBITS (8 * sizeof(u_int))
88
89/*
90 * How to compute pm_cnshift and pm_crbomask.

--- 81 unchanged lines hidden ---