Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / vol / vg_cache_types.h
1 /*
2 * Copyright 2009-2010, Sine Nomine Associates 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 * demand attach fs
12 * volume group membership cache
13 */
14
15 #ifndef _AFS_VOL_VG_CACHE_TYPES_H
16 #define _AFS_VOL_VG_CACHE_TYPES_H 1
17
18 #include "voldefs.h"
19
20 /**
21 * volume group query response
22 */
23 typedef struct VVGCache_query {
24 afs_uint32 rw; /**< rw volume id */
25 afs_uint32 children[VOL_VG_MAX_VOLS]; /**< vector of children */
26 } VVGCache_query_t;
27
28
29 #endif /* _AFS_VOL_VG_CACHE_TYPES_H */