crypto: sha512 - use crypto_[un]register_shashes
[linux-2.6.git] / fs / nfs / blocklayout / blocklayout.h
blob03350690118e239161fceb18e5939b97d7e062b4
1 /*
2 * linux/fs/nfs/blocklayout/blocklayout.h
4 * Module for the NFSv4.1 pNFS block layout driver.
6 * Copyright (c) 2006 The Regents of the University of Michigan.
7 * All rights reserved.
9 * Andy Adamson <andros@citi.umich.edu>
10 * Fred Isaman <iisaman@umich.edu>
12 * permission is granted to use, copy, create derivative works and
13 * redistribute this software and such derivative works for any purpose,
14 * so long as the name of the university of michigan is not used in
15 * any advertising or publicity pertaining to the use or distribution
16 * of this software without specific, written prior authorization. if
17 * the above copyright notice or any other identification of the
18 * university of michigan is included in any copy of any portion of
19 * this software, then the disclaimer below must also be included.
21 * this software is provided as is, without representation from the
22 * university of michigan as to its fitness for any purpose, and without
23 * warranty by the university of michigan of any kind, either express
24 * or implied, including without limitation the implied warranties of
25 * merchantability and fitness for a particular purpose. the regents
26 * of the university of michigan shall not be liable for any damages,
27 * including special, indirect, incidental, or consequential damages,
28 * with respect to any claim arising out or in connection with the use
29 * of the software, even if it has been or is hereafter advised of the
30 * possibility of such damages.
32 #ifndef FS_NFS_NFS4BLOCKLAYOUT_H
33 #define FS_NFS_NFS4BLOCKLAYOUT_H
35 #include <linux/device-mapper.h>
36 #include <linux/nfs_fs.h>
37 #include <linux/sunrpc/rpc_pipe_fs.h>
39 #include "../pnfs.h"
40 #include "../netns.h"
42 #define PAGE_CACHE_SECTORS (PAGE_CACHE_SIZE >> SECTOR_SHIFT)
43 #define PAGE_CACHE_SECTOR_SHIFT (PAGE_CACHE_SHIFT - SECTOR_SHIFT)
45 struct block_mount_id {
46 spinlock_t bm_lock; /* protects list */
47 struct list_head bm_devlist; /* holds pnfs_block_dev */
50 struct pnfs_block_dev {
51 struct list_head bm_node;
52 struct nfs4_deviceid bm_mdevid; /* associated devid */
53 struct block_device *bm_mdev; /* meta device itself */
54 struct net *net;
57 enum exstate4 {
58 PNFS_BLOCK_READWRITE_DATA = 0,
59 PNFS_BLOCK_READ_DATA = 1,
60 PNFS_BLOCK_INVALID_DATA = 2, /* mapped, but data is invalid */
61 PNFS_BLOCK_NONE_DATA = 3 /* unmapped, it's a hole */
64 #define MY_MAX_TAGS (15) /* tag bitnums used must be less than this */
66 struct my_tree {
67 sector_t mtt_step_size; /* Internal sector alignment */
68 struct list_head mtt_stub; /* Should be a radix tree */
71 struct pnfs_inval_markings {
72 spinlock_t im_lock;
73 struct my_tree im_tree; /* Sectors that need LAYOUTCOMMIT */
74 sector_t im_block_size; /* Server blocksize in sectors */
75 struct list_head im_extents; /* Short extents for INVAL->RW conversion */
78 struct pnfs_inval_tracking {
79 struct list_head it_link;
80 int it_sector;
81 int it_tags;
84 /* sector_t fields are all in 512-byte sectors */
85 struct pnfs_block_extent {
86 struct kref be_refcnt;
87 struct list_head be_node; /* link into lseg list */
88 struct nfs4_deviceid be_devid; /* FIXME: could use device cache instead */
89 struct block_device *be_mdev;
90 sector_t be_f_offset; /* the starting offset in the file */
91 sector_t be_length; /* the size of the extent */
92 sector_t be_v_offset; /* the starting offset in the volume */
93 enum exstate4 be_state; /* the state of this extent */
94 struct pnfs_inval_markings *be_inval; /* tracks INVAL->RW transition */
97 /* Shortened extent used by LAYOUTCOMMIT */
98 struct pnfs_block_short_extent {
99 struct list_head bse_node;
100 struct nfs4_deviceid bse_devid;
101 struct block_device *bse_mdev;
102 sector_t bse_f_offset; /* the starting offset in the file */
103 sector_t bse_length; /* the size of the extent */
106 static inline void
107 BL_INIT_INVAL_MARKS(struct pnfs_inval_markings *marks, sector_t blocksize)
109 spin_lock_init(&marks->im_lock);
110 INIT_LIST_HEAD(&marks->im_tree.mtt_stub);
111 INIT_LIST_HEAD(&marks->im_extents);
112 marks->im_block_size = blocksize;
113 marks->im_tree.mtt_step_size = min((sector_t)PAGE_CACHE_SECTORS,
114 blocksize);
117 enum extentclass4 {
118 RW_EXTENT = 0, /* READWRTE and INVAL */
119 RO_EXTENT = 1, /* READ and NONE */
120 EXTENT_LISTS = 2,
123 static inline int bl_choose_list(enum exstate4 state)
125 if (state == PNFS_BLOCK_READ_DATA || state == PNFS_BLOCK_NONE_DATA)
126 return RO_EXTENT;
127 else
128 return RW_EXTENT;
131 struct pnfs_block_layout {
132 struct pnfs_layout_hdr bl_layout;
133 struct pnfs_inval_markings bl_inval; /* tracks INVAL->RW transition */
134 spinlock_t bl_ext_lock; /* Protects list manipulation */
135 struct list_head bl_extents[EXTENT_LISTS]; /* R and RW extents */
136 struct list_head bl_commit; /* Needs layout commit */
137 struct list_head bl_committing; /* Layout committing */
138 unsigned int bl_count; /* entries in bl_commit */
139 sector_t bl_blocksize; /* Server blocksize in sectors */
142 #define BLK_ID(lo) ((struct block_mount_id *)(NFS_SERVER(lo->plh_inode)->pnfs_ld_data))
144 static inline struct pnfs_block_layout *
145 BLK_LO2EXT(struct pnfs_layout_hdr *lo)
147 return container_of(lo, struct pnfs_block_layout, bl_layout);
150 static inline struct pnfs_block_layout *
151 BLK_LSEG2EXT(struct pnfs_layout_segment *lseg)
153 return BLK_LO2EXT(lseg->pls_layout);
156 struct bl_pipe_msg {
157 struct rpc_pipe_msg msg;
158 wait_queue_head_t *bl_wq;
161 struct bl_msg_hdr {
162 u8 type;
163 u16 totallen; /* length of entire message, including hdr itself */
166 #define BL_DEVICE_UMOUNT 0x0 /* Umount--delete devices */
167 #define BL_DEVICE_MOUNT 0x1 /* Mount--create devices*/
168 #define BL_DEVICE_REQUEST_INIT 0x0 /* Start request */
169 #define BL_DEVICE_REQUEST_PROC 0x1 /* User level process succeeds */
170 #define BL_DEVICE_REQUEST_ERR 0x2 /* User level process fails */
172 /* blocklayoutdev.c */
173 ssize_t bl_pipe_downcall(struct file *, const char __user *, size_t);
174 void bl_pipe_destroy_msg(struct rpc_pipe_msg *);
175 struct block_device *nfs4_blkdev_get(dev_t dev);
176 int nfs4_blkdev_put(struct block_device *bdev);
177 struct pnfs_block_dev *nfs4_blk_decode_device(struct nfs_server *server,
178 struct pnfs_device *dev);
179 int nfs4_blk_process_layoutget(struct pnfs_layout_hdr *lo,
180 struct nfs4_layoutget_res *lgr, gfp_t gfp_flags);
182 /* blocklayoutdm.c */
183 void bl_free_block_dev(struct pnfs_block_dev *bdev);
185 /* extents.c */
186 struct pnfs_block_extent *
187 bl_find_get_extent(struct pnfs_block_layout *bl, sector_t isect,
188 struct pnfs_block_extent **cow_read);
189 int bl_mark_sectors_init(struct pnfs_inval_markings *marks,
190 sector_t offset, sector_t length);
191 void bl_put_extent(struct pnfs_block_extent *be);
192 struct pnfs_block_extent *bl_alloc_extent(void);
193 int bl_is_sector_init(struct pnfs_inval_markings *marks, sector_t isect);
194 int encode_pnfs_block_layoutupdate(struct pnfs_block_layout *bl,
195 struct xdr_stream *xdr,
196 const struct nfs4_layoutcommit_args *arg);
197 void clean_pnfs_block_layoutupdate(struct pnfs_block_layout *bl,
198 const struct nfs4_layoutcommit_args *arg,
199 int status);
200 int bl_add_merge_extent(struct pnfs_block_layout *bl,
201 struct pnfs_block_extent *new);
202 int bl_mark_for_commit(struct pnfs_block_extent *be,
203 sector_t offset, sector_t length,
204 struct pnfs_block_short_extent *new);
205 int bl_push_one_short_extent(struct pnfs_inval_markings *marks);
206 struct pnfs_block_short_extent *
207 bl_pop_one_short_extent(struct pnfs_inval_markings *marks);
208 void bl_free_short_extents(struct pnfs_inval_markings *marks, int num_to_free);
210 #endif /* FS_NFS_NFS4BLOCKLAYOUT_H */