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
*
30 p
= kmem_cache_alloc(nfs_page_cachep
, SLAB_KERNEL
);
32 memset(p
, 0, sizeof(*p
));
33 INIT_LIST_HEAD(&p
->wb_list
);
39 nfs_page_free(struct nfs_page
*p
)
41 kmem_cache_free(nfs_page_cachep
, p
);
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
56 * User should ensure it is safe to sleep in this function.
59 nfs_create_request(struct nfs_open_context
*ctx
, struct inode
*inode
,
61 unsigned int offset
, unsigned int count
)
63 struct nfs_server
*server
= NFS_SERVER(inode
);
66 /* Deal with hard limits. */
68 /* try to allocate the request struct */
69 req
= nfs_page_alloc();
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
);
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. */
85 atomic_set(&req
->wb_complete
, 0);
86 req
->wb_index
= page
->index
;
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
);
98 * nfs_unlock_request - Unlock request and wake up sleepers.
101 void nfs_unlock_request(struct nfs_page
*req
)
103 if (!NFS_WBACK_BUSY(req
)) {
104 printk(KERN_ERR
"NFS: Invalid unlock attempted\n");
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
118 * Release page resources associated with a write request after it
121 void nfs_clear_request(struct nfs_page
*req
)
124 page_cache_release(req
->wb_page
);
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!
137 nfs_release_request(struct nfs_page
*req
)
139 if (!atomic_dec_and_test(&req
->wb_count
))
143 BUG_ON (!list_empty(&req
->wb_list
));
144 BUG_ON (NFS_WBACK_BUSY(req
));
147 /* Release struct file or cached credential */
148 nfs_clear_request(req
);
149 put_nfs_open_context(req
->wb_context
);
154 * nfs_list_add_request - Insert a request into a sorted list
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
164 nfs_list_add_request(struct nfs_page
*req
, struct list_head
*head
)
166 struct list_head
*pos
;
169 if (!list_empty(&req
->wb_list
)) {
170 printk(KERN_ERR
"NFS: Add to list failed!\n");
174 list_for_each_prev(pos
, head
) {
175 struct nfs_page
*p
= nfs_list_entry(pos
);
176 if (p
->wb_index
< req
->wb_index
)
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
))
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.
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
,
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
);
223 if (req
->wb_context
->cred
!= prev
->wb_context
->cred
)
225 if (req
->wb_context
->lockowner
!= prev
->wb_context
->lockowner
)
227 if (req
->wb_context
->state
!= prev
->wb_context
->state
)
229 if (req
->wb_index
!= (prev
->wb_index
+ 1))
232 if (req
->wb_pgbase
!= 0)
235 nfs_list_remove_request(req
);
236 nfs_list_add_request(req
, dst
);
238 if (req
->wb_pgbase
+ req
->wb_bytes
!= PAGE_CACHE_SIZE
)
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
;
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
)
280 if (req
->wb_index
> idx_end
)
283 if (!nfs_lock_request(req
))
285 nfs_list_remove_request(req
);
286 nfs_list_add_request(req
, dst
);
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
,
298 if (nfs_page_cachep
== NULL
)
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");