blob: 9b9a65c9bb4f1a1541abe6ef5de1184c400eab3b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 <trond.myklebust@fys.uio.no>
9 *
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
13#include <linux/file.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#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
Trond Myklebust8d5658c2007-04-10 09:26:35 -040022#include "internal.h"
23
Christoph Lametere18b8902006-12-06 20:33:20 -080024static struct kmem_cache *nfs_page_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static inline struct nfs_page *
27nfs_page_alloc(void)
28{
Jesper Juhl72895b12010-12-09 23:17:15 +010029 struct nfs_page *p = kmem_cache_zalloc(nfs_page_cachep, GFP_KERNEL);
30 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 INIT_LIST_HEAD(&p->wb_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return p;
33}
34
35static inline void
36nfs_page_free(struct nfs_page *p)
37{
38 kmem_cache_free(nfs_page_cachep, p);
39}
40
41/**
42 * nfs_create_request - Create an NFS read/write request.
43 * @file: file descriptor to use
44 * @inode: inode to which the request is attached
45 * @page: page to write
46 * @offset: starting offset within the page for the write
47 * @count: number of bytes to read/write
48 *
49 * The page must be locked by the caller. This makes sure we never
Jason Uhlenkotta19b89c2007-04-26 17:25:51 -070050 * create two different requests for the same page.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * User should ensure it is safe to sleep in this function.
52 */
53struct nfs_page *
54nfs_create_request(struct nfs_open_context *ctx, struct inode *inode,
55 struct page *page,
56 unsigned int offset, unsigned int count)
57{
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct nfs_page *req;
59
Trond Myklebust18eb8842010-05-13 12:51:02 -040060 /* try to allocate the request struct */
61 req = nfs_page_alloc();
62 if (req == NULL)
63 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Jeff Layton015f0212010-10-28 10:10:37 -040065 /* get lock context early so we can deal with alloc failures */
66 req->wb_lock_context = nfs_get_lock_context(ctx);
67 if (req->wb_lock_context == NULL) {
68 nfs_page_free(req);
69 return ERR_PTR(-ENOMEM);
70 }
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 /* Initialize the request struct. Initially, we assume a
73 * long write-back delay. This will be adjusted in
74 * update_nfs_request below if the region is not locked. */
75 req->wb_page = page;
76 atomic_set(&req->wb_complete, 0);
77 req->wb_index = page->index;
78 page_cache_get(page);
Trond Myklebustcd52ed32006-03-20 13:44:04 -050079 BUG_ON(PagePrivate(page));
80 BUG_ON(!PageLocked(page));
81 BUG_ON(page->mapping->host != inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 req->wb_offset = offset;
83 req->wb_pgbase = offset;
84 req->wb_bytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 req->wb_context = get_nfs_open_context(ctx);
Trond Myklebustc03b4022007-06-17 13:26:38 -040086 kref_init(&req->wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return req;
88}
89
90/**
91 * nfs_unlock_request - Unlock request and wake up sleepers.
92 * @req:
93 */
94void nfs_unlock_request(struct nfs_page *req)
95{
96 if (!NFS_WBACK_BUSY(req)) {
97 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
98 BUG();
99 }
100 smp_mb__before_clear_bit();
101 clear_bit(PG_BUSY, &req->wb_flags);
102 smp_mb__after_clear_bit();
Trond Myklebust464a98b2005-06-22 17:16:21 +0000103 wake_up_bit(&req->wb_flags, PG_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 nfs_release_request(req);
105}
106
107/**
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400108 * nfs_set_page_tag_locked - Tag a request as locked
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000109 * @req:
110 */
Trond Myklebustacee4782008-01-22 17:13:07 -0500111int nfs_set_page_tag_locked(struct nfs_page *req)
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000112{
Trond Myklebustacee4782008-01-22 17:13:07 -0500113 if (!nfs_lock_request_dontget(req))
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000114 return 0;
Trond Myklebust2df485a2010-12-07 22:39:17 -0500115 if (test_bit(PG_MAPPED, &req->wb_flags))
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500116 radix_tree_tag_set(&NFS_I(req->wb_context->path.dentry->d_inode)->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_LOCKED);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000117 return 1;
118}
119
120/**
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400121 * nfs_clear_page_tag_locked - Clear request tag and wake up sleepers
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000122 */
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400123void nfs_clear_page_tag_locked(struct nfs_page *req)
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000124{
Trond Myklebust2df485a2010-12-07 22:39:17 -0500125 if (test_bit(PG_MAPPED, &req->wb_flags)) {
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500126 struct inode *inode = req->wb_context->path.dentry->d_inode;
127 struct nfs_inode *nfsi = NFS_I(inode);
128
Trond Myklebust587142f2007-07-02 09:57:54 -0400129 spin_lock(&inode->i_lock);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400130 radix_tree_tag_clear(&nfsi->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_LOCKED);
Trond Myklebustacee4782008-01-22 17:13:07 -0500131 nfs_unlock_request(req);
Trond Myklebust587142f2007-07-02 09:57:54 -0400132 spin_unlock(&inode->i_lock);
Trond Myklebustacee4782008-01-22 17:13:07 -0500133 } else
134 nfs_unlock_request(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000135}
136
137/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 * nfs_clear_request - Free up all resources allocated to the request
139 * @req:
140 *
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500141 * Release page and open context resources associated with a read/write
142 * request after it has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
144void nfs_clear_request(struct nfs_page *req)
145{
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500146 struct page *page = req->wb_page;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500147 struct nfs_open_context *ctx = req->wb_context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400148 struct nfs_lock_context *l_ctx = req->wb_lock_context;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500149
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500150 if (page != NULL) {
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500151 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 req->wb_page = NULL;
153 }
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400154 if (l_ctx != NULL) {
155 nfs_put_lock_context(l_ctx);
156 req->wb_lock_context = NULL;
157 }
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500158 if (ctx != NULL) {
159 put_nfs_open_context(ctx);
160 req->wb_context = NULL;
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164
165/**
166 * nfs_release_request - Release the count on an NFS read/write request
167 * @req: request to release
168 *
169 * Note: Should never be called with the spinlock held!
170 */
Trond Myklebustc03b4022007-06-17 13:26:38 -0400171static void nfs_free_request(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Trond Myklebustc03b4022007-06-17 13:26:38 -0400173 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500175 /* Release struct file and open context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 nfs_clear_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 nfs_page_free(req);
178}
179
Trond Myklebustc03b4022007-06-17 13:26:38 -0400180void nfs_release_request(struct nfs_page *req)
181{
182 kref_put(&req->wb_kref, nfs_free_request);
183}
184
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500185static int nfs_wait_bit_uninterruptible(void *word)
186{
187 io_schedule();
188 return 0;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/**
192 * nfs_wait_on_request - Wait for a request to complete.
193 * @req: request to wait upon.
194 *
Matthew Wilcox150030b2007-12-06 16:24:39 -0500195 * Interruptible by fatal signals only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 * The user is responsible for holding a count on the request.
197 */
198int
199nfs_wait_on_request(struct nfs_page *req)
200{
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500201 return wait_on_bit(&req->wb_flags, PG_BUSY,
202 nfs_wait_bit_uninterruptible,
203 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206/**
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400207 * nfs_pageio_init - initialise a page io descriptor
208 * @desc: pointer to descriptor
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400209 * @inode: pointer to inode
210 * @doio: pointer to io function
211 * @bsize: io block size
212 * @io_flags: extra parameters for the io function
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400213 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400214void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
215 struct inode *inode,
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400216 int (*doio)(struct inode *, struct list_head *, unsigned int, size_t, int),
Trond Myklebust84dde762007-05-04 14:44:06 -0400217 size_t bsize,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400218 int io_flags)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400219{
220 INIT_LIST_HEAD(&desc->pg_list);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400221 desc->pg_bytes_written = 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400222 desc->pg_count = 0;
223 desc->pg_bsize = bsize;
224 desc->pg_base = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400225 desc->pg_inode = inode;
226 desc->pg_doio = doio;
227 desc->pg_ioflags = io_flags;
228 desc->pg_error = 0;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000229 desc->pg_lseg = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400230}
231
232/**
233 * nfs_can_coalesce_requests - test two requests for compatibility
234 * @prev: pointer to nfs_page
235 * @req: pointer to nfs_page
236 *
237 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
238 * page data area they describe is contiguous, and that their RPC
239 * credentials, NFSv4 open state, and lockowners are the same.
240 *
241 * Return 'true' if this is the case, else return 'false'.
242 */
243static int nfs_can_coalesce_requests(struct nfs_page *prev,
Fred Isaman94ad1c82011-03-01 01:34:14 +0000244 struct nfs_page *req,
245 struct nfs_pageio_descriptor *pgio)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400246{
247 if (req->wb_context->cred != prev->wb_context->cred)
248 return 0;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400249 if (req->wb_lock_context->lockowner != prev->wb_lock_context->lockowner)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400250 return 0;
251 if (req->wb_context->state != prev->wb_context->state)
252 return 0;
253 if (req->wb_index != (prev->wb_index + 1))
254 return 0;
255 if (req->wb_pgbase != 0)
256 return 0;
257 if (prev->wb_pgbase + prev->wb_bytes != PAGE_CACHE_SIZE)
258 return 0;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000259 /*
260 * Non-whole file layouts need to check that req is inside of
261 * pgio->pg_lseg.
262 */
263 if (pgio->pg_test && !pgio->pg_test(pgio, prev, req))
264 return 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400265 return 1;
266}
267
268/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400269 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400270 * @desc: destination io descriptor
271 * @req: request
272 *
273 * Returns true if the request 'req' was successfully coalesced into the
274 * existing list of pages 'desc'.
275 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400276static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
277 struct nfs_page *req)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400278{
279 size_t newlen = req->wb_bytes;
280
281 if (desc->pg_count != 0) {
282 struct nfs_page *prev;
283
284 /*
285 * FIXME: ideally we should be able to coalesce all requests
286 * that are not block boundary aligned, but currently this
287 * is problematic for the case of bsize < PAGE_CACHE_SIZE,
288 * since nfs_flush_multi and nfs_pagein_multi assume you
289 * can have only one struct nfs_page.
290 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400291 if (desc->pg_bsize < PAGE_SIZE)
292 return 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400293 newlen += desc->pg_count;
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400294 if (newlen > desc->pg_bsize)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400295 return 0;
296 prev = nfs_list_entry(desc->pg_list.prev);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000297 if (!nfs_can_coalesce_requests(prev, req, desc))
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400298 return 0;
299 } else
300 desc->pg_base = req->wb_pgbase;
301 nfs_list_remove_request(req);
302 nfs_list_add_request(req, &desc->pg_list);
303 desc->pg_count = newlen;
304 return 1;
305}
306
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400307/*
308 * Helper for nfs_pageio_add_request and nfs_pageio_complete
309 */
310static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
311{
312 if (!list_empty(&desc->pg_list)) {
313 int error = desc->pg_doio(desc->pg_inode,
314 &desc->pg_list,
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400315 nfs_page_array_len(desc->pg_base,
316 desc->pg_count),
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400317 desc->pg_count,
318 desc->pg_ioflags);
319 if (error < 0)
320 desc->pg_error = error;
321 else
322 desc->pg_bytes_written += desc->pg_count;
323 }
324 if (list_empty(&desc->pg_list)) {
325 desc->pg_count = 0;
326 desc->pg_base = 0;
327 }
328}
329
330/**
331 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
332 * @desc: destination io descriptor
333 * @req: request
334 *
335 * Returns true if the request 'req' was successfully coalesced into the
336 * existing list of pages 'desc'.
337 */
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400338int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
339 struct nfs_page *req)
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400340{
341 while (!nfs_pageio_do_add_request(desc, req)) {
342 nfs_pageio_doio(desc);
343 if (desc->pg_error < 0)
344 return 0;
345 }
346 return 1;
347}
348
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400349/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400350 * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
351 * @desc: pointer to io descriptor
352 */
353void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
354{
355 nfs_pageio_doio(desc);
356}
357
Trond Myklebust7fe7f842007-05-20 10:18:27 -0400358/**
359 * nfs_pageio_cond_complete - Conditional I/O completion
360 * @desc: pointer to io descriptor
361 * @index: page index
362 *
363 * It is important to ensure that processes don't try to take locks
364 * on non-contiguous ranges of pages as that might deadlock. This
365 * function should be called before attempting to wait on a locked
366 * nfs_page. It will complete the I/O if the page index 'index'
367 * is not contiguous with the existing list of pages in 'desc'.
368 */
369void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
370{
371 if (!list_empty(&desc->pg_list)) {
372 struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev);
373 if (index != prev->wb_index + 1)
374 nfs_pageio_doio(desc);
375 }
376}
377
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000378#define NFS_SCAN_MAXENTRIES 16
379/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * nfs_scan_list - Scan a list for matching requests
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400381 * @nfsi: NFS inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * @dst: Destination list
383 * @idx_start: lower bound of page->index to scan
384 * @npages: idx_start + npages sets the upper bound to scan.
Trond Myklebust5c369682007-06-17 15:27:42 -0400385 * @tag: tag to scan for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 *
387 * Moves elements from one of the inode request lists.
388 * If the number of requests is set to 0, the entire address_space
389 * starting at index idx_start, is scanned.
390 * The requests are *not* checked to ensure that they form a contiguous set.
Trond Myklebust587142f2007-07-02 09:57:54 -0400391 * You must be holding the inode's i_lock when calling this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Trond Myklebust5c369682007-06-17 15:27:42 -0400393int nfs_scan_list(struct nfs_inode *nfsi,
Trond Myklebustca52fec2007-04-17 17:22:13 -0400394 struct list_head *dst, pgoff_t idx_start,
Trond Myklebust5c369682007-06-17 15:27:42 -0400395 unsigned int npages, int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400397 struct nfs_page *pgvec[NFS_SCAN_MAXENTRIES];
398 struct nfs_page *req;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400399 pgoff_t idx_end;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400400 int found, i;
401 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 res = 0;
404 if (npages == 0)
405 idx_end = ~0;
406 else
407 idx_end = idx_start + npages - 1;
408
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400409 for (;;) {
Trond Myklebust5c369682007-06-17 15:27:42 -0400410 found = radix_tree_gang_lookup_tag(&nfsi->nfs_page_tree,
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400411 (void **)&pgvec[0], idx_start,
Trond Myklebust5c369682007-06-17 15:27:42 -0400412 NFS_SCAN_MAXENTRIES, tag);
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400413 if (found <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400415 for (i = 0; i < found; i++) {
416 req = pgvec[i];
417 if (req->wb_index > idx_end)
418 goto out;
419 idx_start = req->wb_index + 1;
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400420 if (nfs_set_page_tag_locked(req)) {
Trond Myklebustacee4782008-01-22 17:13:07 -0500421 kref_get(&req->wb_kref);
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400422 nfs_list_remove_request(req);
Trond Myklebust5c369682007-06-17 15:27:42 -0400423 radix_tree_tag_clear(&nfsi->nfs_page_tree,
424 req->wb_index, tag);
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400425 nfs_list_add_request(req, dst);
426 res++;
Trond Myklebustdce34ce2007-06-17 15:47:53 -0400427 if (res == INT_MAX)
428 goto out;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400429 }
430 }
Trond Myklebustedc05fc2007-06-17 16:02:34 -0400431 /* for latency reduction */
Trond Myklebust587142f2007-07-02 09:57:54 -0400432 cond_resched_lock(&nfsi->vfs_inode.i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400434out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return res;
436}
437
David Howellsf7b422b2006-06-09 09:34:33 -0400438int __init nfs_init_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 nfs_page_cachep = kmem_cache_create("nfs_page",
441 sizeof(struct nfs_page),
442 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900443 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (nfs_page_cachep == NULL)
445 return -ENOMEM;
446
447 return 0;
448}
449
David Brownell266bee82006-06-27 12:59:15 -0700450void nfs_destroy_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700452 kmem_cache_destroy(nfs_page_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454