blob: e27572d30d97751ba70a9c5d753997faaac49d51 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/sunrpc/auth.h>
18#include <linux/nfs_xdr.h>
19
Trond Myklebustc03b4022007-06-17 13:26:38 -040020#include <linux/kref.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
23 * Valid flags for a dirty buffer
24 */
Trond Myklebuste468bae2008-06-13 13:25:22 -040025enum {
Weston Andros Adamson12c05792014-05-15 11:56:41 -040026 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 */
Weston Andros Adamsonb412ddf2014-07-17 20:42:16 -040030 PG_INODE_REF, /* extra ref held by inode when in writeback */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -040031 PG_HEADLOCK, /* page group lock of wb_head */
32 PG_TEARDOWN, /* page group sync for destroy */
Weston Andros Adamson67d03382014-05-15 11:56:46 -040033 PG_UNLOCKPAGE, /* page group sync bit in read path */
34 PG_UPTODATE, /* page group sync bit in read path */
Weston Andros Adamson20633f02014-05-15 11:56:47 -040035 PG_WB_END, /* page group sync bit in write path */
36 PG_REMOVE, /* page group sync bit in write path */
Trond Myklebustb4f937c2017-07-11 17:53:48 -040037 PG_CONTENDED1, /* Is someone waiting for a lock? */
38 PG_CONTENDED2, /* Is someone waiting for a lock? */
Trond Myklebuste468bae2008-06-13 13:25:22 -040039};
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Trond Myklebust3da28eb2005-06-22 17:16:31 +000041struct nfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042struct nfs_page {
Fred Isamand6d6dc72012-03-08 17:29:35 -050043 struct list_head wb_list; /* Defines state of page: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 struct page *wb_page; /* page to read in/write out */
45 struct nfs_open_context *wb_context; /* File state context info */
Trond Myklebustf11ac8d2010-06-25 16:35:53 -040046 struct nfs_lock_context *wb_lock_context; /* lock context info */
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +030047 pgoff_t wb_index; /* Offset >> PAGE_SHIFT */
48 unsigned int wb_offset, /* Offset & ~PAGE_MASK */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 wb_pgbase, /* Start of page data */
50 wb_bytes; /* Length of request */
Trond Myklebustc03b4022007-06-17 13:26:38 -040051 struct kref wb_kref; /* reference count */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 unsigned long wb_flags;
Trond Myklebust2f2c63b2012-06-08 11:56:09 -040053 struct nfs_write_verifier wb_verf; /* Commit cookie */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -040054 struct nfs_page *wb_this_page; /* list of reqs for this page */
55 struct nfs_page *wb_head; /* head pointer for req list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
Trond Myklebust1751c362011-06-10 13:30:23 -040058struct nfs_pageio_descriptor;
59struct nfs_pageio_ops {
Trond Myklebustd8007d42011-06-10 13:30:23 -040060 void (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *);
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -040061 size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *,
62 struct nfs_page *);
Trond Myklebust1751c362011-06-10 13:30:23 -040063 int (*pg_doio)(struct nfs_pageio_descriptor *);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -040064 unsigned int (*pg_get_mirror_count)(struct nfs_pageio_descriptor *,
65 struct nfs_page *);
Weston Andros Adamson2176bf42014-09-10 15:44:18 -040066 void (*pg_cleanup)(struct nfs_pageio_descriptor *);
Trond Myklebust1751c362011-06-10 13:30:23 -040067};
68
Anna Schumaker4a0de552014-05-06 09:12:30 -040069struct nfs_rw_ops {
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -040070 struct nfs_pgio_header *(*rw_alloc_header)(void);
71 void (*rw_free_header)(struct nfs_pgio_header *);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -040072 int (*rw_done)(struct rpc_task *, struct nfs_pgio_header *,
73 struct inode *);
74 void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *);
75 void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *,
Tom Haynesabde71f2014-06-09 13:12:20 -070076 const struct nfs_rpc_ops *,
Anna Schumaker1ed26f32014-05-06 09:12:37 -040077 struct rpc_task_setup *, int);
Anna Schumaker4a0de552014-05-06 09:12:30 -040078};
79
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -040080struct nfs_pgio_mirror {
Trond Myklebustd8a5ad72007-04-02 18:48:28 -040081 struct list_head pg_list;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -040082 unsigned long pg_bytes_written;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -040083 size_t pg_count;
84 size_t pg_bsize;
85 unsigned int pg_base;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -040086 unsigned char pg_recoalesce : 1;
87};
Trond Myklebustbcb71bb2007-04-02 18:48:28 -040088
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -040089struct nfs_pageio_descriptor {
90 unsigned char pg_moreio : 1;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -040091 struct inode *pg_inode;
Trond Myklebust1751c362011-06-10 13:30:23 -040092 const struct nfs_pageio_ops *pg_ops;
Anna Schumaker4a0de552014-05-06 09:12:30 -040093 const struct nfs_rw_ops *pg_rw_ops;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -040094 int pg_ioflags;
95 int pg_error;
Trond Myklebust50828d72011-07-12 13:42:02 -040096 const struct rpc_call_ops *pg_rpc_callops;
Fred Isaman061ae2e2012-04-20 14:47:48 -040097 const struct nfs_pgio_completion_ops *pg_completion_ops;
Fred Isaman94ad1c82011-03-01 01:34:14 +000098 struct pnfs_layout_segment *pg_lseg;
Trond Myklebust919e3bd2017-06-20 19:35:37 -040099 struct nfs_io_completion *pg_io_completion;
Fred Isaman584aa812012-04-20 14:47:51 -0400100 struct nfs_direct_req *pg_dreq;
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400101 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 */
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400108};
109
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -0400110/* arbitrarily selected limit to number of mirrors */
111#define NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX 16
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct page *page,
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400117 struct nfs_page *last,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned int offset,
119 unsigned int count);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400120extern void nfs_release_request(struct nfs_page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400123extern void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
124 struct inode *inode,
Trond Myklebust1751c362011-06-10 13:30:23 -0400125 const struct nfs_pageio_ops *pg_ops,
Fred Isaman061ae2e2012-04-20 14:47:48 -0400126 const struct nfs_pgio_completion_ops *compl_ops,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400127 const struct nfs_rw_ops *rw_ops,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400128 size_t bsize,
Trond Myklebust3bde7af2017-08-20 11:33:25 -0400129 int how);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400130extern int nfs_pageio_add_request(struct nfs_pageio_descriptor *,
131 struct nfs_page *);
Weston Andros Adamson53113ad2014-06-09 11:48:38 -0400132extern int nfs_pageio_resend(struct nfs_pageio_descriptor *,
133 struct nfs_pgio_header *);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400134extern void nfs_pageio_complete(struct nfs_pageio_descriptor *desc);
Trond Myklebust7fe7f842007-05-20 10:18:27 -0400135extern void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *, pgoff_t);
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400136extern size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
Benny Halevy19345cb2011-06-19 18:33:46 -0400137 struct nfs_page *prev,
138 struct nfs_page *req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139extern int nfs_wait_on_request(struct nfs_page *);
140extern void nfs_unlock_request(struct nfs_page *req);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400141extern void nfs_unlock_and_release_request(struct nfs_page *);
Trond Myklebust1344b7e2017-07-17 10:54:14 -0400142extern int nfs_page_group_lock(struct nfs_page *);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400143extern void nfs_page_group_unlock(struct nfs_page *);
144extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int);
Benjamin Coddington7d6ddf82017-04-11 12:50:10 -0400145extern bool nfs_async_iocounter_wait(struct rpc_task *, struct nfs_lock_context *);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
Trond Myklebust7ad84aa2012-05-09 13:19:15 -0400148 * Lock the page of an asynchronous request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
150static inline int
Trond Myklebust8dd37752012-03-15 17:16:40 -0400151nfs_lock_request(struct nfs_page *req)
152{
Trond Myklebust7ad84aa2012-05-09 13:19:15 -0400153 return !test_and_set_bit(PG_BUSY, &req->wb_flags);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400154}
155
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000156/**
157 * nfs_list_add_request - Insert a request into a list
158 * @req: request
159 * @head: head of list into which to insert the request.
160 */
161static inline void
162nfs_list_add_request(struct nfs_page *req, struct list_head *head)
163{
164 list_add_tail(&req->wb_list, head);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168/**
169 * nfs_list_remove_request - Remove a request from its wb_list
170 * @req: request
171 */
172static inline void
173nfs_list_remove_request(struct nfs_page *req)
174{
175 if (list_empty(&req->wb_list))
176 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 list_del_init(&req->wb_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static inline struct nfs_page *
181nfs_list_entry(struct list_head *head)
182{
183 return list_entry(head, struct nfs_page, wb_list);
184}
185
186static inline
187loff_t req_offset(struct nfs_page *req)
188{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300189 return (((loff_t)req->wb_index) << PAGE_SHIFT) + req->wb_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192#endif /* _LINUX_NFS_PAGE_H */