DAFS: Do not give back vol to viced after salvage
[openafs.git] / src / vol / voldefs.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11         System:         VICE-TWO
12         Module:         voldefs.h
13         Institution:    The Information Technology Center, Carnegie-Mellon University
14
15  */
16
17 /* If you add volume types here, be sure to check the definition of
18    volumeWriteable in volume.h */
19
20 #define readwriteVolume         RWVOL
21 #define readonlyVolume          ROVOL
22 #define backupVolume            BACKVOL
23
24 #define RWVOL                   0
25 #define ROVOL                   1
26 #define BACKVOL                 2
27
28 #define VOLMAXTYPES             3   /* _current_ max number of types */
29
30 /* the maximum number of volumes in a volume group that we can handle */
31 #define VOL_VG_MAX_VOLS 20
32
33 /* how many times to retry if we raced the fileserver restarting, when trying
34  * to checkout/lock a volume */
35 #define VOL_MAX_CHECKOUT_RETRIES 10
36
37 /* maximum numbe of Vice partitions */
38 #define VOLMAXPARTS     255
39
40 /* All volumes will have a volume header name in this format */
41 #if     defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV)
42 /* Note that <afs/param.h> must have been included before we get here... */
43 #define VFORMAT "V%010lu.vl"    /* Sys5's filename length limitation hits us again */
44 #define VHDREXT ".vl"
45 #else
46 #define VFORMAT "V%010lu.vol"
47 #define VHDREXT ".vol"
48 #endif
49 #define VMAXPATHLEN 64          /* Maximum length (including null) of a volume
50                                  * external path name */
51
52 #if defined(AFS_NAMEI_ENV) && !defined(AFS_NT40_ENV)
53 /* INODEDIR holds all the inodes. Since it's name does not begin with "V"
54  * and it's created when the first volume is created, linear directory
55  * searches will find the directory early. If only I had needed this before
56  * the NT server went beta, it could be used there as well.
57  */
58 #define INODEDIR "AFSIDat"
59 #define INODEDIRLEN (sizeof(INODEDIR)-1)
60 #endif
61
62 /* Pathname for the maximum volume id ever created by this server */
63 #define MAXVOLIDPATH    "/vice/vol/maxvolid"
64
65 /* Pathname for server id definitions--the server id is used to allocate volume numbers */
66 #define SERVERLISTPATH  "/vice/db/servers"