]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/nfs_page.h
ACPI: fix acpi_find_child_device() invocation in acpi_preset_companion()
[mirror_ubuntu-bionic-kernel.git] / include / linux / nfs_page.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
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>
1da177e4
LT
17#include <linux/sunrpc/auth.h>
18#include <linux/nfs_xdr.h>
19
c03b4024 20#include <linux/kref.h>
1da177e4
LT
21
22/*
23 * Valid flags for a dirty buffer
24 */
e468bae9 25enum {
12c05792
WAA
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 */
b412ddf0 30 PG_INODE_REF, /* extra ref held by inode when in writeback */
2bfc6e56
WAA
31 PG_HEADLOCK, /* page group lock of wb_head */
32 PG_TEARDOWN, /* page group sync for destroy */
67d0338e
WAA
33 PG_UNLOCKPAGE, /* page group sync bit in read path */
34 PG_UPTODATE, /* page group sync bit in read path */
20633f04
WAA
35 PG_WB_END, /* page group sync bit in write path */
36 PG_REMOVE, /* page group sync bit in write path */
b4f937cf
TM
37 PG_CONTENDED1, /* Is someone waiting for a lock? */
38 PG_CONTENDED2, /* Is someone waiting for a lock? */
e468bae9 39};
1da177e4 40
3da28eb1 41struct nfs_inode;
1da177e4 42struct nfs_page {
d6d6dc7c 43 struct list_head wb_list; /* Defines state of page: */
1da177e4
LT
44 struct page *wb_page; /* page to read in/write out */
45 struct nfs_open_context *wb_context; /* File state context info */
f11ac8db 46 struct nfs_lock_context *wb_lock_context; /* lock context info */
ea1754a0
KS
47 pgoff_t wb_index; /* Offset >> PAGE_SHIFT */
48 unsigned int wb_offset, /* Offset & ~PAGE_MASK */
1da177e4
LT
49 wb_pgbase, /* Start of page data */
50 wb_bytes; /* Length of request */
c03b4024 51 struct kref wb_kref; /* reference count */
1da177e4 52 unsigned long wb_flags;
2f2c63bc 53 struct nfs_write_verifier wb_verf; /* Commit cookie */
2bfc6e56
WAA
54 struct nfs_page *wb_this_page; /* list of reqs for this page */
55 struct nfs_page *wb_head; /* head pointer for req list */
1da177e4
LT
56};
57
1751c363
TM
58struct nfs_pageio_descriptor;
59struct nfs_pageio_ops {
d8007d4d 60 void (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *);
b4fdac1a
WAA
61 size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *,
62 struct nfs_page *);
1751c363 63 int (*pg_doio)(struct nfs_pageio_descriptor *);
a7d42ddb
WAA
64 unsigned int (*pg_get_mirror_count)(struct nfs_pageio_descriptor *,
65 struct nfs_page *);
2176bf42 66 void (*pg_cleanup)(struct nfs_pageio_descriptor *);
1751c363
TM
67};
68
4a0de55c 69struct nfs_rw_ops {
1e7f3a48
WAA
70 struct nfs_pgio_header *(*rw_alloc_header)(void);
71 void (*rw_free_header)(struct nfs_pgio_header *);
d45f60c6
WAA
72 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 *,
abde71f4 76 const struct nfs_rpc_ops *,
1ed26f33 77 struct rpc_task_setup *, int);
4a0de55c
AS
78};
79
a7d42ddb 80struct nfs_pgio_mirror {
d8a5ad75 81 struct list_head pg_list;
bcb71bba 82 unsigned long pg_bytes_written;
d8a5ad75
TM
83 size_t pg_count;
84 size_t pg_bsize;
85 unsigned int pg_base;
a7d42ddb
WAA
86 unsigned char pg_recoalesce : 1;
87};
bcb71bba 88
a7d42ddb
WAA
89struct nfs_pageio_descriptor {
90 unsigned char pg_moreio : 1;
bcb71bba 91 struct inode *pg_inode;
1751c363 92 const struct nfs_pageio_ops *pg_ops;
4a0de55c 93 const struct nfs_rw_ops *pg_rw_ops;
bcb71bba
TM
94 int pg_ioflags;
95 int pg_error;
50828d7e 96 const struct rpc_call_ops *pg_rpc_callops;
061ae2ed 97 const struct nfs_pgio_completion_ops *pg_completion_ops;
94ad1c80 98 struct pnfs_layout_segment *pg_lseg;
919e3bd9 99 struct nfs_io_completion *pg_io_completion;
584aa810 100 struct nfs_direct_req *pg_dreq;
a7d42ddb
WAA
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 */
d8a5ad75
TM
108};
109
a7d42ddb
WAA
110/* arbitrarily selected limit to number of mirrors */
111#define NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX 16
112
1da177e4 113#define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags))
1da177e4
LT
114
115extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx,
1da177e4 116 struct page *page,
2bfc6e56 117 struct nfs_page *last,
1da177e4
LT
118 unsigned int offset,
119 unsigned int count);
2bfc6e56 120extern void nfs_release_request(struct nfs_page *);
1da177e4
LT
121
122
bcb71bba
TM
123extern void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
124 struct inode *inode,
1751c363 125 const struct nfs_pageio_ops *pg_ops,
061ae2ed 126 const struct nfs_pgio_completion_ops *compl_ops,
4a0de55c 127 const struct nfs_rw_ops *rw_ops,
bcb71bba 128 size_t bsize,
3bde7afd 129 int how);
8b09bee3
TM
130extern int nfs_pageio_add_request(struct nfs_pageio_descriptor *,
131 struct nfs_page *);
53113ad3
WAA
132extern int nfs_pageio_resend(struct nfs_pageio_descriptor *,
133 struct nfs_pgio_header *);
bcb71bba 134extern void nfs_pageio_complete(struct nfs_pageio_descriptor *desc);
7fe7f848 135extern void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *, pgoff_t);
b4fdac1a 136extern size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
19345cb2
BH
137 struct nfs_page *prev,
138 struct nfs_page *req);
1da177e4
LT
139extern int nfs_wait_on_request(struct nfs_page *);
140extern void nfs_unlock_request(struct nfs_page *req);
2bfc6e56 141extern void nfs_unlock_and_release_request(struct nfs_page *);
1344b7ea 142extern int nfs_page_group_lock(struct nfs_page *);
2bfc6e56
WAA
143extern void nfs_page_group_unlock(struct nfs_page *);
144extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int);
7d6ddf88 145extern bool nfs_async_iocounter_wait(struct rpc_task *, struct nfs_lock_context *);
c6a556b8 146
1da177e4 147/*
7ad84aa9 148 * Lock the page of an asynchronous request
1da177e4 149 */
8dd37758
TM
150static inline int
151nfs_lock_request(struct nfs_page *req)
152{
7ad84aa9 153 return !test_and_set_bit(PG_BUSY, &req->wb_flags);
8dd37758
TM
154}
155
3da28eb1
TM
156/**
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);
3da28eb1
TM
165}
166
f8e8a134
TM
167/**
168 * nfs_list_move_request - Move a request to a new list
169 * @req: request
170 * @head: head of list into which to insert the request.
171 */
172static inline void
173nfs_list_move_request(struct nfs_page *req, struct list_head *head)
174{
175 list_move_tail(&req->wb_list, head);
176}
1da177e4
LT
177
178/**
179 * nfs_list_remove_request - Remove a request from its wb_list
180 * @req: request
181 */
182static inline void
183nfs_list_remove_request(struct nfs_page *req)
184{
185 if (list_empty(&req->wb_list))
186 return;
1da177e4 187 list_del_init(&req->wb_list);
1da177e4
LT
188}
189
1da177e4
LT
190static inline struct nfs_page *
191nfs_list_entry(struct list_head *head)
192{
193 return list_entry(head, struct nfs_page, wb_list);
194}
195
196static inline
197loff_t req_offset(struct nfs_page *req)
198{
09cbfeaf 199 return (((loff_t)req->wb_index) << PAGE_SHIFT) + req->wb_offset;
1da177e4
LT
200}
201
202#endif /* _LINUX_NFS_PAGE_H */