]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/nfs/pagelist.c | |
3 | * | |
4 | * A set of helper functions for managing NFS read and write requests. | |
5 | * The main purpose of these routines is to provide support for the | |
6 | * coalescing of several requests into a single RPC call. | |
7 | * | |
8 | * Copyright 2000, 2001 (c) Trond Myklebust <[email protected]> | |
9 | * | |
10 | */ | |
11 | ||
1da177e4 LT |
12 | #include <linux/slab.h> |
13 | #include <linux/file.h> | |
e8edc6e0 | 14 | #include <linux/sched.h> |
1da177e4 LT |
15 | #include <linux/sunrpc/clnt.h> |
16 | #include <linux/nfs3.h> | |
17 | #include <linux/nfs4.h> | |
18 | #include <linux/nfs_page.h> | |
19 | #include <linux/nfs_fs.h> | |
20 | #include <linux/nfs_mount.h> | |
21 | ||
8d5658c9 TM |
22 | #include "internal.h" |
23 | ||
e18b890b | 24 | static struct kmem_cache *nfs_page_cachep; |
1da177e4 LT |
25 | |
26 | static inline struct nfs_page * | |
27 | nfs_page_alloc(void) | |
28 | { | |
29 | struct nfs_page *p; | |
e94b1766 | 30 | p = kmem_cache_alloc(nfs_page_cachep, GFP_KERNEL); |
1da177e4 LT |
31 | if (p) { |
32 | memset(p, 0, sizeof(*p)); | |
33 | INIT_LIST_HEAD(&p->wb_list); | |
34 | } | |
35 | return p; | |
36 | } | |
37 | ||
38 | static inline void | |
39 | nfs_page_free(struct nfs_page *p) | |
40 | { | |
41 | kmem_cache_free(nfs_page_cachep, p); | |
42 | } | |
43 | ||
44 | /** | |
45 | * nfs_create_request - Create an NFS read/write request. | |
46 | * @file: file descriptor to use | |
47 | * @inode: inode to which the request is attached | |
48 | * @page: page to write | |
49 | * @offset: starting offset within the page for the write | |
50 | * @count: number of bytes to read/write | |
51 | * | |
52 | * The page must be locked by the caller. This makes sure we never | |
a19b89ca | 53 | * create two different requests for the same page. |
1da177e4 LT |
54 | * User should ensure it is safe to sleep in this function. |
55 | */ | |
56 | struct nfs_page * | |
57 | nfs_create_request(struct nfs_open_context *ctx, struct inode *inode, | |
58 | struct page *page, | |
59 | unsigned int offset, unsigned int count) | |
60 | { | |
61 | struct nfs_server *server = NFS_SERVER(inode); | |
62 | struct nfs_page *req; | |
63 | ||
1da177e4 LT |
64 | for (;;) { |
65 | /* try to allocate the request struct */ | |
66 | req = nfs_page_alloc(); | |
67 | if (req != NULL) | |
68 | break; | |
69 | ||
1da177e4 LT |
70 | if (signalled() && (server->flags & NFS_MOUNT_INTR)) |
71 | return ERR_PTR(-ERESTARTSYS); | |
72 | yield(); | |
73 | } | |
74 | ||
75 | /* Initialize the request struct. Initially, we assume a | |
76 | * long write-back delay. This will be adjusted in | |
77 | * update_nfs_request below if the region is not locked. */ | |
78 | req->wb_page = page; | |
79 | atomic_set(&req->wb_complete, 0); | |
80 | req->wb_index = page->index; | |
81 | page_cache_get(page); | |
cd52ed35 TM |
82 | BUG_ON(PagePrivate(page)); |
83 | BUG_ON(!PageLocked(page)); | |
84 | BUG_ON(page->mapping->host != inode); | |
1da177e4 LT |
85 | req->wb_offset = offset; |
86 | req->wb_pgbase = offset; | |
87 | req->wb_bytes = count; | |
1da177e4 | 88 | req->wb_context = get_nfs_open_context(ctx); |
c03b4024 | 89 | kref_init(&req->wb_kref); |
1da177e4 LT |
90 | return req; |
91 | } | |
92 | ||
93 | /** | |
94 | * nfs_unlock_request - Unlock request and wake up sleepers. | |
95 | * @req: | |
96 | */ | |
97 | void nfs_unlock_request(struct nfs_page *req) | |
98 | { | |
99 | if (!NFS_WBACK_BUSY(req)) { | |
100 | printk(KERN_ERR "NFS: Invalid unlock attempted\n"); | |
101 | BUG(); | |
102 | } | |
103 | smp_mb__before_clear_bit(); | |
104 | clear_bit(PG_BUSY, &req->wb_flags); | |
105 | smp_mb__after_clear_bit(); | |
464a98bd | 106 | wake_up_bit(&req->wb_flags, PG_BUSY); |
1da177e4 LT |
107 | nfs_release_request(req); |
108 | } | |
109 | ||
c6a556b8 | 110 | /** |
9fd367f0 | 111 | * nfs_set_page_tag_locked - Tag a request as locked |
c6a556b8 TM |
112 | * @req: |
113 | */ | |
acee478a | 114 | int nfs_set_page_tag_locked(struct nfs_page *req) |
c6a556b8 | 115 | { |
88be9f99 | 116 | struct nfs_inode *nfsi = NFS_I(req->wb_context->path.dentry->d_inode); |
c6a556b8 | 117 | |
acee478a | 118 | if (!nfs_lock_request_dontget(req)) |
c6a556b8 | 119 | return 0; |
acee478a TM |
120 | if (req->wb_page != NULL) |
121 | radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_LOCKED); | |
c6a556b8 TM |
122 | return 1; |
123 | } | |
124 | ||
125 | /** | |
9fd367f0 | 126 | * nfs_clear_page_tag_locked - Clear request tag and wake up sleepers |
c6a556b8 | 127 | */ |
9fd367f0 | 128 | void nfs_clear_page_tag_locked(struct nfs_page *req) |
c6a556b8 | 129 | { |
587142f8 TM |
130 | struct inode *inode = req->wb_context->path.dentry->d_inode; |
131 | struct nfs_inode *nfsi = NFS_I(inode); | |
c6a556b8 | 132 | |
deb7d638 | 133 | if (req->wb_page != NULL) { |
587142f8 | 134 | spin_lock(&inode->i_lock); |
9fd367f0 | 135 | radix_tree_tag_clear(&nfsi->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_LOCKED); |
acee478a | 136 | nfs_unlock_request(req); |
587142f8 | 137 | spin_unlock(&inode->i_lock); |
acee478a TM |
138 | } else |
139 | nfs_unlock_request(req); | |
c6a556b8 TM |
140 | } |
141 | ||
1da177e4 LT |
142 | /** |
143 | * nfs_clear_request - Free up all resources allocated to the request | |
144 | * @req: | |
145 | * | |
146 | * Release page resources associated with a write request after it | |
147 | * has completed. | |
148 | */ | |
149 | void nfs_clear_request(struct nfs_page *req) | |
150 | { | |
cd52ed35 TM |
151 | struct page *page = req->wb_page; |
152 | if (page != NULL) { | |
cd52ed35 | 153 | page_cache_release(page); |
1da177e4 LT |
154 | req->wb_page = NULL; |
155 | } | |
156 | } | |
157 | ||
158 | ||
159 | /** | |
160 | * nfs_release_request - Release the count on an NFS read/write request | |
161 | * @req: request to release | |
162 | * | |
163 | * Note: Should never be called with the spinlock held! | |
164 | */ | |
c03b4024 | 165 | static void nfs_free_request(struct kref *kref) |
1da177e4 | 166 | { |
c03b4024 | 167 | struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref); |
1da177e4 | 168 | |
1da177e4 LT |
169 | /* Release struct file or cached credential */ |
170 | nfs_clear_request(req); | |
171 | put_nfs_open_context(req->wb_context); | |
172 | nfs_page_free(req); | |
173 | } | |
174 | ||
c03b4024 TM |
175 | void nfs_release_request(struct nfs_page *req) |
176 | { | |
177 | kref_put(&req->wb_kref, nfs_free_request); | |
178 | } | |
179 | ||
464a98bd TM |
180 | static int nfs_wait_bit_interruptible(void *word) |
181 | { | |
182 | int ret = 0; | |
183 | ||
184 | if (signal_pending(current)) | |
185 | ret = -ERESTARTSYS; | |
186 | else | |
187 | schedule(); | |
188 | return ret; | |
189 | } | |
190 | ||
1da177e4 LT |
191 | /** |
192 | * nfs_wait_on_request - Wait for a request to complete. | |
193 | * @req: request to wait upon. | |
194 | * | |
195 | * Interruptible by signals only if mounted with intr flag. | |
196 | * The user is responsible for holding a count on the request. | |
197 | */ | |
198 | int | |
199 | nfs_wait_on_request(struct nfs_page *req) | |
200 | { | |
88be9f99 | 201 | struct rpc_clnt *clnt = NFS_CLIENT(req->wb_context->path.dentry->d_inode); |
464a98bd TM |
202 | sigset_t oldmask; |
203 | int ret = 0; | |
204 | ||
205 | if (!test_bit(PG_BUSY, &req->wb_flags)) | |
206 | goto out; | |
207 | /* | |
208 | * Note: the call to rpc_clnt_sigmask() suffices to ensure that we | |
209 | * are not interrupted if intr flag is not set | |
210 | */ | |
211 | rpc_clnt_sigmask(clnt, &oldmask); | |
212 | ret = out_of_line_wait_on_bit(&req->wb_flags, PG_BUSY, | |
213 | nfs_wait_bit_interruptible, TASK_INTERRUPTIBLE); | |
214 | rpc_clnt_sigunmask(clnt, &oldmask); | |
215 | out: | |
216 | return ret; | |
1da177e4 LT |
217 | } |
218 | ||
219 | /** | |
d8a5ad75 TM |
220 | * nfs_pageio_init - initialise a page io descriptor |
221 | * @desc: pointer to descriptor | |
bcb71bba TM |
222 | * @inode: pointer to inode |
223 | * @doio: pointer to io function | |
224 | * @bsize: io block size | |
225 | * @io_flags: extra parameters for the io function | |
d8a5ad75 | 226 | */ |
bcb71bba TM |
227 | void nfs_pageio_init(struct nfs_pageio_descriptor *desc, |
228 | struct inode *inode, | |
8d5658c9 | 229 | int (*doio)(struct inode *, struct list_head *, unsigned int, size_t, int), |
84dde76c | 230 | size_t bsize, |
bcb71bba | 231 | int io_flags) |
d8a5ad75 TM |
232 | { |
233 | INIT_LIST_HEAD(&desc->pg_list); | |
bcb71bba | 234 | desc->pg_bytes_written = 0; |
d8a5ad75 TM |
235 | desc->pg_count = 0; |
236 | desc->pg_bsize = bsize; | |
237 | desc->pg_base = 0; | |
bcb71bba TM |
238 | desc->pg_inode = inode; |
239 | desc->pg_doio = doio; | |
240 | desc->pg_ioflags = io_flags; | |
241 | desc->pg_error = 0; | |
d8a5ad75 TM |
242 | } |
243 | ||
244 | /** | |
245 | * nfs_can_coalesce_requests - test two requests for compatibility | |
246 | * @prev: pointer to nfs_page | |
247 | * @req: pointer to nfs_page | |
248 | * | |
249 | * The nfs_page structures 'prev' and 'req' are compared to ensure that the | |
250 | * page data area they describe is contiguous, and that their RPC | |
251 | * credentials, NFSv4 open state, and lockowners are the same. | |
252 | * | |
253 | * Return 'true' if this is the case, else return 'false'. | |
254 | */ | |
255 | static int nfs_can_coalesce_requests(struct nfs_page *prev, | |
256 | struct nfs_page *req) | |
257 | { | |
258 | if (req->wb_context->cred != prev->wb_context->cred) | |
259 | return 0; | |
260 | if (req->wb_context->lockowner != prev->wb_context->lockowner) | |
261 | return 0; | |
262 | if (req->wb_context->state != prev->wb_context->state) | |
263 | return 0; | |
264 | if (req->wb_index != (prev->wb_index + 1)) | |
265 | return 0; | |
266 | if (req->wb_pgbase != 0) | |
267 | return 0; | |
268 | if (prev->wb_pgbase + prev->wb_bytes != PAGE_CACHE_SIZE) | |
269 | return 0; | |
270 | return 1; | |
271 | } | |
272 | ||
273 | /** | |
bcb71bba | 274 | * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list. |
d8a5ad75 TM |
275 | * @desc: destination io descriptor |
276 | * @req: request | |
277 | * | |
278 | * Returns true if the request 'req' was successfully coalesced into the | |
279 | * existing list of pages 'desc'. | |
280 | */ | |
bcb71bba TM |
281 | static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc, |
282 | struct nfs_page *req) | |
d8a5ad75 TM |
283 | { |
284 | size_t newlen = req->wb_bytes; | |
285 | ||
286 | if (desc->pg_count != 0) { | |
287 | struct nfs_page *prev; | |
288 | ||
289 | /* | |
290 | * FIXME: ideally we should be able to coalesce all requests | |
291 | * that are not block boundary aligned, but currently this | |
292 | * is problematic for the case of bsize < PAGE_CACHE_SIZE, | |
293 | * since nfs_flush_multi and nfs_pagein_multi assume you | |
294 | * can have only one struct nfs_page. | |
295 | */ | |
8d5658c9 TM |
296 | if (desc->pg_bsize < PAGE_SIZE) |
297 | return 0; | |
d8a5ad75 | 298 | newlen += desc->pg_count; |
8d5658c9 | 299 | if (newlen > desc->pg_bsize) |
d8a5ad75 TM |
300 | return 0; |
301 | prev = nfs_list_entry(desc->pg_list.prev); | |
302 | if (!nfs_can_coalesce_requests(prev, req)) | |
303 | return 0; | |
304 | } else | |
305 | desc->pg_base = req->wb_pgbase; | |
306 | nfs_list_remove_request(req); | |
307 | nfs_list_add_request(req, &desc->pg_list); | |
308 | desc->pg_count = newlen; | |
309 | return 1; | |
310 | } | |
311 | ||
bcb71bba TM |
312 | /* |
313 | * Helper for nfs_pageio_add_request and nfs_pageio_complete | |
314 | */ | |
315 | static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc) | |
316 | { | |
317 | if (!list_empty(&desc->pg_list)) { | |
318 | int error = desc->pg_doio(desc->pg_inode, | |
319 | &desc->pg_list, | |
8d5658c9 TM |
320 | nfs_page_array_len(desc->pg_base, |
321 | desc->pg_count), | |
bcb71bba TM |
322 | desc->pg_count, |
323 | desc->pg_ioflags); | |
324 | if (error < 0) | |
325 | desc->pg_error = error; | |
326 | else | |
327 | desc->pg_bytes_written += desc->pg_count; | |
328 | } | |
329 | if (list_empty(&desc->pg_list)) { | |
330 | desc->pg_count = 0; | |
331 | desc->pg_base = 0; | |
332 | } | |
333 | } | |
334 | ||
335 | /** | |
336 | * nfs_pageio_add_request - Attempt to coalesce a request into a page list. | |
337 | * @desc: destination io descriptor | |
338 | * @req: request | |
339 | * | |
340 | * Returns true if the request 'req' was successfully coalesced into the | |
341 | * existing list of pages 'desc'. | |
342 | */ | |
8b09bee3 TM |
343 | int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc, |
344 | struct nfs_page *req) | |
bcb71bba TM |
345 | { |
346 | while (!nfs_pageio_do_add_request(desc, req)) { | |
347 | nfs_pageio_doio(desc); | |
348 | if (desc->pg_error < 0) | |
349 | return 0; | |
350 | } | |
351 | return 1; | |
352 | } | |
353 | ||
bcb71bba TM |
354 | /** |
355 | * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor | |
356 | * @desc: pointer to io descriptor | |
357 | */ | |
358 | void nfs_pageio_complete(struct nfs_pageio_descriptor *desc) | |
359 | { | |
360 | nfs_pageio_doio(desc); | |
361 | } | |
362 | ||
7fe7f848 TM |
363 | /** |
364 | * nfs_pageio_cond_complete - Conditional I/O completion | |
365 | * @desc: pointer to io descriptor | |
366 | * @index: page index | |
367 | * | |
368 | * It is important to ensure that processes don't try to take locks | |
369 | * on non-contiguous ranges of pages as that might deadlock. This | |
370 | * function should be called before attempting to wait on a locked | |
371 | * nfs_page. It will complete the I/O if the page index 'index' | |
372 | * is not contiguous with the existing list of pages in 'desc'. | |
373 | */ | |
374 | void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index) | |
375 | { | |
376 | if (!list_empty(&desc->pg_list)) { | |
377 | struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev); | |
378 | if (index != prev->wb_index + 1) | |
379 | nfs_pageio_doio(desc); | |
380 | } | |
381 | } | |
382 | ||
3da28eb1 | 383 | #define NFS_SCAN_MAXENTRIES 16 |
1da177e4 LT |
384 | /** |
385 | * nfs_scan_list - Scan a list for matching requests | |
d2ccddf0 | 386 | * @nfsi: NFS inode |
1da177e4 LT |
387 | * @dst: Destination list |
388 | * @idx_start: lower bound of page->index to scan | |
389 | * @npages: idx_start + npages sets the upper bound to scan. | |
5c369683 | 390 | * @tag: tag to scan for |
1da177e4 LT |
391 | * |
392 | * Moves elements from one of the inode request lists. | |
393 | * If the number of requests is set to 0, the entire address_space | |
394 | * starting at index idx_start, is scanned. | |
395 | * The requests are *not* checked to ensure that they form a contiguous set. | |
587142f8 | 396 | * You must be holding the inode's i_lock when calling this function |
1da177e4 | 397 | */ |
5c369683 | 398 | int nfs_scan_list(struct nfs_inode *nfsi, |
ca52fec1 | 399 | struct list_head *dst, pgoff_t idx_start, |
5c369683 | 400 | unsigned int npages, int tag) |
1da177e4 | 401 | { |
d2ccddf0 TM |
402 | struct nfs_page *pgvec[NFS_SCAN_MAXENTRIES]; |
403 | struct nfs_page *req; | |
ca52fec1 | 404 | pgoff_t idx_end; |
d2ccddf0 TM |
405 | int found, i; |
406 | int res; | |
1da177e4 LT |
407 | |
408 | res = 0; | |
409 | if (npages == 0) | |
410 | idx_end = ~0; | |
411 | else | |
412 | idx_end = idx_start + npages - 1; | |
413 | ||
d2ccddf0 | 414 | for (;;) { |
5c369683 | 415 | found = radix_tree_gang_lookup_tag(&nfsi->nfs_page_tree, |
d2ccddf0 | 416 | (void **)&pgvec[0], idx_start, |
5c369683 | 417 | NFS_SCAN_MAXENTRIES, tag); |
d2ccddf0 | 418 | if (found <= 0) |
1da177e4 | 419 | break; |
d2ccddf0 TM |
420 | for (i = 0; i < found; i++) { |
421 | req = pgvec[i]; | |
422 | if (req->wb_index > idx_end) | |
423 | goto out; | |
424 | idx_start = req->wb_index + 1; | |
9fd367f0 | 425 | if (nfs_set_page_tag_locked(req)) { |
acee478a | 426 | kref_get(&req->wb_kref); |
d2ccddf0 | 427 | nfs_list_remove_request(req); |
5c369683 TM |
428 | radix_tree_tag_clear(&nfsi->nfs_page_tree, |
429 | req->wb_index, tag); | |
d2ccddf0 TM |
430 | nfs_list_add_request(req, dst); |
431 | res++; | |
dce34ce2 TM |
432 | if (res == INT_MAX) |
433 | goto out; | |
d2ccddf0 TM |
434 | } |
435 | } | |
edc05fc1 | 436 | /* for latency reduction */ |
587142f8 | 437 | cond_resched_lock(&nfsi->vfs_inode.i_lock); |
1da177e4 | 438 | } |
d2ccddf0 | 439 | out: |
1da177e4 LT |
440 | return res; |
441 | } | |
442 | ||
f7b422b1 | 443 | int __init nfs_init_nfspagecache(void) |
1da177e4 LT |
444 | { |
445 | nfs_page_cachep = kmem_cache_create("nfs_page", | |
446 | sizeof(struct nfs_page), | |
447 | 0, SLAB_HWCACHE_ALIGN, | |
20c2df83 | 448 | NULL); |
1da177e4 LT |
449 | if (nfs_page_cachep == NULL) |
450 | return -ENOMEM; | |
451 | ||
452 | return 0; | |
453 | } | |
454 | ||
266bee88 | 455 | void nfs_destroy_nfspagecache(void) |
1da177e4 | 456 | { |
1a1d92c1 | 457 | kmem_cache_destroy(nfs_page_cachep); |
1da177e4 LT |
458 | } |
459 |