OpenAFS
OpenAFS distributed network file system
|
00001 /* 00002 * Copyright 2000, International Business Machines Corporation and others. 00003 * All Rights Reserved. 00004 * 00005 * This software has been released under the terms of the IBM Public 00006 * License. For details, see the LICENSE file in the top-level source 00007 * directory or online at http://www.openafs.org/dl/license10.html 00008 */ 00009 00010 /* 00011 System: VICE-TWO 00012 Module: voldefs.h 00013 Institution: The Information Technology Center, Carnegie-Mellon University 00014 00015 */ 00016 00017 /* If you add volume types here, be sure to check the definition of 00018 volumeWriteable in volume.h */ 00019 00020 #define readwriteVolume RWVOL 00021 #define readonlyVolume ROVOL 00022 #define backupVolume BACKVOL 00023 00024 #define RWVOL 0 00025 #define ROVOL 1 00026 #define BACKVOL 2 00027 00028 /* All volumes will have a volume header name in this format */ 00029 #define VFORMAT "V%010lu.vol" 00030 #define VMAXPATHLEN 64 /* Maximum length (including null) of a volume 00031 * external path name */