[PATCH] class: add kerneldoc for the new class functions.
[linux-2.6/linux-loongson.git] / fs / nfs / pagelist.c
blob4f1ba723848de91e95d51547a30ff40141cb1a36
1 /*
2 * linux/fs/nfs/pagelist.c
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.
8 * Copyright 2000, 2001 (c) Trond Myklebust <trond.myklebust@fys.uio.no>
12 #include <linux/config.h>
13 #include <linux/slab.h>
14 #include <linux/file.h>
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>
22 #define NFS_PARANOIA 1
24 static kmem_cache_t *nfs_page_cachep;
26 static inline struct nfs_page *
27 nfs_page_alloc(void)
29 struct nfs_page *p;
30 p = kmem_cache_alloc(nfs_page_cachep, SLAB_KERNEL);
31 if (p) {
32 memset(p, 0, sizeof(*p));
33 INIT_LIST_HEAD(&p->wb_list);
35 return p;
38 static inline void
39 nfs_page_free(struct nfs_page *p)
41 kmem_cache_free(nfs_page_cachep, p);
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
52 * The page must be locked by the caller. This makes sure we never
53 * create two different requests for the same page, and avoids
54 * a possible deadlock when we reach the hard limit on the number
55 * of dirty pages.
56 * User should ensure it is safe to sleep in this function.
58 struct nfs_page *
59 nfs_create_request(struct nfs_open_context *ctx, struct inode *inode,
60 struct page *page,
61 unsigned int offset, unsigned int count)
63 struct nfs_server *server = NFS_SERVER(inode);
64 struct nfs_page *req;
66 /* Deal with hard limits. */
67 for (;;) {
68 /* try to allocate the request struct */
69 req = nfs_page_alloc();
70 if (req != NULL)
71 break;
73 /* Try to free up at least one request in order to stay
74 * below the hard limit
76 if (signalled() && (server->flags & NFS_MOUNT_INTR))
77 return ERR_PTR(-ERESTARTSYS);
78 yield();
81 /* Initialize the request struct. Initially, we assume a
82 * long write-back delay. This will be adjusted in
83 * update_nfs_request below if the region is not locked. */
84 req->wb_page = page;
85 atomic_set(&req->wb_complete, 0);
86 req->wb_index = page->index;
87 page_cache_get(page);
88 req->wb_offset = offset;
89 req->wb_pgbase = offset;
90 req->wb_bytes = count;
91 atomic_set(&req->wb_count, 1);
92 req->wb_context = get_nfs_open_context(ctx);
94 return req;
97 /**
98 * nfs_unlock_request - Unlock request and wake up sleepers.
99 * @req:
101 void nfs_unlock_request(struct nfs_page *req)
103 if (!NFS_WBACK_BUSY(req)) {
104 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
105 BUG();
107 smp_mb__before_clear_bit();
108 clear_bit(PG_BUSY, &req->wb_flags);
109 smp_mb__after_clear_bit();
110 wake_up_all(&req->wb_context->waitq);
111 nfs_release_request(req);
115 * nfs_clear_request - Free up all resources allocated to the request
116 * @req:
118 * Release page resources associated with a write request after it
119 * has completed.
121 void nfs_clear_request(struct nfs_page *req)
123 if (req->wb_page) {
124 page_cache_release(req->wb_page);
125 req->wb_page = NULL;
131 * nfs_release_request - Release the count on an NFS read/write request
132 * @req: request to release
134 * Note: Should never be called with the spinlock held!
136 void
137 nfs_release_request(struct nfs_page *req)
139 if (!atomic_dec_and_test(&req->wb_count))
140 return;
142 #ifdef NFS_PARANOIA
143 BUG_ON (!list_empty(&req->wb_list));
144 BUG_ON (NFS_WBACK_BUSY(req));
145 #endif
147 /* Release struct file or cached credential */
148 nfs_clear_request(req);
149 put_nfs_open_context(req->wb_context);
150 nfs_page_free(req);
154 * nfs_list_add_request - Insert a request into a sorted list
155 * @req: request
156 * @head: head of list into which to insert the request.
158 * Note that the wb_list is sorted by page index in order to facilitate
159 * coalescing of requests.
160 * We use an insertion sort that is optimized for the case of appended
161 * writes.
163 void
164 nfs_list_add_request(struct nfs_page *req, struct list_head *head)
166 struct list_head *pos;
168 #ifdef NFS_PARANOIA
169 if (!list_empty(&req->wb_list)) {
170 printk(KERN_ERR "NFS: Add to list failed!\n");
171 BUG();
173 #endif
174 list_for_each_prev(pos, head) {
175 struct nfs_page *p = nfs_list_entry(pos);
176 if (p->wb_index < req->wb_index)
177 break;
179 list_add(&req->wb_list, pos);
180 req->wb_list_head = head;
184 * nfs_wait_on_request - Wait for a request to complete.
185 * @req: request to wait upon.
187 * Interruptible by signals only if mounted with intr flag.
188 * The user is responsible for holding a count on the request.
191 nfs_wait_on_request(struct nfs_page *req)
193 struct inode *inode = req->wb_context->dentry->d_inode;
194 struct rpc_clnt *clnt = NFS_CLIENT(inode);
196 if (!NFS_WBACK_BUSY(req))
197 return 0;
198 return nfs_wait_event(clnt, req->wb_context->waitq, !NFS_WBACK_BUSY(req));
202 * nfs_coalesce_requests - Split coalesced requests out from a list.
203 * @head: source list
204 * @dst: destination list
205 * @nmax: maximum number of requests to coalesce
207 * Moves a maximum of 'nmax' elements from one list to another.
208 * The elements are checked to ensure that they form a contiguous set
209 * of pages, and that the RPC credentials are the same.
212 nfs_coalesce_requests(struct list_head *head, struct list_head *dst,
213 unsigned int nmax)
215 struct nfs_page *req = NULL;
216 unsigned int npages = 0;
218 while (!list_empty(head)) {
219 struct nfs_page *prev = req;
221 req = nfs_list_entry(head->next);
222 if (prev) {
223 if (req->wb_context->cred != prev->wb_context->cred)
224 break;
225 if (req->wb_context->lockowner != prev->wb_context->lockowner)
226 break;
227 if (req->wb_context->state != prev->wb_context->state)
228 break;
229 if (req->wb_index != (prev->wb_index + 1))
230 break;
232 if (req->wb_pgbase != 0)
233 break;
235 nfs_list_remove_request(req);
236 nfs_list_add_request(req, dst);
237 npages++;
238 if (req->wb_pgbase + req->wb_bytes != PAGE_CACHE_SIZE)
239 break;
240 if (npages >= nmax)
241 break;
243 return npages;
247 * nfs_scan_list - Scan a list for matching requests
248 * @head: One of the NFS inode request lists
249 * @dst: Destination list
250 * @idx_start: lower bound of page->index to scan
251 * @npages: idx_start + npages sets the upper bound to scan.
253 * Moves elements from one of the inode request lists.
254 * If the number of requests is set to 0, the entire address_space
255 * starting at index idx_start, is scanned.
256 * The requests are *not* checked to ensure that they form a contiguous set.
257 * You must be holding the inode's req_lock when calling this function
260 nfs_scan_list(struct list_head *head, struct list_head *dst,
261 unsigned long idx_start, unsigned int npages)
263 struct list_head *pos, *tmp;
264 struct nfs_page *req;
265 unsigned long idx_end;
266 int res;
268 res = 0;
269 if (npages == 0)
270 idx_end = ~0;
271 else
272 idx_end = idx_start + npages - 1;
274 list_for_each_safe(pos, tmp, head) {
276 req = nfs_list_entry(pos);
278 if (req->wb_index < idx_start)
279 continue;
280 if (req->wb_index > idx_end)
281 break;
283 if (!nfs_lock_request(req))
284 continue;
285 nfs_list_remove_request(req);
286 nfs_list_add_request(req, dst);
287 res++;
289 return res;
292 int nfs_init_nfspagecache(void)
294 nfs_page_cachep = kmem_cache_create("nfs_page",
295 sizeof(struct nfs_page),
296 0, SLAB_HWCACHE_ALIGN,
297 NULL, NULL);
298 if (nfs_page_cachep == NULL)
299 return -ENOMEM;
301 return 0;
304 void nfs_destroy_nfspagecache(void)
306 if (kmem_cache_destroy(nfs_page_cachep))
307 printk(KERN_INFO "nfs_page: not all structures were freed\n");