blob: 4cdd1b499e3566d1f31821c2fe776349d64a5bb0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/direct.c
3 *
4 * Copyright (C) 2003 by Chuck Lever <cel@netapp.com>
5 *
6 * High-performance uncached I/O for the Linux NFS client
7 *
8 * There are important applications whose performance or correctness
9 * depends on uncached access to file data. Database clusters
Chuck Lever88467052006-03-20 13:44:34 -050010 * (multiple copies of the same instance running on separate hosts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * implement their own cache coherency protocol that subsumes file
Chuck Lever88467052006-03-20 13:44:34 -050012 * system cache protocols. Applications that process datasets
13 * considerably larger than the client's memory do not always benefit
14 * from a local cache. A streaming video server, for instance, has no
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * need to cache the contents of a file.
16 *
17 * When an application requests uncached I/O, all read and write requests
18 * are made directly to the server; data stored or fetched via these
19 * requests is not cached in the Linux page cache. The client does not
20 * correct unaligned requests from applications. All requested bytes are
21 * held on permanent storage before a direct write system call returns to
22 * an application.
23 *
24 * Solaris implements an uncached I/O facility called directio() that
25 * is used for backups and sequential I/O to very large files. Solaris
26 * also supports uncaching whole NFS partitions with "-o forcedirectio,"
27 * an undocumented mount option.
28 *
29 * Designed by Jeff Kimmel, Chuck Lever, and Trond Myklebust, with
30 * help from Andrew Morton.
31 *
32 * 18 Dec 2001 Initial implementation for 2.4 --cel
33 * 08 Jul 2002 Version for 2.4.19, with bug fixes --trondmy
34 * 08 Jun 2003 Port to 2.5 APIs --cel
35 * 31 Mar 2004 Handle direct I/O without VFS support --cel
36 * 15 Sep 2004 Parallel async reads --cel
Chuck Lever88467052006-03-20 13:44:34 -050037 * 04 May 2005 support O_DIRECT with aio --cel
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 *
39 */
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/errno.h>
42#include <linux/sched.h>
43#include <linux/kernel.h>
44#include <linux/smp_lock.h>
45#include <linux/file.h>
46#include <linux/pagemap.h>
47#include <linux/kref.h>
48
49#include <linux/nfs_fs.h>
50#include <linux/nfs_page.h>
51#include <linux/sunrpc/clnt.h>
52
53#include <asm/system.h>
54#include <asm/uaccess.h>
55#include <asm/atomic.h>
56
Chuck Lever91d5b472006-03-20 13:44:14 -050057#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define NFSDBG_FACILITY NFSDBG_VFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static kmem_cache_t *nfs_direct_cachep;
62
63/*
64 * This represents a set of asynchronous requests that we're waiting on
65 */
66struct nfs_direct_req {
67 struct kref kref; /* release manager */
Chuck Lever15ce4a02006-03-20 13:44:34 -050068
69 /* I/O parameters */
Trond Myklebustccf01ef2006-06-25 06:27:31 -040070 struct list_head list, /* nfs_read/write_data structs */
71 rewrite_list; /* saved nfs_write_data structs */
Trond Myklebusta8881f52006-03-20 13:44:36 -050072 struct nfs_open_context *ctx; /* file open context info */
Chuck Lever99514f82006-03-20 13:44:30 -050073 struct kiocb * iocb; /* controlling i/o request */
Chuck Lever88467052006-03-20 13:44:34 -050074 struct inode * inode; /* target file of i/o */
Trond Myklebustccf01ef2006-06-25 06:27:31 -040075 unsigned long user_addr; /* location of user's buffer */
76 size_t user_count; /* total bytes to move */
77 loff_t pos; /* starting offset in file */
78 struct page ** pages; /* pages in our buffer */
79 unsigned int npages; /* count of pages */
Chuck Lever15ce4a02006-03-20 13:44:34 -050080
81 /* completion state */
82 spinlock_t lock; /* protect completion state */
Trond Myklebustccf01ef2006-06-25 06:27:31 -040083 int outstanding; /* i/os we're waiting for */
Chuck Lever15ce4a02006-03-20 13:44:34 -050084 ssize_t count, /* bytes actually processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 error; /* any reported error */
Trond Myklebustd72b7a62006-03-20 13:44:43 -050086 struct completion completion; /* wait for i/o completion */
Trond Myklebustfad61492006-03-20 13:44:36 -050087
88 /* commit state */
89 struct nfs_write_data * commit_data; /* special write_data for commits */
90 int flags;
91#define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */
92#define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */
93 struct nfs_writeverf verf; /* unstable write verifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
Trond Myklebustccf01ef2006-06-25 06:27:31 -040096static void nfs_direct_write_schedule(struct nfs_direct_req *dreq, int sync);
Trond Myklebustfad61492006-03-20 13:44:36 -050097static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode);
Chuck Lever82b145c2006-06-20 12:57:03 -040098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/**
Chuck Leverb8a32e22006-03-20 13:44:28 -0500100 * nfs_direct_IO - NFS address space operation for direct I/O
101 * @rw: direction (read or write)
102 * @iocb: target I/O control block
103 * @iov: array of vectors that define I/O buffer
104 * @pos: offset in file to begin the operation
105 * @nr_segs: size of iovec array
106 *
107 * The presence of this routine in the address space ops vector means
108 * the NFS client supports direct I/O. However, we shunt off direct
109 * read and write requests before the VFS gets them, so this method
110 * should never be called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Chuck Leverb8a32e22006-03-20 13:44:28 -0500112ssize_t nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, loff_t pos, unsigned long nr_segs)
113{
Chuck Leverb8a32e22006-03-20 13:44:28 -0500114 dprintk("NFS: nfs_direct_IO (%s) off/no(%Ld/%lu) EINVAL\n",
Trond Myklebuste99170f2006-04-18 13:21:42 -0400115 iocb->ki_filp->f_dentry->d_name.name,
116 (long long) pos, nr_segs);
Chuck Leverb8a32e22006-03-20 13:44:28 -0500117
118 return -EINVAL;
119}
120
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400121static void nfs_free_user_pages(struct page **pages, int npages, int do_dirty)
Trond Myklebust6b45d852006-03-20 13:44:43 -0500122{
123 int i;
124 for (i = 0; i < npages; i++) {
125 struct page *page = pages[i];
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400126 if (do_dirty && !PageCompound(page))
Trond Myklebust6b45d852006-03-20 13:44:43 -0500127 set_page_dirty_lock(page);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400128 page_cache_release(page);
Trond Myklebust6b45d852006-03-20 13:44:43 -0500129 }
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400130 kfree(pages);
Chuck Lever9c93ab72006-06-20 12:56:31 -0400131}
132
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400133static inline int nfs_get_user_pages(int rw, unsigned long user_addr, size_t size, struct page ***pages)
Chuck Lever9c93ab72006-06-20 12:56:31 -0400134{
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400135 int result = -ENOMEM;
136 unsigned long page_count;
137 size_t array_size;
138
139 page_count = (user_addr + size + PAGE_SIZE - 1) >> PAGE_SHIFT;
140 page_count -= user_addr >> PAGE_SHIFT;
141
142 array_size = (page_count * sizeof(struct page *));
143 *pages = kmalloc(array_size, GFP_KERNEL);
144 if (*pages) {
145 down_read(&current->mm->mmap_sem);
146 result = get_user_pages(current, current->mm, user_addr,
147 page_count, (rw == READ), 0,
148 *pages, NULL);
149 up_read(&current->mm->mmap_sem);
150 if (result != page_count) {
151 /*
152 * If we got fewer pages than expected from
153 * get_user_pages(), the user buffer runs off the
154 * end of a mapping; return EFAULT.
155 */
156 if (result >= 0) {
157 nfs_free_user_pages(*pages, result, 0);
158 result = -EFAULT;
159 } else
160 kfree(*pages);
161 *pages = NULL;
162 }
163 }
164 return result;
Trond Myklebust6b45d852006-03-20 13:44:43 -0500165}
166
Chuck Lever93619e52006-03-20 13:44:31 -0500167static inline struct nfs_direct_req *nfs_direct_req_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 struct nfs_direct_req *dreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 dreq = kmem_cache_alloc(nfs_direct_cachep, SLAB_KERNEL);
172 if (!dreq)
173 return NULL;
174
175 kref_init(&dreq->kref);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500176 init_completion(&dreq->completion);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400177 INIT_LIST_HEAD(&dreq->list);
Trond Myklebustfad61492006-03-20 13:44:36 -0500178 INIT_LIST_HEAD(&dreq->rewrite_list);
Chuck Lever93619e52006-03-20 13:44:31 -0500179 dreq->iocb = NULL;
Trond Myklebusta8881f52006-03-20 13:44:36 -0500180 dreq->ctx = NULL;
Chuck Lever15ce4a02006-03-20 13:44:34 -0500181 spin_lock_init(&dreq->lock);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400182 dreq->outstanding = 0;
Chuck Lever15ce4a02006-03-20 13:44:34 -0500183 dreq->count = 0;
184 dreq->error = 0;
Trond Myklebustfad61492006-03-20 13:44:36 -0500185 dreq->flags = 0;
Chuck Lever93619e52006-03-20 13:44:31 -0500186
187 return dreq;
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static void nfs_direct_req_release(struct kref *kref)
191{
192 struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref);
Trond Myklebusta8881f52006-03-20 13:44:36 -0500193
194 if (dreq->ctx != NULL)
195 put_nfs_open_context(dreq->ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 kmem_cache_free(nfs_direct_cachep, dreq);
197}
198
Chuck Leverd4cc9482006-03-20 13:44:28 -0500199/*
Chuck Leverbc0fb202006-03-20 13:44:31 -0500200 * Collects and returns the final error value/byte-count.
201 */
202static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq)
203{
Chuck Lever15ce4a02006-03-20 13:44:34 -0500204 ssize_t result = -EIOCBQUEUED;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500205
206 /* Async requests don't wait here */
207 if (dreq->iocb)
208 goto out;
209
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500210 result = wait_for_completion_interruptible(&dreq->completion);
Chuck Leverbc0fb202006-03-20 13:44:31 -0500211
212 if (!result)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500213 result = dreq->error;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500214 if (!result)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500215 result = dreq->count;
Chuck Leverbc0fb202006-03-20 13:44:31 -0500216
217out:
218 kref_put(&dreq->kref, nfs_direct_req_release);
219 return (ssize_t) result;
220}
221
222/*
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400223 * We must hold a reference to all the pages in this direct read request
224 * until the RPCs complete. This could be long *after* we are woken up in
225 * nfs_direct_wait (for instance, if someone hits ^C on a slow server).
226 *
227 * In addition, synchronous I/O uses a stack-allocated iocb. Thus we
228 * can't trust the iocb is still valid here if this is a synchronous
229 * request. If the waiter is woken prematurely, the iocb is long gone.
Chuck Lever63ab46a2006-03-20 13:44:31 -0500230 */
231static void nfs_direct_complete(struct nfs_direct_req *dreq)
232{
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400233 nfs_free_user_pages(dreq->pages, dreq->npages, 1);
234
Chuck Lever63ab46a2006-03-20 13:44:31 -0500235 if (dreq->iocb) {
Chuck Lever15ce4a02006-03-20 13:44:34 -0500236 long res = (long) dreq->error;
Chuck Lever63ab46a2006-03-20 13:44:31 -0500237 if (!res)
Chuck Lever15ce4a02006-03-20 13:44:34 -0500238 res = (long) dreq->count;
Chuck Lever63ab46a2006-03-20 13:44:31 -0500239 aio_complete(dreq->iocb, res, 0);
Trond Myklebustd72b7a62006-03-20 13:44:43 -0500240 }
241 complete_all(&dreq->completion);
Chuck Lever63ab46a2006-03-20 13:44:31 -0500242
243 kref_put(&dreq->kref, nfs_direct_req_release);
244}
245
246/*
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400247 * Note we also set the number of requests we have in the dreq when we are
248 * done. This prevents races with I/O completion so we will always wait
249 * until all requests have been dispatched and completed.
Chuck Lever06cf6f22006-06-20 12:56:49 -0400250 */
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400251static struct nfs_direct_req *nfs_direct_read_alloc(size_t nbytes, size_t rsize)
252{
253 struct list_head *list;
254 struct nfs_direct_req *dreq;
255 unsigned int rpages = (rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
256
257 dreq = nfs_direct_req_alloc();
258 if (!dreq)
259 return NULL;
260
261 list = &dreq->list;
262 for(;;) {
263 struct nfs_read_data *data = nfs_readdata_alloc(rpages);
264
265 if (unlikely(!data)) {
266 while (!list_empty(list)) {
267 data = list_entry(list->next,
268 struct nfs_read_data, pages);
269 list_del(&data->pages);
270 nfs_readdata_free(data);
271 }
272 kref_put(&dreq->kref, nfs_direct_req_release);
273 return NULL;
274 }
275
276 INIT_LIST_HEAD(&data->pages);
277 list_add(&data->pages, list);
278
279 data->req = (struct nfs_page *) dreq;
280 dreq->outstanding++;
281 if (nbytes <= rsize)
282 break;
283 nbytes -= rsize;
284 }
285 kref_get(&dreq->kref);
286 return dreq;
287}
288
Trond Myklebustec06c092006-03-20 13:44:27 -0500289static void nfs_direct_read_result(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Trond Myklebustec06c092006-03-20 13:44:27 -0500291 struct nfs_read_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
293
Trond Myklebustec06c092006-03-20 13:44:27 -0500294 if (nfs_readpage_result(task, data) != 0)
295 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Chuck Lever15ce4a02006-03-20 13:44:34 -0500297 spin_lock(&dreq->lock);
298
299 if (likely(task->tk_status >= 0))
300 dreq->count += data->res.count;
301 else
302 dreq->error = task->tk_status;
303
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400304 if (--dreq->outstanding) {
305 spin_unlock(&dreq->lock);
306 return;
307 }
Chuck Leverb1c59212006-06-20 12:55:19 -0400308
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400309 spin_unlock(&dreq->lock);
310 nfs_direct_complete(dreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Trond Myklebustec06c092006-03-20 13:44:27 -0500313static const struct rpc_call_ops nfs_read_direct_ops = {
314 .rpc_call_done = nfs_direct_read_result,
315 .rpc_release = nfs_readdata_release,
316};
317
Chuck Leverd4cc9482006-03-20 13:44:28 -0500318/*
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400319 * For each nfs_read_data struct that was allocated on the list, dispatch
320 * an NFS READ operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400322static void nfs_direct_read_schedule(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Trond Myklebusta8881f52006-03-20 13:44:36 -0500324 struct nfs_open_context *ctx = dreq->ctx;
325 struct inode *inode = ctx->dentry->d_inode;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400326 struct list_head *list = &dreq->list;
327 struct page **pages = dreq->pages;
328 size_t count = dreq->user_count;
329 loff_t pos = dreq->pos;
Chuck Lever5dd602f2006-03-20 13:44:29 -0500330 size_t rsize = NFS_SERVER(inode)->rsize;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400331 unsigned int curpage, pgbase;
Chuck Lever82b145c2006-06-20 12:57:03 -0400332
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400333 curpage = 0;
334 pgbase = dreq->user_addr & ~PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 do {
Chuck Lever82b145c2006-06-20 12:57:03 -0400336 struct nfs_read_data *data;
Chuck Lever5dd602f2006-03-20 13:44:29 -0500337 size_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 bytes = rsize;
340 if (count < rsize)
341 bytes = count;
342
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400343 BUG_ON(list_empty(list));
344 data = list_entry(list->next, struct nfs_read_data, pages);
345 list_del_init(&data->pages);
Chuck Lever06cf6f22006-06-20 12:56:49 -0400346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 data->inode = inode;
348 data->cred = ctx->cred;
349 data->args.fh = NFS_FH(inode);
350 data->args.context = ctx;
Chuck Lever88467052006-03-20 13:44:34 -0500351 data->args.offset = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 data->args.pgbase = pgbase;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400353 data->args.pages = &pages[curpage];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 data->args.count = bytes;
355 data->res.fattr = &data->fattr;
356 data->res.eof = 0;
357 data->res.count = bytes;
358
Trond Myklebustec06c092006-03-20 13:44:27 -0500359 rpc_init_task(&data->task, NFS_CLIENT(inode), RPC_TASK_ASYNC,
360 &nfs_read_direct_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 NFS_PROTO(inode)->read_setup(data);
362
363 data->task.tk_cookie = (unsigned long) inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 lock_kernel();
366 rpc_execute(&data->task);
367 unlock_kernel();
368
Chuck Lever606bbba2006-03-20 13:44:42 -0500369 dfprintk(VFS, "NFS: %5u initiated direct read call (req %s/%Ld, %zu bytes @ offset %Lu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 data->task.tk_pid,
371 inode->i_sb->s_id,
372 (long long)NFS_FILEID(inode),
373 bytes,
374 (unsigned long long)data->args.offset);
375
Chuck Lever88467052006-03-20 13:44:34 -0500376 pos += bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 pgbase += bytes;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400378 curpage += pgbase >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 pgbase &= ~PAGE_MASK;
380
381 count -= bytes;
382 } while (count != 0);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400383 BUG_ON(!list_empty(list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400386static ssize_t nfs_direct_read(struct kiocb *iocb, unsigned long user_addr, size_t count, loff_t pos, struct page **pages, unsigned int nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400388 ssize_t result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 sigset_t oldset;
Chuck Lever99514f82006-03-20 13:44:30 -0500390 struct inode *inode = iocb->ki_filp->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct rpc_clnt *clnt = NFS_CLIENT(inode);
392 struct nfs_direct_req *dreq;
393
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400394 dreq = nfs_direct_read_alloc(count, NFS_SERVER(inode)->rsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!dreq)
396 return -ENOMEM;
397
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400398 dreq->user_addr = user_addr;
399 dreq->user_count = count;
400 dreq->pos = pos;
401 dreq->pages = pages;
402 dreq->npages = nr_pages;
Chuck Lever91d5b472006-03-20 13:44:14 -0500403 dreq->inode = inode;
Trond Myklebusta8881f52006-03-20 13:44:36 -0500404 dreq->ctx = get_nfs_open_context((struct nfs_open_context *)iocb->ki_filp->private_data);
Chuck Lever487b8372006-03-20 13:44:30 -0500405 if (!is_sync_kiocb(iocb))
406 dreq->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Chuck Lever91d5b472006-03-20 13:44:14 -0500408 nfs_add_stats(inode, NFSIOS_DIRECTREADBYTES, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 rpc_clnt_sigmask(clnt, &oldset);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400410 nfs_direct_read_schedule(dreq);
411 result = nfs_direct_wait(dreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 rpc_clnt_sigunmask(clnt, &oldset);
413
414 return result;
415}
416
Trond Myklebustfad61492006-03-20 13:44:36 -0500417static void nfs_direct_free_writedata(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400419 list_splice_init(&dreq->rewrite_list, &dreq->list);
420 while (!list_empty(&dreq->list)) {
421 struct nfs_write_data *data = list_entry(dreq->list.next, struct nfs_write_data, pages);
Trond Myklebustfad61492006-03-20 13:44:36 -0500422 list_del(&data->pages);
423 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Trond Myklebustfad61492006-03-20 13:44:36 -0500427#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
428static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400430 struct list_head *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400432 list_splice_init(&dreq->rewrite_list, &dreq->list);
433 list_for_each(pos, &dreq->list)
434 dreq->outstanding++;
Trond Myklebustfad61492006-03-20 13:44:36 -0500435 dreq->count = 0;
436
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400437 nfs_direct_write_schedule(dreq, FLUSH_STABLE);
Trond Myklebustfad61492006-03-20 13:44:36 -0500438}
439
440static void nfs_direct_commit_result(struct rpc_task *task, void *calldata)
441{
442 struct nfs_write_data *data = calldata;
443 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
444
445 /* Call the NFS version-specific code */
446 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
447 return;
448 if (unlikely(task->tk_status < 0)) {
449 dreq->error = task->tk_status;
450 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
451 }
452 if (memcmp(&dreq->verf, &data->verf, sizeof(data->verf))) {
453 dprintk("NFS: %5u commit verify failed\n", task->tk_pid);
454 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
455 }
456
457 dprintk("NFS: %5u commit returned %d\n", task->tk_pid, task->tk_status);
458 nfs_direct_write_complete(dreq, data->inode);
459}
460
461static const struct rpc_call_ops nfs_commit_direct_ops = {
462 .rpc_call_done = nfs_direct_commit_result,
463 .rpc_release = nfs_commit_release,
464};
465
466static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq)
467{
Trond Myklebustfad61492006-03-20 13:44:36 -0500468 struct nfs_write_data *data = dreq->commit_data;
Trond Myklebustfad61492006-03-20 13:44:36 -0500469
470 data->inode = dreq->inode;
Trond Myklebusta8881f52006-03-20 13:44:36 -0500471 data->cred = dreq->ctx->cred;
Trond Myklebustfad61492006-03-20 13:44:36 -0500472
473 data->args.fh = NFS_FH(data->inode);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400474 data->args.offset = dreq->pos;
475 data->args.count = dreq->user_count;
Trond Myklebustfad61492006-03-20 13:44:36 -0500476 data->res.count = 0;
477 data->res.fattr = &data->fattr;
478 data->res.verf = &data->verf;
479
480 rpc_init_task(&data->task, NFS_CLIENT(dreq->inode), RPC_TASK_ASYNC,
481 &nfs_commit_direct_ops, data);
482 NFS_PROTO(data->inode)->commit_setup(data, 0);
483
484 data->task.tk_priority = RPC_PRIORITY_NORMAL;
485 data->task.tk_cookie = (unsigned long)data->inode;
486 /* Note: task.tk_ops->rpc_release will free dreq->commit_data */
487 dreq->commit_data = NULL;
488
Trond Myklebuste99170f2006-04-18 13:21:42 -0400489 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Trond Myklebustfad61492006-03-20 13:44:36 -0500490
491 lock_kernel();
492 rpc_execute(&data->task);
493 unlock_kernel();
494}
495
496static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode)
497{
498 int flags = dreq->flags;
499
500 dreq->flags = 0;
501 switch (flags) {
502 case NFS_ODIRECT_DO_COMMIT:
503 nfs_direct_commit_schedule(dreq);
504 break;
505 case NFS_ODIRECT_RESCHED_WRITES:
506 nfs_direct_write_reschedule(dreq);
507 break;
508 default:
509 nfs_end_data_update(inode);
510 if (dreq->commit_data != NULL)
511 nfs_commit_free(dreq->commit_data);
512 nfs_direct_free_writedata(dreq);
513 nfs_direct_complete(dreq);
514 }
515}
516
517static void nfs_alloc_commit_data(struct nfs_direct_req *dreq)
518{
519 dreq->commit_data = nfs_commit_alloc(0);
520 if (dreq->commit_data != NULL)
521 dreq->commit_data->req = (struct nfs_page *) dreq;
522}
523#else
524static inline void nfs_alloc_commit_data(struct nfs_direct_req *dreq)
525{
526 dreq->commit_data = NULL;
527}
528
529static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode)
530{
531 nfs_end_data_update(inode);
532 nfs_direct_free_writedata(dreq);
533 nfs_direct_complete(dreq);
534}
535#endif
536
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400537static struct nfs_direct_req *nfs_direct_write_alloc(size_t nbytes, size_t wsize)
538{
539 struct list_head *list;
540 struct nfs_direct_req *dreq;
541 unsigned int wpages = (wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
542
543 dreq = nfs_direct_req_alloc();
544 if (!dreq)
545 return NULL;
546
547 list = &dreq->list;
548 for(;;) {
549 struct nfs_write_data *data = nfs_writedata_alloc(wpages);
550
551 if (unlikely(!data)) {
552 while (!list_empty(list)) {
553 data = list_entry(list->next,
554 struct nfs_write_data, pages);
555 list_del(&data->pages);
556 nfs_writedata_free(data);
557 }
558 kref_put(&dreq->kref, nfs_direct_req_release);
559 return NULL;
560 }
561
562 INIT_LIST_HEAD(&data->pages);
563 list_add(&data->pages, list);
564
565 data->req = (struct nfs_page *) dreq;
566 dreq->outstanding++;
567 if (nbytes <= wsize)
568 break;
569 nbytes -= wsize;
570 }
571
572 nfs_alloc_commit_data(dreq);
573
574 kref_get(&dreq->kref);
575 return dreq;
576}
577
Chuck Lever462d5b32006-03-20 13:44:32 -0500578static void nfs_direct_write_result(struct rpc_task *task, void *calldata)
579{
580 struct nfs_write_data *data = calldata;
581 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
582 int status = task->tk_status;
583
584 if (nfs_writeback_done(task, data) != 0)
585 return;
Chuck Lever462d5b32006-03-20 13:44:32 -0500586
Chuck Lever15ce4a02006-03-20 13:44:34 -0500587 spin_lock(&dreq->lock);
Chuck Lever462d5b32006-03-20 13:44:32 -0500588
Chuck Lever15ce4a02006-03-20 13:44:34 -0500589 if (likely(status >= 0))
590 dreq->count += data->res.count;
591 else
Trond Myklebustfad61492006-03-20 13:44:36 -0500592 dreq->error = task->tk_status;
Chuck Lever15ce4a02006-03-20 13:44:34 -0500593
Trond Myklebustfad61492006-03-20 13:44:36 -0500594 if (data->res.verf->committed != NFS_FILE_SYNC) {
595 switch (dreq->flags) {
596 case 0:
597 memcpy(&dreq->verf, &data->verf, sizeof(dreq->verf));
598 dreq->flags = NFS_ODIRECT_DO_COMMIT;
599 break;
600 case NFS_ODIRECT_DO_COMMIT:
601 if (memcmp(&dreq->verf, &data->verf, sizeof(dreq->verf))) {
602 dprintk("NFS: %5u write verify failed\n", task->tk_pid);
603 dreq->flags = NFS_ODIRECT_RESCHED_WRITES;
604 }
605 }
606 }
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400607 /* In case we have to resend */
608 data->args.stable = NFS_FILE_SYNC;
Trond Myklebustfad61492006-03-20 13:44:36 -0500609
610 spin_unlock(&dreq->lock);
611}
612
613/*
614 * NB: Return the value of the first error return code. Subsequent
615 * errors after the first one are ignored.
616 */
617static void nfs_direct_write_release(void *calldata)
618{
619 struct nfs_write_data *data = calldata;
620 struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req;
621
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400622 spin_lock(&dreq->lock);
623 if (--dreq->outstanding) {
624 spin_unlock(&dreq->lock);
625 return;
626 }
627 spin_unlock(&dreq->lock);
628
629 nfs_direct_write_complete(dreq, data->inode);
Chuck Lever462d5b32006-03-20 13:44:32 -0500630}
631
632static const struct rpc_call_ops nfs_write_direct_ops = {
633 .rpc_call_done = nfs_direct_write_result,
Trond Myklebustfad61492006-03-20 13:44:36 -0500634 .rpc_release = nfs_direct_write_release,
Chuck Lever462d5b32006-03-20 13:44:32 -0500635};
636
637/*
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400638 * For each nfs_write_data struct that was allocated on the list, dispatch
639 * an NFS WRITE operation
Chuck Lever462d5b32006-03-20 13:44:32 -0500640 */
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400641static void nfs_direct_write_schedule(struct nfs_direct_req *dreq, int sync)
Chuck Lever462d5b32006-03-20 13:44:32 -0500642{
Trond Myklebusta8881f52006-03-20 13:44:36 -0500643 struct nfs_open_context *ctx = dreq->ctx;
644 struct inode *inode = ctx->dentry->d_inode;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400645 struct list_head *list = &dreq->list;
646 struct page **pages = dreq->pages;
647 size_t count = dreq->user_count;
648 loff_t pos = dreq->pos;
Chuck Lever462d5b32006-03-20 13:44:32 -0500649 size_t wsize = NFS_SERVER(inode)->wsize;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400650 unsigned int curpage, pgbase;
Chuck Lever82b145c2006-06-20 12:57:03 -0400651
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400652 curpage = 0;
653 pgbase = dreq->user_addr & ~PAGE_MASK;
Chuck Lever462d5b32006-03-20 13:44:32 -0500654 do {
Chuck Lever82b145c2006-06-20 12:57:03 -0400655 struct nfs_write_data *data;
Chuck Lever462d5b32006-03-20 13:44:32 -0500656 size_t bytes;
657
658 bytes = wsize;
659 if (count < wsize)
660 bytes = count;
661
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400662 BUG_ON(list_empty(list));
663 data = list_entry(list->next, struct nfs_write_data, pages);
Trond Myklebustfad61492006-03-20 13:44:36 -0500664 list_move_tail(&data->pages, &dreq->rewrite_list);
Chuck Lever462d5b32006-03-20 13:44:32 -0500665
666 data->inode = inode;
667 data->cred = ctx->cred;
668 data->args.fh = NFS_FH(inode);
669 data->args.context = ctx;
Chuck Lever88467052006-03-20 13:44:34 -0500670 data->args.offset = pos;
Chuck Lever462d5b32006-03-20 13:44:32 -0500671 data->args.pgbase = pgbase;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400672 data->args.pages = &pages[curpage];
Chuck Lever462d5b32006-03-20 13:44:32 -0500673 data->args.count = bytes;
674 data->res.fattr = &data->fattr;
675 data->res.count = bytes;
Chuck Lever47989d72006-03-20 13:44:32 -0500676 data->res.verf = &data->verf;
Chuck Lever462d5b32006-03-20 13:44:32 -0500677
678 rpc_init_task(&data->task, NFS_CLIENT(inode), RPC_TASK_ASYNC,
679 &nfs_write_direct_ops, data);
Trond Myklebustfad61492006-03-20 13:44:36 -0500680 NFS_PROTO(inode)->write_setup(data, sync);
Chuck Lever462d5b32006-03-20 13:44:32 -0500681
682 data->task.tk_priority = RPC_PRIORITY_NORMAL;
683 data->task.tk_cookie = (unsigned long) inode;
684
685 lock_kernel();
686 rpc_execute(&data->task);
687 unlock_kernel();
688
Chuck Lever606bbba2006-03-20 13:44:42 -0500689 dfprintk(VFS, "NFS: %5u initiated direct write call (req %s/%Ld, %zu bytes @ offset %Lu)\n",
Chuck Lever462d5b32006-03-20 13:44:32 -0500690 data->task.tk_pid,
691 inode->i_sb->s_id,
692 (long long)NFS_FILEID(inode),
693 bytes,
694 (unsigned long long)data->args.offset);
695
Chuck Lever88467052006-03-20 13:44:34 -0500696 pos += bytes;
Chuck Lever462d5b32006-03-20 13:44:32 -0500697 pgbase += bytes;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400698 curpage += pgbase >> PAGE_SHIFT;
Chuck Lever462d5b32006-03-20 13:44:32 -0500699 pgbase &= ~PAGE_MASK;
700
701 count -= bytes;
702 } while (count != 0);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400703 BUG_ON(!list_empty(list));
Chuck Lever462d5b32006-03-20 13:44:32 -0500704}
705
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400706static ssize_t nfs_direct_write(struct kiocb *iocb, unsigned long user_addr, size_t count, loff_t pos, struct page **pages, int nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400708 ssize_t result;
Chuck Lever462d5b32006-03-20 13:44:32 -0500709 sigset_t oldset;
Chuck Leverc89f2ee2006-03-20 13:44:33 -0500710 struct inode *inode = iocb->ki_filp->f_mapping->host;
Chuck Lever462d5b32006-03-20 13:44:32 -0500711 struct rpc_clnt *clnt = NFS_CLIENT(inode);
712 struct nfs_direct_req *dreq;
Trond Myklebustfad61492006-03-20 13:44:36 -0500713 size_t wsize = NFS_SERVER(inode)->wsize;
714 int sync = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400716 dreq = nfs_direct_write_alloc(count, wsize);
Chuck Lever462d5b32006-03-20 13:44:32 -0500717 if (!dreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return -ENOMEM;
Trond Myklebustfad61492006-03-20 13:44:36 -0500719 if (dreq->commit_data == NULL || count < wsize)
720 sync = FLUSH_STABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400722 dreq->user_addr = user_addr;
723 dreq->user_count = count;
724 dreq->pos = pos;
725 dreq->pages = pages;
726 dreq->npages = nr_pages;
Chuck Leverc89f2ee2006-03-20 13:44:33 -0500727 dreq->inode = inode;
Trond Myklebusta8881f52006-03-20 13:44:36 -0500728 dreq->ctx = get_nfs_open_context((struct nfs_open_context *)iocb->ki_filp->private_data);
Chuck Leverc89f2ee2006-03-20 13:44:33 -0500729 if (!is_sync_kiocb(iocb))
730 dreq->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Chuck Lever47989d72006-03-20 13:44:32 -0500732 nfs_add_stats(inode, NFSIOS_DIRECTWRITTENBYTES, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 nfs_begin_data_update(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Chuck Lever462d5b32006-03-20 13:44:32 -0500736 rpc_clnt_sigmask(clnt, &oldset);
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400737 nfs_direct_write_schedule(dreq, sync);
738 result = nfs_direct_wait(dreq);
Chuck Lever462d5b32006-03-20 13:44:32 -0500739 rpc_clnt_sigunmask(clnt, &oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return result;
742}
743
744/**
745 * nfs_file_direct_read - file direct read operation for NFS files
746 * @iocb: target I/O control block
747 * @buf: user's buffer into which to read data
Chuck Lever88467052006-03-20 13:44:34 -0500748 * @count: number of bytes to read
749 * @pos: byte offset in file where reading starts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 *
751 * We use this function for direct reads instead of calling
752 * generic_file_aio_read() in order to avoid gfar's check to see if
753 * the request starts before the end of the file. For that check
754 * to work, we must generate a GETATTR before each direct read, and
755 * even then there is a window between the GETATTR and the subsequent
Chuck Lever88467052006-03-20 13:44:34 -0500756 * READ where the file size could change. Our preference is simply
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * to do all reads the application wants, and the server will take
758 * care of managing the end of file boundary.
Chuck Lever88467052006-03-20 13:44:34 -0500759 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 * This function also eliminates unnecessarily updating the file's
761 * atime locally, as the NFS server sets the file's atime, and this
762 * client must read the updated atime from the server back into its
763 * cache.
764 */
Chuck Leverd4cc9482006-03-20 13:44:28 -0500765ssize_t nfs_file_direct_read(struct kiocb *iocb, char __user *buf, size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 ssize_t retval = -EINVAL;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400768 int page_count;
769 struct page **pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 struct address_space *mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Chuck Leverce1a8e62005-11-30 18:08:17 -0500773 dprintk("nfs: direct read(%s/%s, %lu@%Ld)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500774 file->f_dentry->d_parent->d_name.name,
775 file->f_dentry->d_name.name,
Chuck Leverce1a8e62005-11-30 18:08:17 -0500776 (unsigned long) count, (long long) pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (count < 0)
779 goto out;
780 retval = -EFAULT;
Chuck Lever0cdd80d2006-03-20 13:44:29 -0500781 if (!access_ok(VERIFY_WRITE, buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 goto out;
783 retval = 0;
784 if (!count)
785 goto out;
786
Trond Myklebust29884df2005-12-13 16:13:54 -0500787 retval = nfs_sync_mapping(mapping);
788 if (retval)
789 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400791 retval = nfs_get_user_pages(READ, (unsigned long) buf,
792 count, &pages);
793 if (retval < 0)
794 goto out;
795 page_count = retval;
796
797 retval = nfs_direct_read(iocb, (unsigned long) buf, count, pos,
798 pages, page_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (retval > 0)
Chuck Lever0cdd80d2006-03-20 13:44:29 -0500800 iocb->ki_pos = pos + retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802out:
803 return retval;
804}
805
806/**
807 * nfs_file_direct_write - file direct write operation for NFS files
808 * @iocb: target I/O control block
809 * @buf: user's buffer from which to write data
Chuck Lever88467052006-03-20 13:44:34 -0500810 * @count: number of bytes to write
811 * @pos: byte offset in file where writing starts
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 *
813 * We use this function for direct writes instead of calling
814 * generic_file_aio_write() in order to avoid taking the inode
815 * semaphore and updating the i_size. The NFS server will set
816 * the new i_size and this client must read the updated size
817 * back into its cache. We let the server do generic write
818 * parameter checking and report problems.
819 *
820 * We also avoid an unnecessary invocation of generic_osync_inode(),
821 * as it is fairly meaningless to sync the metadata of an NFS file.
822 *
823 * We eliminate local atime updates, see direct read above.
824 *
825 * We avoid unnecessary page cache invalidations for normal cached
826 * readers of this file.
827 *
828 * Note that O_APPEND is not supported for NFS direct writes, as there
829 * is no atomic O_APPEND write facility in the NFS protocol.
830 */
Chuck Leverd4cc9482006-03-20 13:44:28 -0500831ssize_t nfs_file_direct_write(struct kiocb *iocb, const char __user *buf, size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Chuck Leverce1a8e62005-11-30 18:08:17 -0500833 ssize_t retval;
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400834 int page_count;
835 struct page **pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 struct address_space *mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Chuck Leverce1a8e62005-11-30 18:08:17 -0500839 dfprintk(VFS, "nfs: direct write(%s/%s, %lu@%Ld)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500840 file->f_dentry->d_parent->d_name.name,
Chuck Leverce1a8e62005-11-30 18:08:17 -0500841 file->f_dentry->d_name.name,
842 (unsigned long) count, (long long) pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Chuck Leverce1a8e62005-11-30 18:08:17 -0500844 retval = generic_write_checks(file, &pos, &count, 0);
845 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 goto out;
Chuck Leverce1a8e62005-11-30 18:08:17 -0500847
848 retval = -EINVAL;
849 if ((ssize_t) count < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 retval = 0;
852 if (!count)
853 goto out;
Chuck Leverce1a8e62005-11-30 18:08:17 -0500854
855 retval = -EFAULT;
Chuck Lever47989d72006-03-20 13:44:32 -0500856 if (!access_ok(VERIFY_READ, buf, count))
Chuck Leverce1a8e62005-11-30 18:08:17 -0500857 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Trond Myklebust29884df2005-12-13 16:13:54 -0500859 retval = nfs_sync_mapping(mapping);
860 if (retval)
861 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Trond Myklebustccf01ef2006-06-25 06:27:31 -0400863 retval = nfs_get_user_pages(WRITE, (unsigned long) buf,
864 count, &pages);
865 if (retval < 0)
866 goto out;
867 page_count = retval;
868
869 retval = nfs_direct_write(iocb, (unsigned long) buf, count,
870 pos, pages, page_count);
Chuck Lever9eafa8c2006-03-20 13:44:33 -0500871
872 /*
873 * XXX: nfs_end_data_update() already ensures this file's
874 * cached data is subsequently invalidated. Do we really
875 * need to call invalidate_inode_pages2() again here?
876 *
877 * For aio writes, this invalidation will almost certainly
878 * occur before the writes complete. Kind of racey.
879 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (mapping->nrpages)
881 invalidate_inode_pages2(mapping);
Chuck Lever9eafa8c2006-03-20 13:44:33 -0500882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (retval > 0)
Chuck Leverce1a8e62005-11-30 18:08:17 -0500884 iocb->ki_pos = pos + retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886out:
887 return retval;
888}
889
Chuck Lever88467052006-03-20 13:44:34 -0500890/**
891 * nfs_init_directcache - create a slab cache for nfs_direct_req structures
892 *
893 */
David Howellsf7b422b2006-06-09 09:34:33 -0400894int __init nfs_init_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 nfs_direct_cachep = kmem_cache_create("nfs_direct_cache",
897 sizeof(struct nfs_direct_req),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800898 0, (SLAB_RECLAIM_ACCOUNT|
899 SLAB_MEM_SPREAD),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 NULL, NULL);
901 if (nfs_direct_cachep == NULL)
902 return -ENOMEM;
903
904 return 0;
905}
906
Chuck Lever88467052006-03-20 13:44:34 -0500907/**
David Howellsf7b422b2006-06-09 09:34:33 -0400908 * nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures
Chuck Lever88467052006-03-20 13:44:34 -0500909 *
910 */
David Brownell266bee82006-06-27 12:59:15 -0700911void nfs_destroy_directcache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 if (kmem_cache_destroy(nfs_direct_cachep))
914 printk(KERN_INFO "nfs_direct_cache: not all structures were freed\n");
915}