blob: 333a3ac9760647a78749a9346847e2e7404f2566 [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
33#include "pnfs.h"
34
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
49/* Individual ip address */
Weston Andros Adamson14f9a602011-05-31 18:48:57 -040050struct nfs4_pnfs_ds_addr {
51 struct sockaddr_storage da_addr;
52 size_t da_addrlen;
53 struct list_head da_node; /* nfs4_pnfs_dev_hlist dev_dslist */
54 char *da_remotestr; /* human readable addr+port */
55};
56
Andy Adamson16b374c2010-10-20 00:18:04 -040057struct nfs4_pnfs_ds {
58 struct list_head ds_node; /* nfs4_pnfs_dev_hlist dev_dslist */
Weston Andros Adamson14f9a602011-05-31 18:48:57 -040059 char *ds_remotestr; /* comma sep list of addrs */
60 struct list_head ds_addrs;
Andy Adamson16b374c2010-10-20 00:18:04 -040061 struct nfs_client *ds_clp;
62 atomic_t ds_count;
63};
64
Andy Adamson568e8c42011-03-01 01:34:22 +000065/* nfs4_file_layout_dsaddr flags */
66#define NFS4_DEVICE_ID_NEG_ENTRY 0x00000001
67
Andy Adamson16b374c2010-10-20 00:18:04 -040068struct nfs4_file_layout_dsaddr {
Benny Halevya1eaecb2011-05-19 22:14:47 -040069 struct nfs4_deviceid_node id_node;
Andy Adamson568e8c42011-03-01 01:34:22 +000070 unsigned long flags;
Andy Adamson16b374c2010-10-20 00:18:04 -040071 u32 stripe_count;
72 u8 *stripe_indices;
73 u32 ds_num;
74 struct nfs4_pnfs_ds *ds_list[1];
75};
76
Fred Isamand6d6dc72012-03-08 17:29:35 -050077struct nfs4_fl_commit_bucket {
78 struct list_head written;
79 struct list_head committing;
Fred Isaman799ba8d2012-04-20 14:47:38 -040080 struct pnfs_layout_segment *wlseg;
81 struct pnfs_layout_segment *clseg;
82};
83
84struct nfs4_fl_commit_info {
85 int nbuckets;
86 struct nfs4_fl_commit_bucket *buckets;
Fred Isamand6d6dc72012-03-08 17:29:35 -050087};
88
Andy Adamson16b374c2010-10-20 00:18:04 -040089struct nfs4_filelayout_segment {
90 struct pnfs_layout_segment generic_hdr;
91 u32 stripe_type;
92 u32 commit_through_mds;
93 u32 stripe_unit;
94 u32 first_stripe_index;
95 u64 pattern_offset;
96 struct nfs4_file_layout_dsaddr *dsaddr; /* Point to GETDEVINFO data */
97 unsigned int num_fh;
98 struct nfs_fh **fh_array;
99};
100
Fred Isaman799ba8d2012-04-20 14:47:38 -0400101struct nfs4_filelayout {
102 struct pnfs_layout_hdr generic_hdr;
103 struct nfs4_fl_commit_info commit_info;
104};
105
106static inline struct nfs4_filelayout *
107FILELAYOUT_FROM_HDR(struct pnfs_layout_hdr *lo)
108{
109 return container_of(lo, struct nfs4_filelayout, generic_hdr);
110}
111
Andy Adamson16b374c2010-10-20 00:18:04 -0400112static inline struct nfs4_filelayout_segment *
113FILELAYOUT_LSEG(struct pnfs_layout_segment *lseg)
114{
115 return container_of(lseg,
116 struct nfs4_filelayout_segment,
117 generic_hdr);
118}
119
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400120static inline struct nfs4_deviceid_node *
121FILELAYOUT_DEVID_NODE(struct pnfs_layout_segment *lseg)
122{
123 return &FILELAYOUT_LSEG(lseg)->dsaddr->id_node;
124}
125
Fred Isamancfe7f412011-03-01 01:34:18 +0000126extern struct nfs_fh *
127nfs4_fl_select_ds_fh(struct pnfs_layout_segment *lseg, u32 j);
128
Andy Adamson16b374c2010-10-20 00:18:04 -0400129extern void print_ds(struct nfs4_pnfs_ds *ds);
Fred Isamancfe7f412011-03-01 01:34:18 +0000130u32 nfs4_fl_calc_j_index(struct pnfs_layout_segment *lseg, loff_t offset);
131u32 nfs4_fl_calc_ds_index(struct pnfs_layout_segment *lseg, u32 j);
132struct nfs4_pnfs_ds *nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg,
133 u32 ds_idx);
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000134extern void nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
Benny Halevy1775bc32011-05-20 13:47:33 +0200135extern void nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400136struct nfs4_file_layout_dsaddr *
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400137get_device_info(struct inode *inode, struct nfs4_deviceid *dev_id, gfp_t gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400138
139#endif /* FS_NFS_NFS4FILELAYOUT_H */