blob: 2896cb833a11375e064f926c3a50b5cbfd499f39 [file] [log] [blame]
Andy Adamson16b374c2010-10-20 00:18:04 -04001/*
2 * NFSv4 file layout driver data structures.
3 *
4 * Copyright (c) 2002
5 * The Regents of the University of Michigan
6 * All Rights Reserved
7 *
8 * Dean Hildebrand <dhildebz@umich.edu>
9 *
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.
18 *
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
27 * such damages.
28 */
29
30#ifndef FS_NFS_NFS4FILELAYOUT_H
31#define FS_NFS_NFS4FILELAYOUT_H
32
Tom Haynesb5968722014-05-12 14:35:52 -070033#include "../pnfs.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040034
35/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -030036 * Field testing shows we need to support up to 4096 stripe indices.
Andy Adamson16b374c2010-10-20 00:18:04 -040037 * 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.
40 */
41#define NFS4_PNFS_MAX_STRIPE_CNT 4096
42#define NFS4_PNFS_MAX_MULTI_CNT 256 /* 256 fit into a u8 stripe_index */
43
44enum stripetype4 {
45 STRIPE_SPARSE = 1,
46 STRIPE_DENSE = 2
47};
48
Andy Adamson16b374c2010-10-20 00:18:04 -040049struct nfs4_file_layout_dsaddr {
Benny Halevya1eaecb2011-05-19 22:14:47 -040050 struct nfs4_deviceid_node id_node;
Andy Adamson16b374c2010-10-20 00:18:04 -040051 u32 stripe_count;
52 u8 *stripe_indices;
53 u32 ds_num;
54 struct nfs4_pnfs_ds *ds_list[1];
55};
56
57struct nfs4_filelayout_segment {
58 struct pnfs_layout_segment generic_hdr;
59 u32 stripe_type;
60 u32 commit_through_mds;
61 u32 stripe_unit;
62 u32 first_stripe_index;
63 u64 pattern_offset;
64 struct nfs4_file_layout_dsaddr *dsaddr; /* Point to GETDEVINFO data */
65 unsigned int num_fh;
66 struct nfs_fh **fh_array;
67};
68
Fred Isaman799ba8d2012-04-20 14:47:38 -040069struct nfs4_filelayout {
70 struct pnfs_layout_hdr generic_hdr;
Fred Isamanea2cf222012-04-20 14:47:53 -040071 struct pnfs_ds_commit_info commit_info;
Fred Isaman799ba8d2012-04-20 14:47:38 -040072};
73
74static inline struct nfs4_filelayout *
75FILELAYOUT_FROM_HDR(struct pnfs_layout_hdr *lo)
76{
77 return container_of(lo, struct nfs4_filelayout, generic_hdr);
78}
79
Andy Adamson16b374c2010-10-20 00:18:04 -040080static inline struct nfs4_filelayout_segment *
81FILELAYOUT_LSEG(struct pnfs_layout_segment *lseg)
82{
83 return container_of(lseg,
84 struct nfs4_filelayout_segment,
85 generic_hdr);
86}
87
Andy Adamsonc47abcf2011-06-15 17:52:40 -040088static inline struct nfs4_deviceid_node *
89FILELAYOUT_DEVID_NODE(struct pnfs_layout_segment *lseg)
90{
91 return &FILELAYOUT_LSEG(lseg)->dsaddr->id_node;
92}
93
Andy Adamson554d4582012-04-27 17:53:42 -040094static inline bool
95filelayout_test_devid_invalid(struct nfs4_deviceid_node *node)
96{
97 return test_bit(NFS_DEVICEID_INVALID, &node->flags);
98}
99
Trond Myklebust1dfed272012-09-18 19:51:12 -0400100extern bool
101filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node);
Andy Adamson041245c2012-04-27 17:53:53 -0400102
Fred Isamancfe7f412011-03-01 01:34:18 +0000103extern struct nfs_fh *
104nfs4_fl_select_ds_fh(struct pnfs_layout_segment *lseg, u32 j);
105
Fred Isamancfe7f412011-03-01 01:34:18 +0000106u32 nfs4_fl_calc_j_index(struct pnfs_layout_segment *lseg, loff_t offset);
107u32 nfs4_fl_calc_ds_index(struct pnfs_layout_segment *lseg, u32 j);
108struct nfs4_pnfs_ds *nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg,
109 u32 ds_idx);
Christoph Hellwig661373b2014-09-02 21:27:57 -0700110
111extern struct nfs4_file_layout_dsaddr *
112nfs4_fl_alloc_deviceid_node(struct nfs_server *server,
113 struct pnfs_device *pdev, gfp_t gfp_flags);
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000114extern void nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
Benny Halevy1775bc32011-05-20 13:47:33 +0200115extern void nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400116
117#endif /* FS_NFS_NFS4FILELAYOUT_H */