]> Pileus Git - ~andy/linux/blob - fs/nfs/read.c
NFS: Clean up: split out the RPC transmission from nfs_pagein_multi/one
[~andy/linux] / fs / nfs / read.c
1 /*
2  * linux/fs/nfs/read.c
3  *
4  * Block I/O for NFS
5  *
6  * Partial copy of Linus' read cache modifications to fs/nfs/file.c
7  * modified for async RPC by okir@monad.swb.de
8  */
9
10 #include <linux/time.h>
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/fcntl.h>
14 #include <linux/stat.h>
15 #include <linux/mm.h>
16 #include <linux/slab.h>
17 #include <linux/pagemap.h>
18 #include <linux/sunrpc/clnt.h>
19 #include <linux/nfs_fs.h>
20 #include <linux/nfs_page.h>
21 #include <linux/module.h>
22
23 #include <asm/system.h>
24 #include "pnfs.h"
25
26 #include "nfs4_fs.h"
27 #include "internal.h"
28 #include "iostat.h"
29 #include "fscache.h"
30
31 #define NFSDBG_FACILITY         NFSDBG_PAGECACHE
32
33 static const struct nfs_pageio_ops nfs_pageio_read_ops;
34 static const struct rpc_call_ops nfs_read_partial_ops;
35 static const struct rpc_call_ops nfs_read_full_ops;
36
37 static struct kmem_cache *nfs_rdata_cachep;
38 static mempool_t *nfs_rdata_mempool;
39
40 #define MIN_POOL_READ   (32)
41
42 struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount)
43 {
44         struct nfs_read_data *p = mempool_alloc(nfs_rdata_mempool, GFP_KERNEL);
45
46         if (p) {
47                 memset(p, 0, sizeof(*p));
48                 INIT_LIST_HEAD(&p->pages);
49                 p->npages = pagecount;
50                 if (pagecount <= ARRAY_SIZE(p->page_array))
51                         p->pagevec = p->page_array;
52                 else {
53                         p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_KERNEL);
54                         if (!p->pagevec) {
55                                 mempool_free(p, nfs_rdata_mempool);
56                                 p = NULL;
57                         }
58                 }
59         }
60         return p;
61 }
62
63 void nfs_readdata_free(struct nfs_read_data *p)
64 {
65         if (p && (p->pagevec != &p->page_array[0]))
66                 kfree(p->pagevec);
67         mempool_free(p, nfs_rdata_mempool);
68 }
69
70 static void nfs_readdata_release(struct nfs_read_data *rdata)
71 {
72         put_lseg(rdata->lseg);
73         put_nfs_open_context(rdata->args.context);
74         nfs_readdata_free(rdata);
75 }
76
77 static
78 int nfs_return_empty_page(struct page *page)
79 {
80         zero_user(page, 0, PAGE_CACHE_SIZE);
81         SetPageUptodate(page);
82         unlock_page(page);
83         return 0;
84 }
85
86 static void nfs_readpage_truncate_uninitialised_page(struct nfs_read_data *data)
87 {
88         unsigned int remainder = data->args.count - data->res.count;
89         unsigned int base = data->args.pgbase + data->res.count;
90         unsigned int pglen;
91         struct page **pages;
92
93         if (data->res.eof == 0 || remainder == 0)
94                 return;
95         /*
96          * Note: "remainder" can never be negative, since we check for
97          *      this in the XDR code.
98          */
99         pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
100         base &= ~PAGE_CACHE_MASK;
101         pglen = PAGE_CACHE_SIZE - base;
102         for (;;) {
103                 if (remainder <= pglen) {
104                         zero_user(*pages, base, remainder);
105                         break;
106                 }
107                 zero_user(*pages, base, pglen);
108                 pages++;
109                 remainder -= pglen;
110                 pglen = PAGE_CACHE_SIZE;
111                 base = 0;
112         }
113 }
114
115 void nfs_pageio_init_read_mds(struct nfs_pageio_descriptor *pgio,
116                 struct inode *inode)
117 {
118         nfs_pageio_init(pgio, inode, &nfs_pageio_read_ops,
119                         NFS_SERVER(inode)->rsize, 0);
120 }
121 EXPORT_SYMBOL_GPL(nfs_pageio_init_read_mds);
122
123 static void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
124                 struct inode *inode)
125 {
126         if (!pnfs_pageio_init_read(pgio, inode))
127                 nfs_pageio_init_read_mds(pgio, inode);
128 }
129
130 int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
131                        struct page *page)
132 {
133         struct nfs_page *new;
134         unsigned int len;
135         struct nfs_pageio_descriptor pgio;
136
137         len = nfs_page_length(page);
138         if (len == 0)
139                 return nfs_return_empty_page(page);
140         new = nfs_create_request(ctx, inode, page, 0, len);
141         if (IS_ERR(new)) {
142                 unlock_page(page);
143                 return PTR_ERR(new);
144         }
145         if (len < PAGE_CACHE_SIZE)
146                 zero_user_segment(page, len, PAGE_CACHE_SIZE);
147
148         nfs_pageio_init_read(&pgio, inode);
149         nfs_pageio_add_request(&pgio, new);
150         nfs_pageio_complete(&pgio);
151         return 0;
152 }
153
154 static void nfs_readpage_release(struct nfs_page *req)
155 {
156         struct inode *d_inode = req->wb_context->path.dentry->d_inode;
157
158         if (PageUptodate(req->wb_page))
159                 nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
160
161         unlock_page(req->wb_page);
162
163         dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
164                         req->wb_context->path.dentry->d_inode->i_sb->s_id,
165                         (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
166                         req->wb_bytes,
167                         (long long)req_offset(req));
168         nfs_release_request(req);
169 }
170
171 int nfs_initiate_read(struct nfs_read_data *data, struct rpc_clnt *clnt,
172                       const struct rpc_call_ops *call_ops)
173 {
174         struct inode *inode = data->inode;
175         int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
176         struct rpc_task *task;
177         struct rpc_message msg = {
178                 .rpc_argp = &data->args,
179                 .rpc_resp = &data->res,
180                 .rpc_cred = data->cred,
181         };
182         struct rpc_task_setup task_setup_data = {
183                 .task = &data->task,
184                 .rpc_client = clnt,
185                 .rpc_message = &msg,
186                 .callback_ops = call_ops,
187                 .callback_data = data,
188                 .workqueue = nfsiod_workqueue,
189                 .flags = RPC_TASK_ASYNC | swap_flags,
190         };
191
192         /* Set up the initial task struct. */
193         NFS_PROTO(inode)->read_setup(data, &msg);
194
195         dprintk("NFS: %5u initiated read call (req %s/%lld, %u bytes @ "
196                         "offset %llu)\n",
197                         data->task.tk_pid,
198                         inode->i_sb->s_id,
199                         (long long)NFS_FILEID(inode),
200                         data->args.count,
201                         (unsigned long long)data->args.offset);
202
203         task = rpc_run_task(&task_setup_data);
204         if (IS_ERR(task))
205                 return PTR_ERR(task);
206         rpc_put_task(task);
207         return 0;
208 }
209 EXPORT_SYMBOL_GPL(nfs_initiate_read);
210
211 /*
212  * Set up the NFS read request struct
213  */
214 static void nfs_read_rpcsetup(struct nfs_page *req, struct nfs_read_data *data,
215                 unsigned int count, unsigned int offset)
216 {
217         struct inode *inode = req->wb_context->path.dentry->d_inode;
218
219         data->req         = req;
220         data->inode       = inode;
221         data->cred        = req->wb_context->cred;
222
223         data->args.fh     = NFS_FH(inode);
224         data->args.offset = req_offset(req) + offset;
225         data->args.pgbase = req->wb_pgbase + offset;
226         data->args.pages  = data->pagevec;
227         data->args.count  = count;
228         data->args.context = get_nfs_open_context(req->wb_context);
229         data->args.lock_context = req->wb_lock_context;
230
231         data->res.fattr   = &data->fattr;
232         data->res.count   = count;
233         data->res.eof     = 0;
234         nfs_fattr_init(&data->fattr);
235 }
236
237 static int nfs_do_read(struct nfs_read_data *data,
238                 const struct rpc_call_ops *call_ops,
239                 struct pnfs_layout_segment *lseg)
240 {
241         struct inode *inode = data->args.context->path.dentry->d_inode;
242
243         if (lseg) {
244                 data->lseg = get_lseg(lseg);
245                 if (pnfs_try_to_read_data(data, call_ops) == PNFS_ATTEMPTED)
246                         return 0;
247                 put_lseg(data->lseg);
248                 data->lseg = NULL;
249         }
250
251         return nfs_initiate_read(data, NFS_CLIENT(inode), call_ops);
252 }
253
254 static int
255 nfs_do_multiple_reads(struct list_head *head,
256                 const struct rpc_call_ops *call_ops,
257                 struct pnfs_layout_segment *lseg)
258 {
259         struct nfs_read_data *data;
260         int ret = 0;
261
262         while (!list_empty(head)) {
263                 int ret2;
264
265                 data = list_entry(head->next, struct nfs_read_data, list);
266                 list_del_init(&data->list);
267
268                 ret2 = nfs_do_read(data, call_ops, lseg);
269                 if (ret == 0)
270                         ret = ret2;
271         }
272         return ret;
273 }
274
275 static void
276 nfs_async_read_error(struct list_head *head)
277 {
278         struct nfs_page *req;
279
280         while (!list_empty(head)) {
281                 req = nfs_list_entry(head->next);
282                 nfs_list_remove_request(req);
283                 SetPageError(req->wb_page);
284                 nfs_readpage_release(req);
285         }
286 }
287
288 /*
289  * Generate multiple requests to fill a single page.
290  *
291  * We optimize to reduce the number of read operations on the wire.  If we
292  * detect that we're reading a page, or an area of a page, that is past the
293  * end of file, we do not generate NFS read operations but just clear the
294  * parts of the page that would have come back zero from the server anyway.
295  *
296  * We rely on the cached value of i_size to make this determination; another
297  * client can fill pages on the server past our cached end-of-file, but we
298  * won't see the new data until our attribute cache is updated.  This is more
299  * or less conventional NFS client behavior.
300  */
301 static int nfs_pagein_multi(struct nfs_pageio_descriptor *desc, struct list_head *res)
302 {
303         struct nfs_page *req = nfs_list_entry(desc->pg_list.next);
304         struct page *page = req->wb_page;
305         struct nfs_read_data *data;
306         size_t rsize = NFS_SERVER(desc->pg_inode)->rsize, nbytes;
307         unsigned int offset;
308         int requests = 0;
309         int ret = 0;
310
311         nfs_list_remove_request(req);
312
313         offset = 0;
314         nbytes = desc->pg_count;
315         do {
316                 size_t len = min(nbytes,rsize);
317
318                 data = nfs_readdata_alloc(1);
319                 if (!data)
320                         goto out_bad;
321                 data->pagevec[0] = page;
322                 nfs_read_rpcsetup(req, data, len, offset);
323                 list_add(&data->list, res);
324                 requests++;
325                 nbytes -= len;
326                 offset += len;
327         } while(nbytes != 0);
328         atomic_set(&req->wb_complete, requests);
329         ClearPageError(page);
330         return ret;
331 out_bad:
332         while (!list_empty(res)) {
333                 data = list_entry(res->next, struct nfs_read_data, list);
334                 list_del(&data->list);
335                 nfs_readdata_free(data);
336         }
337         SetPageError(page);
338         nfs_readpage_release(req);
339         return -ENOMEM;
340 }
341
342 static int nfs_pagein_one(struct nfs_pageio_descriptor *desc, struct list_head *res)
343 {
344         struct nfs_page         *req;
345         struct page             **pages;
346         struct nfs_read_data    *data;
347         struct list_head *head = &desc->pg_list;
348         int ret = 0;
349
350         data = nfs_readdata_alloc(nfs_page_array_len(desc->pg_base,
351                                                      desc->pg_count));
352         if (!data) {
353                 nfs_async_read_error(head);
354                 ret = -ENOMEM;
355                 goto out;
356         }
357
358         pages = data->pagevec;
359         while (!list_empty(head)) {
360                 req = nfs_list_entry(head->next);
361                 nfs_list_remove_request(req);
362                 nfs_list_add_request(req, &data->pages);
363                 ClearPageError(req->wb_page);
364                 *pages++ = req->wb_page;
365         }
366         req = nfs_list_entry(data->pages.next);
367
368         nfs_read_rpcsetup(req, data, desc->pg_count, 0);
369         list_add(&data->list, res);
370 out:
371         return ret;
372 }
373
374 int nfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
375 {
376         LIST_HEAD(head);
377         int ret;
378
379         if (desc->pg_bsize < PAGE_CACHE_SIZE) {
380                 ret = nfs_pagein_multi(desc, &head);
381                 if (ret == 0)
382                         ret = nfs_do_multiple_reads(&head,
383                                         &nfs_read_partial_ops,
384                                         desc->pg_lseg);
385         } else {
386                 ret = nfs_pagein_one(desc, &head);
387                 if (ret == 0)
388                         ret = nfs_do_multiple_reads(&head,
389                                         &nfs_read_full_ops,
390                                         desc->pg_lseg);
391         }
392         put_lseg(desc->pg_lseg);
393         desc->pg_lseg = NULL;
394         return ret;
395 }
396 EXPORT_SYMBOL_GPL(nfs_generic_pg_readpages);
397
398
399 static const struct nfs_pageio_ops nfs_pageio_read_ops = {
400         .pg_test = nfs_generic_pg_test,
401         .pg_doio = nfs_generic_pg_readpages,
402 };
403
404 /*
405  * This is the callback from RPC telling us whether a reply was
406  * received or some error occurred (timeout or socket shutdown).
407  */
408 int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
409 {
410         int status;
411
412         dprintk("NFS: %s: %5u, (status %d)\n", __func__, task->tk_pid,
413                         task->tk_status);
414
415         status = NFS_PROTO(data->inode)->read_done(task, data);
416         if (status != 0)
417                 return status;
418
419         nfs_add_stats(data->inode, NFSIOS_SERVERREADBYTES, data->res.count);
420
421         if (task->tk_status == -ESTALE) {
422                 set_bit(NFS_INO_STALE, &NFS_I(data->inode)->flags);
423                 nfs_mark_for_revalidate(data->inode);
424         }
425         return 0;
426 }
427
428 static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
429 {
430         struct nfs_readargs *argp = &data->args;
431         struct nfs_readres *resp = &data->res;
432
433         if (resp->eof || resp->count == argp->count)
434                 return;
435
436         /* This is a short read! */
437         nfs_inc_stats(data->inode, NFSIOS_SHORTREAD);
438         /* Has the server at least made some progress? */
439         if (resp->count == 0)
440                 return;
441
442         /* Yes, so retry the read at the end of the data */
443         data->mds_offset += resp->count;
444         argp->offset += resp->count;
445         argp->pgbase += resp->count;
446         argp->count -= resp->count;
447         nfs_restart_rpc(task, NFS_SERVER(data->inode)->nfs_client);
448 }
449
450 /*
451  * Handle a read reply that fills part of a page.
452  */
453 static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata)
454 {
455         struct nfs_read_data *data = calldata;
456  
457         if (nfs_readpage_result(task, data) != 0)
458                 return;
459         if (task->tk_status < 0)
460                 return;
461
462         nfs_readpage_truncate_uninitialised_page(data);
463         nfs_readpage_retry(task, data);
464 }
465
466 static void nfs_readpage_release_partial(void *calldata)
467 {
468         struct nfs_read_data *data = calldata;
469         struct nfs_page *req = data->req;
470         struct page *page = req->wb_page;
471         int status = data->task.tk_status;
472
473         if (status < 0)
474                 SetPageError(page);
475
476         if (atomic_dec_and_test(&req->wb_complete)) {
477                 if (!PageError(page))
478                         SetPageUptodate(page);
479                 nfs_readpage_release(req);
480         }
481         nfs_readdata_release(calldata);
482 }
483
484 #if defined(CONFIG_NFS_V4_1)
485 void nfs_read_prepare(struct rpc_task *task, void *calldata)
486 {
487         struct nfs_read_data *data = calldata;
488
489         if (nfs4_setup_sequence(NFS_SERVER(data->inode),
490                                 &data->args.seq_args, &data->res.seq_res,
491                                 0, task))
492                 return;
493         rpc_call_start(task);
494 }
495 #endif /* CONFIG_NFS_V4_1 */
496
497 static const struct rpc_call_ops nfs_read_partial_ops = {
498 #if defined(CONFIG_NFS_V4_1)
499         .rpc_call_prepare = nfs_read_prepare,
500 #endif /* CONFIG_NFS_V4_1 */
501         .rpc_call_done = nfs_readpage_result_partial,
502         .rpc_release = nfs_readpage_release_partial,
503 };
504
505 static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data)
506 {
507         unsigned int count = data->res.count;
508         unsigned int base = data->args.pgbase;
509         struct page **pages;
510
511         if (data->res.eof)
512                 count = data->args.count;
513         if (unlikely(count == 0))
514                 return;
515         pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
516         base &= ~PAGE_CACHE_MASK;
517         count += base;
518         for (;count >= PAGE_CACHE_SIZE; count -= PAGE_CACHE_SIZE, pages++)
519                 SetPageUptodate(*pages);
520         if (count == 0)
521                 return;
522         /* Was this a short read? */
523         if (data->res.eof || data->res.count == data->args.count)
524                 SetPageUptodate(*pages);
525 }
526
527 /*
528  * This is the callback from RPC telling us whether a reply was
529  * received or some error occurred (timeout or socket shutdown).
530  */
531 static void nfs_readpage_result_full(struct rpc_task *task, void *calldata)
532 {
533         struct nfs_read_data *data = calldata;
534
535         if (nfs_readpage_result(task, data) != 0)
536                 return;
537         if (task->tk_status < 0)
538                 return;
539         /*
540          * Note: nfs_readpage_retry may change the values of
541          * data->args. In the multi-page case, we therefore need
542          * to ensure that we call nfs_readpage_set_pages_uptodate()
543          * first.
544          */
545         nfs_readpage_truncate_uninitialised_page(data);
546         nfs_readpage_set_pages_uptodate(data);
547         nfs_readpage_retry(task, data);
548 }
549
550 static void nfs_readpage_release_full(void *calldata)
551 {
552         struct nfs_read_data *data = calldata;
553
554         while (!list_empty(&data->pages)) {
555                 struct nfs_page *req = nfs_list_entry(data->pages.next);
556
557                 nfs_list_remove_request(req);
558                 nfs_readpage_release(req);
559         }
560         nfs_readdata_release(calldata);
561 }
562
563 static const struct rpc_call_ops nfs_read_full_ops = {
564 #if defined(CONFIG_NFS_V4_1)
565         .rpc_call_prepare = nfs_read_prepare,
566 #endif /* CONFIG_NFS_V4_1 */
567         .rpc_call_done = nfs_readpage_result_full,
568         .rpc_release = nfs_readpage_release_full,
569 };
570
571 /*
572  * Read a page over NFS.
573  * We read the page synchronously in the following case:
574  *  -   The error flag is set for this page. This happens only when a
575  *      previous async read operation failed.
576  */
577 int nfs_readpage(struct file *file, struct page *page)
578 {
579         struct nfs_open_context *ctx;
580         struct inode *inode = page->mapping->host;
581         int             error;
582
583         dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
584                 page, PAGE_CACHE_SIZE, page->index);
585         nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
586         nfs_add_stats(inode, NFSIOS_READPAGES, 1);
587
588         /*
589          * Try to flush any pending writes to the file..
590          *
591          * NOTE! Because we own the page lock, there cannot
592          * be any new pending writes generated at this point
593          * for this page (other pages can be written to).
594          */
595         error = nfs_wb_page(inode, page);
596         if (error)
597                 goto out_unlock;
598         if (PageUptodate(page))
599                 goto out_unlock;
600
601         error = -ESTALE;
602         if (NFS_STALE(inode))
603                 goto out_unlock;
604
605         if (file == NULL) {
606                 error = -EBADF;
607                 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
608                 if (ctx == NULL)
609                         goto out_unlock;
610         } else
611                 ctx = get_nfs_open_context(nfs_file_open_context(file));
612
613         if (!IS_SYNC(inode)) {
614                 error = nfs_readpage_from_fscache(ctx, inode, page);
615                 if (error == 0)
616                         goto out;
617         }
618
619         error = nfs_readpage_async(ctx, inode, page);
620
621 out:
622         put_nfs_open_context(ctx);
623         return error;
624 out_unlock:
625         unlock_page(page);
626         return error;
627 }
628
629 struct nfs_readdesc {
630         struct nfs_pageio_descriptor *pgio;
631         struct nfs_open_context *ctx;
632 };
633
634 static int
635 readpage_async_filler(void *data, struct page *page)
636 {
637         struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
638         struct inode *inode = page->mapping->host;
639         struct nfs_page *new;
640         unsigned int len;
641         int error;
642
643         len = nfs_page_length(page);
644         if (len == 0)
645                 return nfs_return_empty_page(page);
646
647         new = nfs_create_request(desc->ctx, inode, page, 0, len);
648         if (IS_ERR(new))
649                 goto out_error;
650
651         if (len < PAGE_CACHE_SIZE)
652                 zero_user_segment(page, len, PAGE_CACHE_SIZE);
653         if (!nfs_pageio_add_request(desc->pgio, new)) {
654                 error = desc->pgio->pg_error;
655                 goto out_unlock;
656         }
657         return 0;
658 out_error:
659         error = PTR_ERR(new);
660         SetPageError(page);
661 out_unlock:
662         unlock_page(page);
663         return error;
664 }
665
666 int nfs_readpages(struct file *filp, struct address_space *mapping,
667                 struct list_head *pages, unsigned nr_pages)
668 {
669         struct nfs_pageio_descriptor pgio;
670         struct nfs_readdesc desc = {
671                 .pgio = &pgio,
672         };
673         struct inode *inode = mapping->host;
674         unsigned long npages;
675         int ret = -ESTALE;
676
677         dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
678                         inode->i_sb->s_id,
679                         (long long)NFS_FILEID(inode),
680                         nr_pages);
681         nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
682
683         if (NFS_STALE(inode))
684                 goto out;
685
686         if (filp == NULL) {
687                 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
688                 if (desc.ctx == NULL)
689                         return -EBADF;
690         } else
691                 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
692
693         /* attempt to read as many of the pages as possible from the cache
694          * - this returns -ENOBUFS immediately if the cookie is negative
695          */
696         ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
697                                          pages, &nr_pages);
698         if (ret == 0)
699                 goto read_complete; /* all pages were read */
700
701         nfs_pageio_init_read(&pgio, inode);
702
703         ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
704
705         nfs_pageio_complete(&pgio);
706         npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
707         nfs_add_stats(inode, NFSIOS_READPAGES, npages);
708 read_complete:
709         put_nfs_open_context(desc.ctx);
710 out:
711         return ret;
712 }
713
714 int __init nfs_init_readpagecache(void)
715 {
716         nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
717                                              sizeof(struct nfs_read_data),
718                                              0, SLAB_HWCACHE_ALIGN,
719                                              NULL);
720         if (nfs_rdata_cachep == NULL)
721                 return -ENOMEM;
722
723         nfs_rdata_mempool = mempool_create_slab_pool(MIN_POOL_READ,
724                                                      nfs_rdata_cachep);
725         if (nfs_rdata_mempool == NULL)
726                 return -ENOMEM;
727
728         return 0;
729 }
730
731 void nfs_destroy_readpagecache(void)
732 {
733         mempool_destroy(nfs_rdata_mempool);
734         kmem_cache_destroy(nfs_rdata_cachep);
735 }