pNFS: Add tracking to limit the number of pNFS retries
[linux-block.git] / include / linux / nfs_page.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * linux/include/linux/nfs_page.h
4  *
5  * Copyright (C) 2000 Trond Myklebust
6  *
7  * NFS page cache wrapper.
8  */
9
10 #ifndef _LINUX_NFS_PAGE_H
11 #define _LINUX_NFS_PAGE_H
12
13
14 #include <linux/list.h>
15 #include <linux/pagemap.h>
16 #include <linux/wait.h>
17 #include <linux/sunrpc/auth.h>
18 #include <linux/nfs_xdr.h>
19
20 #include <linux/kref.h>
21
22 /*
23  * Valid flags for a dirty buffer
24  */
25 enum {
26         PG_BUSY = 0,            /* nfs_{un}lock_request */
27         PG_MAPPED,              /* page private set for buffered io */
28         PG_CLEAN,               /* write succeeded */
29         PG_COMMIT_TO_DS,        /* used by pnfs layouts */
30         PG_INODE_REF,           /* extra ref held by inode when in writeback */
31         PG_HEADLOCK,            /* page group lock of wb_head */
32         PG_TEARDOWN,            /* page group sync for destroy */
33         PG_UNLOCKPAGE,          /* page group sync bit in read path */
34         PG_UPTODATE,            /* page group sync bit in read path */
35         PG_WB_END,              /* page group sync bit in write path */
36         PG_REMOVE,              /* page group sync bit in write path */
37         PG_CONTENDED1,          /* Is someone waiting for a lock? */
38         PG_CONTENDED2,          /* Is someone waiting for a lock? */
39 };
40
41 struct nfs_inode;
42 struct nfs_page {
43         struct list_head        wb_list;        /* Defines state of page: */
44         struct page             *wb_page;       /* page to read in/write out */
45         struct nfs_open_context *wb_context;    /* File state context info */
46         struct nfs_lock_context *wb_lock_context;       /* lock context info */
47         pgoff_t                 wb_index;       /* Offset >> PAGE_SHIFT */
48         unsigned int            wb_offset,      /* Offset & ~PAGE_MASK */
49                                 wb_pgbase,      /* Start of page data */
50                                 wb_bytes;       /* Length of request */
51         struct kref             wb_kref;        /* reference count */
52         unsigned long           wb_flags;
53         struct nfs_write_verifier       wb_verf;        /* Commit cookie */
54         struct nfs_page         *wb_this_page;  /* list of reqs for this page */
55         struct nfs_page         *wb_head;       /* head pointer for req list */
56         unsigned short          wb_nio;         /* Number of I/O attempts */
57 };
58
59 struct nfs_pageio_descriptor;
60 struct nfs_pageio_ops {
61         void    (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *);
62         size_t  (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *,
63                            struct nfs_page *);
64         int     (*pg_doio)(struct nfs_pageio_descriptor *);
65         unsigned int    (*pg_get_mirror_count)(struct nfs_pageio_descriptor *,
66                                        struct nfs_page *);
67         void    (*pg_cleanup)(struct nfs_pageio_descriptor *);
68 };
69
70 struct nfs_rw_ops {
71         struct nfs_pgio_header *(*rw_alloc_header)(void);
72         void (*rw_free_header)(struct nfs_pgio_header *);
73         int  (*rw_done)(struct rpc_task *, struct nfs_pgio_header *,
74                         struct inode *);
75         void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *);
76         void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *,
77                             const struct nfs_rpc_ops *,
78                             struct rpc_task_setup *, int);
79 };
80
81 struct nfs_pgio_mirror {
82         struct list_head        pg_list;
83         unsigned long           pg_bytes_written;
84         size_t                  pg_count;
85         size_t                  pg_bsize;
86         unsigned int            pg_base;
87         unsigned char           pg_recoalesce : 1;
88 };
89
90 struct nfs_pageio_descriptor {
91         struct inode            *pg_inode;
92         const struct nfs_pageio_ops *pg_ops;
93         const struct nfs_rw_ops *pg_rw_ops;
94         int                     pg_ioflags;
95         int                     pg_error;
96         const struct rpc_call_ops *pg_rpc_callops;
97         const struct nfs_pgio_completion_ops *pg_completion_ops;
98         struct pnfs_layout_segment *pg_lseg;
99         struct nfs_io_completion *pg_io_completion;
100         struct nfs_direct_req   *pg_dreq;
101         unsigned int            pg_bsize;       /* default bsize for mirrors */
102
103         u32                     pg_mirror_count;
104         struct nfs_pgio_mirror  *pg_mirrors;
105         struct nfs_pgio_mirror  pg_mirrors_static[1];
106         struct nfs_pgio_mirror  *pg_mirrors_dynamic;
107         u32                     pg_mirror_idx;  /* current mirror */
108         unsigned short          pg_maxretrans;
109         unsigned char           pg_moreio : 1;
110 };
111
112 /* arbitrarily selected limit to number of mirrors */
113 #define NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX 16
114
115 #define NFS_WBACK_BUSY(req)     (test_bit(PG_BUSY,&(req)->wb_flags))
116
117 extern  struct nfs_page *nfs_create_request(struct nfs_open_context *ctx,
118                                             struct page *page,
119                                             unsigned int offset,
120                                             unsigned int count);
121 extern  void nfs_release_request(struct nfs_page *);
122
123
124 extern  void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
125                              struct inode *inode,
126                              const struct nfs_pageio_ops *pg_ops,
127                              const struct nfs_pgio_completion_ops *compl_ops,
128                              const struct nfs_rw_ops *rw_ops,
129                              size_t bsize,
130                              int how);
131 extern  int nfs_pageio_add_request(struct nfs_pageio_descriptor *,
132                                    struct nfs_page *);
133 extern  int nfs_pageio_resend(struct nfs_pageio_descriptor *,
134                               struct nfs_pgio_header *);
135 extern  void nfs_pageio_complete(struct nfs_pageio_descriptor *desc);
136 extern  void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *, pgoff_t);
137 extern size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
138                                 struct nfs_page *prev,
139                                 struct nfs_page *req);
140 extern  int nfs_wait_on_request(struct nfs_page *);
141 extern  void nfs_unlock_request(struct nfs_page *req);
142 extern  void nfs_unlock_and_release_request(struct nfs_page *);
143 extern int nfs_page_group_lock(struct nfs_page *);
144 extern void nfs_page_group_unlock(struct nfs_page *);
145 extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int);
146 extern bool nfs_async_iocounter_wait(struct rpc_task *, struct nfs_lock_context *);
147
148 /*
149  * Lock the page of an asynchronous request
150  */
151 static inline int
152 nfs_lock_request(struct nfs_page *req)
153 {
154         return !test_and_set_bit(PG_BUSY, &req->wb_flags);
155 }
156
157 /**
158  * nfs_list_add_request - Insert a request into a list
159  * @req: request
160  * @head: head of list into which to insert the request.
161  */
162 static inline void
163 nfs_list_add_request(struct nfs_page *req, struct list_head *head)
164 {
165         list_add_tail(&req->wb_list, head);
166 }
167
168 /**
169  * nfs_list_move_request - Move a request to a new list
170  * @req: request
171  * @head: head of list into which to insert the request.
172  */
173 static inline void
174 nfs_list_move_request(struct nfs_page *req, struct list_head *head)
175 {
176         list_move_tail(&req->wb_list, head);
177 }
178
179 /**
180  * nfs_list_remove_request - Remove a request from its wb_list
181  * @req: request
182  */
183 static inline void
184 nfs_list_remove_request(struct nfs_page *req)
185 {
186         if (list_empty(&req->wb_list))
187                 return;
188         list_del_init(&req->wb_list);
189 }
190
191 static inline struct nfs_page *
192 nfs_list_entry(struct list_head *head)
193 {
194         return list_entry(head, struct nfs_page, wb_list);
195 }
196
197 static inline
198 loff_t req_offset(struct nfs_page *req)
199 {
200         return (((loff_t)req->wb_index) << PAGE_SHIFT) + req->wb_offset;
201 }
202
203 #endif /* _LINUX_NFS_PAGE_H */