2 * NFSv4 file layout driver data structures.
5 * The Regents of the University of Michigan
8 * Dean Hildebrand <dhildebz@umich.edu>
10 * Permission is granted to use, copy, create derivative works, and
11 * redistribute this software and such derivative works for any purpose,
12 * so long as the name of the University of Michigan is not used in
13 * any advertising or publicity pertaining to the use or distribution
14 * of this software without specific, written prior authorization. If
15 * the above copyright notice or any other identification of the
16 * University of Michigan is included in any copy of any portion of
17 * this software, then the disclaimer below must also be included.
19 * This software is provided as is, without representation or warranty
20 * of any kind either express or implied, including without limitation
21 * the implied warranties of merchantability, fitness for a particular
22 * purpose, or noninfringement. The Regents of the University of
23 * Michigan shall not be liable for any damages, including special,
24 * indirect, incidental, or consequential damages, with respect to any
25 * claim arising out of or in connection with the use of the software,
26 * even if it has been or is hereafter advised of the possibility of
30 #ifndef FS_NFS_NFS4FILELAYOUT_H
31 #define FS_NFS_NFS4FILELAYOUT_H
36 * Field testing shows we need to support upto 4096 stripe indices.
37 * We store each index as a u8 (u32 on the wire) to keep the memory footprint
38 * reasonable. This in turn means we support a maximum of 256
39 * RFC 5661 multipath_list4 structures.
41 #define NFS4_PNFS_MAX_STRIPE_CNT 4096
42 #define NFS4_PNFS_MAX_MULTI_CNT 256 /* 256 fit into a u8 stripe_index */
49 /* Individual ip address */
51 struct list_head ds_node
; /* nfs4_pnfs_dev_hlist dev_dslist */
54 struct nfs_client
*ds_clp
;
58 struct nfs4_file_layout_dsaddr
{
59 struct pnfs_deviceid_node deviceid
;
63 struct nfs4_pnfs_ds
*ds_list
[1];
66 struct nfs4_filelayout_segment
{
67 struct pnfs_layout_segment generic_hdr
;
69 u32 commit_through_mds
;
71 u32 first_stripe_index
;
73 struct nfs4_file_layout_dsaddr
*dsaddr
; /* Point to GETDEVINFO data */
75 struct nfs_fh
**fh_array
;
78 static inline struct nfs4_filelayout_segment
*
79 FILELAYOUT_LSEG(struct pnfs_layout_segment
*lseg
)
81 return container_of(lseg
,
82 struct nfs4_filelayout_segment
,
86 extern void nfs4_fl_free_deviceid_callback(struct pnfs_deviceid_node
*);
87 extern void print_ds(struct nfs4_pnfs_ds
*ds
);
88 extern void print_deviceid(struct nfs4_deviceid
*dev_id
);
89 extern struct nfs4_file_layout_dsaddr
*
90 nfs4_fl_find_get_deviceid(struct nfs_client
*, struct nfs4_deviceid
*dev_id
);
91 struct nfs4_file_layout_dsaddr
*
92 get_device_info(struct inode
*inode
, struct nfs4_deviceid
*dev_id
);
94 #endif /* FS_NFS_NFS4FILELAYOUT_H */