blob: 1c3eb02f494421160b2da9774489764a2f3246dc [file] [log] [blame]
Ricardo Labiaga85e174b2010-10-20 00:17:58 -04001/*
2 * pNFS client 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_PNFS_H
31#define FS_NFS_PNFS_H
32
Andy Adamson974cec82010-10-20 00:18:02 -040033struct pnfs_layout_segment {
34 struct list_head fi_list;
35 u32 iomode;
36 struct kref kref;
37 struct pnfs_layout_hdr *layout;
38};
39
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040040#ifdef CONFIG_NFS_V4_1
41
42#define LAYOUT_NFSV4_1_MODULE_PREFIX "nfs-layouttype4"
43
Benny Halevye5e94012010-10-20 00:18:01 -040044enum {
45 NFS_LAYOUT_RO_FAILED = 0, /* get ro layout failed stop trying */
46 NFS_LAYOUT_RW_FAILED, /* get rw layout failed stop trying */
47};
48
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040049/* Per-layout driver specific registration structure */
50struct pnfs_layoutdriver_type {
Fred Isaman02c35fc2010-10-20 00:17:59 -040051 struct list_head pnfs_tblid;
52 const u32 id;
53 const char *name;
54 struct module *owner;
55 int (*initialize_mountpoint) (struct nfs_server *);
56 int (*uninitialize_mountpoint) (struct nfs_server *);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040057};
58
Benny Halevye5e94012010-10-20 00:18:01 -040059struct pnfs_layout_hdr {
60 unsigned long refcount;
Andy Adamson974cec82010-10-20 00:18:02 -040061 struct list_head layouts; /* other client layouts */
62 struct list_head segs; /* layout segments list */
Benny Halevye5e94012010-10-20 00:18:01 -040063 unsigned long state;
64 struct inode *inode;
65};
66
Fred Isaman02c35fc2010-10-20 00:17:59 -040067extern int pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *);
68extern void pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *);
69
Benny Halevye5e94012010-10-20 00:18:01 -040070struct pnfs_layout_segment *
71pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
72 enum pnfs_iomode access_type);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040073void set_pnfs_layoutdriver(struct nfs_server *, u32 id);
74void unset_pnfs_layoutdriver(struct nfs_server *);
Benny Halevye5e94012010-10-20 00:18:01 -040075void pnfs_destroy_layout(struct nfs_inode *);
Andy Adamson974cec82010-10-20 00:18:02 -040076void pnfs_destroy_all_layouts(struct nfs_client *);
Benny Halevye5e94012010-10-20 00:18:01 -040077
78
79static inline int lo_fail_bit(u32 iomode)
80{
81 return iomode == IOMODE_RW ?
82 NFS_LAYOUT_RW_FAILED : NFS_LAYOUT_RO_FAILED;
83}
84
85/* Return true if a layout driver is being used for this mountpoint */
86static inline int pnfs_enabled_sb(struct nfs_server *nfss)
87{
88 return nfss->pnfs_curr_ld != NULL;
89}
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040090
91#else /* CONFIG_NFS_V4_1 */
92
Andy Adamson974cec82010-10-20 00:18:02 -040093static inline void pnfs_destroy_all_layouts(struct nfs_client *clp)
94{
95}
96
Benny Halevye5e94012010-10-20 00:18:01 -040097static inline void pnfs_destroy_layout(struct nfs_inode *nfsi)
98{
99}
100
101static inline struct pnfs_layout_segment *
102pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
103 enum pnfs_iomode access_type)
104{
105 return NULL;
106}
107
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400108static inline void set_pnfs_layoutdriver(struct nfs_server *s, u32 id)
109{
110}
111
112static inline void unset_pnfs_layoutdriver(struct nfs_server *s)
113{
114}
115
116#endif /* CONFIG_NFS_V4_1 */
117
118#endif /* FS_NFS_PNFS_H */