]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/nfs/direct.c | |
3 | * | |
4 | * Copyright (C) 2003 by Chuck Lever <[email protected]> | |
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 | |
88467055 | 10 | * (multiple copies of the same instance running on separate hosts) |
1da177e4 | 11 | * implement their own cache coherency protocol that subsumes file |
88467055 CL |
12 | * 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 | |
1da177e4 LT |
15 | * 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 | |
88467055 | 37 | * 04 May 2005 support O_DIRECT with aio --cel |
1da177e4 LT |
38 | * |
39 | */ | |
40 | ||
1da177e4 LT |
41 | #include <linux/errno.h> |
42 | #include <linux/sched.h> | |
43 | #include <linux/kernel.h> | |
1da177e4 LT |
44 | #include <linux/file.h> |
45 | #include <linux/pagemap.h> | |
46 | #include <linux/kref.h> | |
5a0e3ad6 | 47 | #include <linux/slab.h> |
1da177e4 LT |
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 | ||
8d5658c9 | 57 | #include "internal.h" |
91d5b470 CL |
58 | #include "iostat.h" |
59 | ||
1da177e4 | 60 | #define NFSDBG_FACILITY NFSDBG_VFS |
1da177e4 | 61 | |
e18b890b | 62 | static struct kmem_cache *nfs_direct_cachep; |
1da177e4 LT |
63 | |
64 | /* | |
65 | * This represents a set of asynchronous requests that we're waiting on | |
66 | */ | |
67 | struct nfs_direct_req { | |
68 | struct kref kref; /* release manager */ | |
15ce4a0c CL |
69 | |
70 | /* I/O parameters */ | |
a8881f5a | 71 | struct nfs_open_context *ctx; /* file open context info */ |
f11ac8db | 72 | struct nfs_lock_context *l_ctx; /* Lock context info */ |
99514f8f | 73 | struct kiocb * iocb; /* controlling i/o request */ |
88467055 | 74 | struct inode * inode; /* target file of i/o */ |
15ce4a0c CL |
75 | |
76 | /* completion state */ | |
607f31e8 | 77 | atomic_t io_count; /* i/os we're waiting for */ |
15ce4a0c | 78 | spinlock_t lock; /* protect completion state */ |
15ce4a0c | 79 | ssize_t count, /* bytes actually processed */ |
1da177e4 | 80 | error; /* any reported error */ |
d72b7a6b | 81 | struct completion completion; /* wait for i/o completion */ |
fad61490 TM |
82 | |
83 | /* commit state */ | |
607f31e8 | 84 | struct list_head rewrite_list; /* saved nfs_write_data structs */ |
fad61490 TM |
85 | struct nfs_write_data * commit_data; /* special write_data for commits */ |
86 | int flags; | |
87 | #define NFS_ODIRECT_DO_COMMIT (1) /* an unstable reply was received */ | |
88 | #define NFS_ODIRECT_RESCHED_WRITES (2) /* write verification failed */ | |
89 | struct nfs_writeverf verf; /* unstable write verifier */ | |
1da177e4 LT |
90 | }; |
91 | ||
fad61490 | 92 | static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode); |
607f31e8 TM |
93 | static const struct rpc_call_ops nfs_write_direct_ops; |
94 | ||
95 | static inline void get_dreq(struct nfs_direct_req *dreq) | |
96 | { | |
97 | atomic_inc(&dreq->io_count); | |
98 | } | |
99 | ||
100 | static inline int put_dreq(struct nfs_direct_req *dreq) | |
101 | { | |
102 | return atomic_dec_and_test(&dreq->io_count); | |
103 | } | |
104 | ||
1da177e4 | 105 | /** |
b8a32e2b CL |
106 | * nfs_direct_IO - NFS address space operation for direct I/O |
107 | * @rw: direction (read or write) | |
108 | * @iocb: target I/O control block | |
109 | * @iov: array of vectors that define I/O buffer | |
110 | * @pos: offset in file to begin the operation | |
111 | * @nr_segs: size of iovec array | |
112 | * | |
113 | * The presence of this routine in the address space ops vector means | |
114 | * the NFS client supports direct I/O. However, we shunt off direct | |
115 | * read and write requests before the VFS gets them, so this method | |
116 | * should never be called. | |
1da177e4 | 117 | */ |
b8a32e2b CL |
118 | ssize_t nfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov, loff_t pos, unsigned long nr_segs) |
119 | { | |
b8a32e2b | 120 | dprintk("NFS: nfs_direct_IO (%s) off/no(%Ld/%lu) EINVAL\n", |
01cce933 | 121 | iocb->ki_filp->f_path.dentry->d_name.name, |
e99170ff | 122 | (long long) pos, nr_segs); |
b8a32e2b CL |
123 | |
124 | return -EINVAL; | |
125 | } | |
126 | ||
d4a8f367 | 127 | static void nfs_direct_dirty_pages(struct page **pages, unsigned int pgbase, size_t count) |
6b45d858 | 128 | { |
d4a8f367 | 129 | unsigned int npages; |
749e146e | 130 | unsigned int i; |
d4a8f367 TM |
131 | |
132 | if (count == 0) | |
133 | return; | |
134 | pages += (pgbase >> PAGE_SHIFT); | |
135 | npages = (count + (pgbase & ~PAGE_MASK) + PAGE_SIZE - 1) >> PAGE_SHIFT; | |
6b45d858 TM |
136 | for (i = 0; i < npages; i++) { |
137 | struct page *page = pages[i]; | |
607f31e8 | 138 | if (!PageCompound(page)) |
d4a8f367 | 139 | set_page_dirty(page); |
6b45d858 | 140 | } |
9c93ab7d CL |
141 | } |
142 | ||
749e146e | 143 | static void nfs_direct_release_pages(struct page **pages, unsigned int npages) |
9c93ab7d | 144 | { |
749e146e | 145 | unsigned int i; |
607f31e8 TM |
146 | for (i = 0; i < npages; i++) |
147 | page_cache_release(pages[i]); | |
6b45d858 TM |
148 | } |
149 | ||
93619e59 | 150 | static inline struct nfs_direct_req *nfs_direct_req_alloc(void) |
1da177e4 | 151 | { |
93619e59 CL |
152 | struct nfs_direct_req *dreq; |
153 | ||
e94b1766 | 154 | dreq = kmem_cache_alloc(nfs_direct_cachep, GFP_KERNEL); |
93619e59 CL |
155 | if (!dreq) |
156 | return NULL; | |
157 | ||
158 | kref_init(&dreq->kref); | |
607f31e8 | 159 | kref_get(&dreq->kref); |
d72b7a6b | 160 | init_completion(&dreq->completion); |
fad61490 | 161 | INIT_LIST_HEAD(&dreq->rewrite_list); |
93619e59 | 162 | dreq->iocb = NULL; |
a8881f5a | 163 | dreq->ctx = NULL; |
f11ac8db | 164 | dreq->l_ctx = NULL; |
15ce4a0c | 165 | spin_lock_init(&dreq->lock); |
607f31e8 | 166 | atomic_set(&dreq->io_count, 0); |
15ce4a0c CL |
167 | dreq->count = 0; |
168 | dreq->error = 0; | |
fad61490 | 169 | dreq->flags = 0; |
93619e59 CL |
170 | |
171 | return dreq; | |
1da177e4 LT |
172 | } |
173 | ||
b4946ffb | 174 | static void nfs_direct_req_free(struct kref *kref) |
1da177e4 LT |
175 | { |
176 | struct nfs_direct_req *dreq = container_of(kref, struct nfs_direct_req, kref); | |
a8881f5a | 177 | |
f11ac8db TM |
178 | if (dreq->l_ctx != NULL) |
179 | nfs_put_lock_context(dreq->l_ctx); | |
a8881f5a TM |
180 | if (dreq->ctx != NULL) |
181 | put_nfs_open_context(dreq->ctx); | |
1da177e4 LT |
182 | kmem_cache_free(nfs_direct_cachep, dreq); |
183 | } | |
184 | ||
b4946ffb TM |
185 | static void nfs_direct_req_release(struct nfs_direct_req *dreq) |
186 | { | |
187 | kref_put(&dreq->kref, nfs_direct_req_free); | |
188 | } | |
189 | ||
bc0fb201 CL |
190 | /* |
191 | * Collects and returns the final error value/byte-count. | |
192 | */ | |
193 | static ssize_t nfs_direct_wait(struct nfs_direct_req *dreq) | |
194 | { | |
15ce4a0c | 195 | ssize_t result = -EIOCBQUEUED; |
bc0fb201 CL |
196 | |
197 | /* Async requests don't wait here */ | |
198 | if (dreq->iocb) | |
199 | goto out; | |
200 | ||
150030b7 | 201 | result = wait_for_completion_killable(&dreq->completion); |
bc0fb201 CL |
202 | |
203 | if (!result) | |
15ce4a0c | 204 | result = dreq->error; |
bc0fb201 | 205 | if (!result) |
15ce4a0c | 206 | result = dreq->count; |
bc0fb201 CL |
207 | |
208 | out: | |
bc0fb201 CL |
209 | return (ssize_t) result; |
210 | } | |
211 | ||
63ab46ab | 212 | /* |
607f31e8 TM |
213 | * Synchronous I/O uses a stack-allocated iocb. Thus we can't trust |
214 | * the iocb is still valid here if this is a synchronous request. | |
63ab46ab CL |
215 | */ |
216 | static void nfs_direct_complete(struct nfs_direct_req *dreq) | |
217 | { | |
63ab46ab | 218 | if (dreq->iocb) { |
15ce4a0c | 219 | long res = (long) dreq->error; |
63ab46ab | 220 | if (!res) |
15ce4a0c | 221 | res = (long) dreq->count; |
63ab46ab | 222 | aio_complete(dreq->iocb, res, 0); |
d72b7a6b TM |
223 | } |
224 | complete_all(&dreq->completion); | |
63ab46ab | 225 | |
b4946ffb | 226 | nfs_direct_req_release(dreq); |
63ab46ab CL |
227 | } |
228 | ||
06cf6f2e | 229 | /* |
607f31e8 TM |
230 | * We must hold a reference to all the pages in this direct read request |
231 | * until the RPCs complete. This could be long *after* we are woken up in | |
232 | * nfs_direct_wait (for instance, if someone hits ^C on a slow server). | |
06cf6f2e | 233 | */ |
ec06c096 | 234 | static void nfs_direct_read_result(struct rpc_task *task, void *calldata) |
1da177e4 | 235 | { |
ec06c096 | 236 | struct nfs_read_data *data = calldata; |
1da177e4 | 237 | |
fdd1e74c TM |
238 | nfs_readpage_result(task, data); |
239 | } | |
240 | ||
241 | static void nfs_direct_read_release(void *calldata) | |
242 | { | |
243 | ||
244 | struct nfs_read_data *data = calldata; | |
245 | struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req; | |
246 | int status = data->task.tk_status; | |
15ce4a0c CL |
247 | |
248 | spin_lock(&dreq->lock); | |
fdd1e74c TM |
249 | if (unlikely(status < 0)) { |
250 | dreq->error = status; | |
d4a8f367 TM |
251 | spin_unlock(&dreq->lock); |
252 | } else { | |
253 | dreq->count += data->res.count; | |
254 | spin_unlock(&dreq->lock); | |
255 | nfs_direct_dirty_pages(data->pagevec, | |
256 | data->args.pgbase, | |
257 | data->res.count); | |
258 | } | |
259 | nfs_direct_release_pages(data->pagevec, data->npages); | |
607f31e8 TM |
260 | |
261 | if (put_dreq(dreq)) | |
262 | nfs_direct_complete(dreq); | |
1ae88b2e | 263 | nfs_readdata_free(data); |
1da177e4 LT |
264 | } |
265 | ||
ec06c096 | 266 | static const struct rpc_call_ops nfs_read_direct_ops = { |
f11c88af AA |
267 | #if defined(CONFIG_NFS_V4_1) |
268 | .rpc_call_prepare = nfs_read_prepare, | |
269 | #endif /* CONFIG_NFS_V4_1 */ | |
ec06c096 | 270 | .rpc_call_done = nfs_direct_read_result, |
fdd1e74c | 271 | .rpc_release = nfs_direct_read_release, |
ec06c096 TM |
272 | }; |
273 | ||
d4cc948b | 274 | /* |
607f31e8 TM |
275 | * For each rsize'd chunk of the user's buffer, dispatch an NFS READ |
276 | * operation. If nfs_readdata_alloc() or get_user_pages() fails, | |
277 | * bail and stop sending more reads. Read length accounting is | |
278 | * handled automatically by nfs_direct_read_result(). Otherwise, if | |
279 | * no requests have been sent, just return an error. | |
1da177e4 | 280 | */ |
02fe4946 CL |
281 | static ssize_t nfs_direct_read_schedule_segment(struct nfs_direct_req *dreq, |
282 | const struct iovec *iov, | |
283 | loff_t pos) | |
1da177e4 | 284 | { |
a8881f5a | 285 | struct nfs_open_context *ctx = dreq->ctx; |
88be9f99 | 286 | struct inode *inode = ctx->path.dentry->d_inode; |
02fe4946 CL |
287 | unsigned long user_addr = (unsigned long)iov->iov_base; |
288 | size_t count = iov->iov_len; | |
5dd602f2 | 289 | size_t rsize = NFS_SERVER(inode)->rsize; |
07737691 | 290 | struct rpc_task *task; |
bdc7f021 TM |
291 | struct rpc_message msg = { |
292 | .rpc_cred = ctx->cred, | |
293 | }; | |
84115e1c TM |
294 | struct rpc_task_setup task_setup_data = { |
295 | .rpc_client = NFS_CLIENT(inode), | |
bdc7f021 | 296 | .rpc_message = &msg, |
84115e1c | 297 | .callback_ops = &nfs_read_direct_ops, |
101070ca | 298 | .workqueue = nfsiod_workqueue, |
84115e1c TM |
299 | .flags = RPC_TASK_ASYNC, |
300 | }; | |
607f31e8 TM |
301 | unsigned int pgbase; |
302 | int result; | |
303 | ssize_t started = 0; | |
304 | ||
1da177e4 | 305 | do { |
82b145c5 | 306 | struct nfs_read_data *data; |
5dd602f2 | 307 | size_t bytes; |
1da177e4 | 308 | |
e9f7bee1 TM |
309 | pgbase = user_addr & ~PAGE_MASK; |
310 | bytes = min(rsize,count); | |
311 | ||
607f31e8 | 312 | result = -ENOMEM; |
8d5658c9 | 313 | data = nfs_readdata_alloc(nfs_page_array_len(pgbase, bytes)); |
607f31e8 TM |
314 | if (unlikely(!data)) |
315 | break; | |
316 | ||
607f31e8 TM |
317 | down_read(¤t->mm->mmap_sem); |
318 | result = get_user_pages(current, current->mm, user_addr, | |
319 | data->npages, 1, 0, data->pagevec, NULL); | |
320 | up_read(¤t->mm->mmap_sem); | |
749e146e | 321 | if (result < 0) { |
1ae88b2e | 322 | nfs_readdata_free(data); |
749e146e CL |
323 | break; |
324 | } | |
325 | if ((unsigned)result < data->npages) { | |
d9df8d6b TM |
326 | bytes = result * PAGE_SIZE; |
327 | if (bytes <= pgbase) { | |
328 | nfs_direct_release_pages(data->pagevec, result); | |
1ae88b2e | 329 | nfs_readdata_free(data); |
d9df8d6b TM |
330 | break; |
331 | } | |
332 | bytes -= pgbase; | |
333 | data->npages = result; | |
607f31e8 TM |
334 | } |
335 | ||
336 | get_dreq(dreq); | |
82b145c5 | 337 | |
607f31e8 | 338 | data->req = (struct nfs_page *) dreq; |
1da177e4 | 339 | data->inode = inode; |
bdc7f021 | 340 | data->cred = msg.rpc_cred; |
1da177e4 | 341 | data->args.fh = NFS_FH(inode); |
1ae88b2e | 342 | data->args.context = ctx; |
f11ac8db | 343 | data->args.lock_context = dreq->l_ctx; |
88467055 | 344 | data->args.offset = pos; |
1da177e4 | 345 | data->args.pgbase = pgbase; |
607f31e8 | 346 | data->args.pages = data->pagevec; |
1da177e4 LT |
347 | data->args.count = bytes; |
348 | data->res.fattr = &data->fattr; | |
349 | data->res.eof = 0; | |
350 | data->res.count = bytes; | |
65d26953 | 351 | nfs_fattr_init(&data->fattr); |
bdc7f021 TM |
352 | msg.rpc_argp = &data->args; |
353 | msg.rpc_resp = &data->res; | |
1da177e4 | 354 | |
07737691 | 355 | task_setup_data.task = &data->task; |
84115e1c | 356 | task_setup_data.callback_data = data; |
bdc7f021 | 357 | NFS_PROTO(inode)->read_setup(data, &msg); |
1da177e4 | 358 | |
07737691 | 359 | task = rpc_run_task(&task_setup_data); |
dbae4c73 TM |
360 | if (IS_ERR(task)) |
361 | break; | |
362 | rpc_put_task(task); | |
1da177e4 | 363 | |
a3f565b1 CL |
364 | dprintk("NFS: %5u initiated direct read call " |
365 | "(req %s/%Ld, %zu bytes @ offset %Lu)\n", | |
1da177e4 LT |
366 | data->task.tk_pid, |
367 | inode->i_sb->s_id, | |
368 | (long long)NFS_FILEID(inode), | |
369 | bytes, | |
370 | (unsigned long long)data->args.offset); | |
371 | ||
607f31e8 TM |
372 | started += bytes; |
373 | user_addr += bytes; | |
88467055 | 374 | pos += bytes; |
e9f7bee1 | 375 | /* FIXME: Remove this unnecessary math from final patch */ |
1da177e4 | 376 | pgbase += bytes; |
1da177e4 | 377 | pgbase &= ~PAGE_MASK; |
e9f7bee1 | 378 | BUG_ON(pgbase != (user_addr & ~PAGE_MASK)); |
1da177e4 LT |
379 | |
380 | count -= bytes; | |
381 | } while (count != 0); | |
607f31e8 | 382 | |
607f31e8 | 383 | if (started) |
c216fd70 | 384 | return started; |
607f31e8 | 385 | return result < 0 ? (ssize_t) result : -EFAULT; |
1da177e4 LT |
386 | } |
387 | ||
19f73787 CL |
388 | static ssize_t nfs_direct_read_schedule_iovec(struct nfs_direct_req *dreq, |
389 | const struct iovec *iov, | |
390 | unsigned long nr_segs, | |
391 | loff_t pos) | |
392 | { | |
393 | ssize_t result = -EINVAL; | |
394 | size_t requested_bytes = 0; | |
395 | unsigned long seg; | |
396 | ||
397 | get_dreq(dreq); | |
398 | ||
399 | for (seg = 0; seg < nr_segs; seg++) { | |
400 | const struct iovec *vec = &iov[seg]; | |
02fe4946 | 401 | result = nfs_direct_read_schedule_segment(dreq, vec, pos); |
19f73787 CL |
402 | if (result < 0) |
403 | break; | |
404 | requested_bytes += result; | |
405 | if ((size_t)result < vec->iov_len) | |
406 | break; | |
407 | pos += vec->iov_len; | |
408 | } | |
409 | ||
839f7ad6 CL |
410 | /* |
411 | * If no bytes were started, return the error, and let the | |
412 | * generic layer handle the completion. | |
413 | */ | |
414 | if (requested_bytes == 0) { | |
415 | nfs_direct_req_release(dreq); | |
416 | return result < 0 ? result : -EIO; | |
417 | } | |
418 | ||
19f73787 CL |
419 | if (put_dreq(dreq)) |
420 | nfs_direct_complete(dreq); | |
839f7ad6 | 421 | return 0; |
19f73787 CL |
422 | } |
423 | ||
c216fd70 CL |
424 | static ssize_t nfs_direct_read(struct kiocb *iocb, const struct iovec *iov, |
425 | unsigned long nr_segs, loff_t pos) | |
1da177e4 | 426 | { |
f11ac8db | 427 | ssize_t result = -ENOMEM; |
99514f8f | 428 | struct inode *inode = iocb->ki_filp->f_mapping->host; |
1da177e4 LT |
429 | struct nfs_direct_req *dreq; |
430 | ||
607f31e8 | 431 | dreq = nfs_direct_req_alloc(); |
f11ac8db TM |
432 | if (dreq == NULL) |
433 | goto out; | |
1da177e4 | 434 | |
91d5b470 | 435 | dreq->inode = inode; |
cd3758e3 | 436 | dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp)); |
f11ac8db TM |
437 | dreq->l_ctx = nfs_get_lock_context(dreq->ctx); |
438 | if (dreq->l_ctx == NULL) | |
439 | goto out_release; | |
487b8372 CL |
440 | if (!is_sync_kiocb(iocb)) |
441 | dreq->iocb = iocb; | |
1da177e4 | 442 | |
c216fd70 | 443 | result = nfs_direct_read_schedule_iovec(dreq, iov, nr_segs, pos); |
607f31e8 TM |
444 | if (!result) |
445 | result = nfs_direct_wait(dreq); | |
f11ac8db | 446 | out_release: |
b4946ffb | 447 | nfs_direct_req_release(dreq); |
f11ac8db | 448 | out: |
1da177e4 LT |
449 | return result; |
450 | } | |
451 | ||
fad61490 | 452 | static void nfs_direct_free_writedata(struct nfs_direct_req *dreq) |
1da177e4 | 453 | { |
607f31e8 TM |
454 | while (!list_empty(&dreq->rewrite_list)) { |
455 | struct nfs_write_data *data = list_entry(dreq->rewrite_list.next, struct nfs_write_data, pages); | |
fad61490 | 456 | list_del(&data->pages); |
607f31e8 | 457 | nfs_direct_release_pages(data->pagevec, data->npages); |
1ae88b2e | 458 | nfs_writedata_free(data); |
fad61490 TM |
459 | } |
460 | } | |
1da177e4 | 461 | |
fad61490 TM |
462 | #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4) |
463 | static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq) | |
464 | { | |
607f31e8 TM |
465 | struct inode *inode = dreq->inode; |
466 | struct list_head *p; | |
467 | struct nfs_write_data *data; | |
07737691 | 468 | struct rpc_task *task; |
bdc7f021 TM |
469 | struct rpc_message msg = { |
470 | .rpc_cred = dreq->ctx->cred, | |
471 | }; | |
84115e1c TM |
472 | struct rpc_task_setup task_setup_data = { |
473 | .rpc_client = NFS_CLIENT(inode), | |
a8b40bc7 | 474 | .rpc_message = &msg, |
84115e1c | 475 | .callback_ops = &nfs_write_direct_ops, |
101070ca | 476 | .workqueue = nfsiod_workqueue, |
84115e1c TM |
477 | .flags = RPC_TASK_ASYNC, |
478 | }; | |
1da177e4 | 479 | |
fad61490 | 480 | dreq->count = 0; |
607f31e8 TM |
481 | get_dreq(dreq); |
482 | ||
483 | list_for_each(p, &dreq->rewrite_list) { | |
484 | data = list_entry(p, struct nfs_write_data, pages); | |
485 | ||
486 | get_dreq(dreq); | |
487 | ||
bdc7f021 TM |
488 | /* Use stable writes */ |
489 | data->args.stable = NFS_FILE_SYNC; | |
490 | ||
607f31e8 TM |
491 | /* |
492 | * Reset data->res. | |
493 | */ | |
494 | nfs_fattr_init(&data->fattr); | |
495 | data->res.count = data->args.count; | |
496 | memset(&data->verf, 0, sizeof(data->verf)); | |
497 | ||
498 | /* | |
499 | * Reuse data->task; data->args should not have changed | |
500 | * since the original request was sent. | |
501 | */ | |
07737691 | 502 | task_setup_data.task = &data->task; |
84115e1c | 503 | task_setup_data.callback_data = data; |
bdc7f021 TM |
504 | msg.rpc_argp = &data->args; |
505 | msg.rpc_resp = &data->res; | |
506 | NFS_PROTO(inode)->write_setup(data, &msg); | |
607f31e8 | 507 | |
607f31e8 TM |
508 | /* |
509 | * We're called via an RPC callback, so BKL is already held. | |
510 | */ | |
07737691 TM |
511 | task = rpc_run_task(&task_setup_data); |
512 | if (!IS_ERR(task)) | |
513 | rpc_put_task(task); | |
607f31e8 TM |
514 | |
515 | dprintk("NFS: %5u rescheduled direct write call (req %s/%Ld, %u bytes @ offset %Lu)\n", | |
516 | data->task.tk_pid, | |
517 | inode->i_sb->s_id, | |
518 | (long long)NFS_FILEID(inode), | |
519 | data->args.count, | |
520 | (unsigned long long)data->args.offset); | |
521 | } | |
fedb595c | 522 | |
607f31e8 TM |
523 | if (put_dreq(dreq)) |
524 | nfs_direct_write_complete(dreq, inode); | |
fad61490 TM |
525 | } |
526 | ||
527 | static void nfs_direct_commit_result(struct rpc_task *task, void *calldata) | |
528 | { | |
529 | struct nfs_write_data *data = calldata; | |
fad61490 TM |
530 | |
531 | /* Call the NFS version-specific code */ | |
c9d8f89d TM |
532 | NFS_PROTO(data->inode)->commit_done(task, data); |
533 | } | |
534 | ||
535 | static void nfs_direct_commit_release(void *calldata) | |
536 | { | |
537 | struct nfs_write_data *data = calldata; | |
538 | struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req; | |
539 | int status = data->task.tk_status; | |
540 | ||
541 | if (status < 0) { | |
60fa3f76 | 542 | dprintk("NFS: %5u commit failed with error %d.\n", |
c9d8f89d | 543 | data->task.tk_pid, status); |
fad61490 | 544 | dreq->flags = NFS_ODIRECT_RESCHED_WRITES; |
60fa3f76 | 545 | } else if (memcmp(&dreq->verf, &data->verf, sizeof(data->verf))) { |
c9d8f89d | 546 | dprintk("NFS: %5u commit verify failed\n", data->task.tk_pid); |
fad61490 | 547 | dreq->flags = NFS_ODIRECT_RESCHED_WRITES; |
1da177e4 LT |
548 | } |
549 | ||
c9d8f89d | 550 | dprintk("NFS: %5u commit returned %d\n", data->task.tk_pid, status); |
fad61490 | 551 | nfs_direct_write_complete(dreq, data->inode); |
1ae88b2e | 552 | nfs_commit_free(data); |
1da177e4 LT |
553 | } |
554 | ||
fad61490 | 555 | static const struct rpc_call_ops nfs_commit_direct_ops = { |
21d9a851 AA |
556 | #if defined(CONFIG_NFS_V4_1) |
557 | .rpc_call_prepare = nfs_write_prepare, | |
558 | #endif /* CONFIG_NFS_V4_1 */ | |
fad61490 | 559 | .rpc_call_done = nfs_direct_commit_result, |
c9d8f89d | 560 | .rpc_release = nfs_direct_commit_release, |
fad61490 TM |
561 | }; |
562 | ||
563 | static void nfs_direct_commit_schedule(struct nfs_direct_req *dreq) | |
1da177e4 | 564 | { |
fad61490 | 565 | struct nfs_write_data *data = dreq->commit_data; |
07737691 | 566 | struct rpc_task *task; |
bdc7f021 TM |
567 | struct rpc_message msg = { |
568 | .rpc_argp = &data->args, | |
569 | .rpc_resp = &data->res, | |
570 | .rpc_cred = dreq->ctx->cred, | |
571 | }; | |
84115e1c | 572 | struct rpc_task_setup task_setup_data = { |
07737691 | 573 | .task = &data->task, |
84115e1c | 574 | .rpc_client = NFS_CLIENT(dreq->inode), |
bdc7f021 | 575 | .rpc_message = &msg, |
84115e1c TM |
576 | .callback_ops = &nfs_commit_direct_ops, |
577 | .callback_data = data, | |
101070ca | 578 | .workqueue = nfsiod_workqueue, |
84115e1c TM |
579 | .flags = RPC_TASK_ASYNC, |
580 | }; | |
1da177e4 | 581 | |
fad61490 | 582 | data->inode = dreq->inode; |
bdc7f021 | 583 | data->cred = msg.rpc_cred; |
1da177e4 | 584 | |
fad61490 | 585 | data->args.fh = NFS_FH(data->inode); |
607f31e8 TM |
586 | data->args.offset = 0; |
587 | data->args.count = 0; | |
1ae88b2e | 588 | data->args.context = dreq->ctx; |
f11ac8db | 589 | data->args.lock_context = dreq->l_ctx; |
fad61490 TM |
590 | data->res.count = 0; |
591 | data->res.fattr = &data->fattr; | |
592 | data->res.verf = &data->verf; | |
65d26953 | 593 | nfs_fattr_init(&data->fattr); |
1da177e4 | 594 | |
bdc7f021 | 595 | NFS_PROTO(data->inode)->commit_setup(data, &msg); |
1da177e4 | 596 | |
fad61490 TM |
597 | /* Note: task.tk_ops->rpc_release will free dreq->commit_data */ |
598 | dreq->commit_data = NULL; | |
1da177e4 | 599 | |
e99170ff | 600 | dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid); |
1da177e4 | 601 | |
07737691 TM |
602 | task = rpc_run_task(&task_setup_data); |
603 | if (!IS_ERR(task)) | |
604 | rpc_put_task(task); | |
fad61490 | 605 | } |
1da177e4 | 606 | |
fad61490 TM |
607 | static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode) |
608 | { | |
609 | int flags = dreq->flags; | |
1da177e4 | 610 | |
fad61490 TM |
611 | dreq->flags = 0; |
612 | switch (flags) { | |
613 | case NFS_ODIRECT_DO_COMMIT: | |
614 | nfs_direct_commit_schedule(dreq); | |
1da177e4 | 615 | break; |
fad61490 TM |
616 | case NFS_ODIRECT_RESCHED_WRITES: |
617 | nfs_direct_write_reschedule(dreq); | |
618 | break; | |
619 | default: | |
fad61490 TM |
620 | if (dreq->commit_data != NULL) |
621 | nfs_commit_free(dreq->commit_data); | |
622 | nfs_direct_free_writedata(dreq); | |
cd9ae2b6 | 623 | nfs_zap_mapping(inode, inode->i_mapping); |
fad61490 TM |
624 | nfs_direct_complete(dreq); |
625 | } | |
626 | } | |
1da177e4 | 627 | |
fad61490 TM |
628 | static void nfs_alloc_commit_data(struct nfs_direct_req *dreq) |
629 | { | |
c9d8f89d | 630 | dreq->commit_data = nfs_commitdata_alloc(); |
fad61490 TM |
631 | if (dreq->commit_data != NULL) |
632 | dreq->commit_data->req = (struct nfs_page *) dreq; | |
633 | } | |
634 | #else | |
635 | static inline void nfs_alloc_commit_data(struct nfs_direct_req *dreq) | |
636 | { | |
637 | dreq->commit_data = NULL; | |
638 | } | |
1da177e4 | 639 | |
fad61490 TM |
640 | static void nfs_direct_write_complete(struct nfs_direct_req *dreq, struct inode *inode) |
641 | { | |
fad61490 | 642 | nfs_direct_free_writedata(dreq); |
cd9ae2b6 | 643 | nfs_zap_mapping(inode, inode->i_mapping); |
fad61490 TM |
644 | nfs_direct_complete(dreq); |
645 | } | |
646 | #endif | |
1da177e4 | 647 | |
462d5b32 | 648 | static void nfs_direct_write_result(struct rpc_task *task, void *calldata) |
1da177e4 | 649 | { |
462d5b32 | 650 | struct nfs_write_data *data = calldata; |
462d5b32 CL |
651 | |
652 | if (nfs_writeback_done(task, data) != 0) | |
653 | return; | |
c9d8f89d TM |
654 | } |
655 | ||
656 | /* | |
657 | * NB: Return the value of the first error return code. Subsequent | |
658 | * errors after the first one are ignored. | |
659 | */ | |
660 | static void nfs_direct_write_release(void *calldata) | |
661 | { | |
662 | struct nfs_write_data *data = calldata; | |
663 | struct nfs_direct_req *dreq = (struct nfs_direct_req *) data->req; | |
664 | int status = data->task.tk_status; | |
462d5b32 | 665 | |
15ce4a0c | 666 | spin_lock(&dreq->lock); |
1da177e4 | 667 | |
eda3cef8 | 668 | if (unlikely(status < 0)) { |
432409ee | 669 | /* An error has occurred, so we should not commit */ |
60fa3f76 | 670 | dreq->flags = 0; |
eda3cef8 | 671 | dreq->error = status; |
eda3cef8 | 672 | } |
432409ee NB |
673 | if (unlikely(dreq->error != 0)) |
674 | goto out_unlock; | |
eda3cef8 TM |
675 | |
676 | dreq->count += data->res.count; | |
1da177e4 | 677 | |
fad61490 TM |
678 | if (data->res.verf->committed != NFS_FILE_SYNC) { |
679 | switch (dreq->flags) { | |
680 | case 0: | |
681 | memcpy(&dreq->verf, &data->verf, sizeof(dreq->verf)); | |
682 | dreq->flags = NFS_ODIRECT_DO_COMMIT; | |
1da177e4 | 683 | break; |
fad61490 TM |
684 | case NFS_ODIRECT_DO_COMMIT: |
685 | if (memcmp(&dreq->verf, &data->verf, sizeof(dreq->verf))) { | |
c9d8f89d | 686 | dprintk("NFS: %5u write verify failed\n", data->task.tk_pid); |
fad61490 TM |
687 | dreq->flags = NFS_ODIRECT_RESCHED_WRITES; |
688 | } | |
1da177e4 | 689 | } |
1da177e4 | 690 | } |
eda3cef8 | 691 | out_unlock: |
fad61490 | 692 | spin_unlock(&dreq->lock); |
1da177e4 | 693 | |
607f31e8 TM |
694 | if (put_dreq(dreq)) |
695 | nfs_direct_write_complete(dreq, data->inode); | |
462d5b32 CL |
696 | } |
697 | ||
698 | static const struct rpc_call_ops nfs_write_direct_ops = { | |
def6ed7e AA |
699 | #if defined(CONFIG_NFS_V4_1) |
700 | .rpc_call_prepare = nfs_write_prepare, | |
701 | #endif /* CONFIG_NFS_V4_1 */ | |
462d5b32 | 702 | .rpc_call_done = nfs_direct_write_result, |
fad61490 | 703 | .rpc_release = nfs_direct_write_release, |
462d5b32 CL |
704 | }; |
705 | ||
706 | /* | |
607f31e8 TM |
707 | * For each wsize'd chunk of the user's buffer, dispatch an NFS WRITE |
708 | * operation. If nfs_writedata_alloc() or get_user_pages() fails, | |
709 | * bail and stop sending more writes. Write length accounting is | |
710 | * handled automatically by nfs_direct_write_result(). Otherwise, if | |
711 | * no requests have been sent, just return an error. | |
462d5b32 | 712 | */ |
02fe4946 CL |
713 | static ssize_t nfs_direct_write_schedule_segment(struct nfs_direct_req *dreq, |
714 | const struct iovec *iov, | |
715 | loff_t pos, int sync) | |
462d5b32 | 716 | { |
a8881f5a | 717 | struct nfs_open_context *ctx = dreq->ctx; |
88be9f99 | 718 | struct inode *inode = ctx->path.dentry->d_inode; |
02fe4946 CL |
719 | unsigned long user_addr = (unsigned long)iov->iov_base; |
720 | size_t count = iov->iov_len; | |
07737691 | 721 | struct rpc_task *task; |
bdc7f021 TM |
722 | struct rpc_message msg = { |
723 | .rpc_cred = ctx->cred, | |
724 | }; | |
84115e1c TM |
725 | struct rpc_task_setup task_setup_data = { |
726 | .rpc_client = NFS_CLIENT(inode), | |
bdc7f021 | 727 | .rpc_message = &msg, |
84115e1c | 728 | .callback_ops = &nfs_write_direct_ops, |
101070ca | 729 | .workqueue = nfsiod_workqueue, |
84115e1c TM |
730 | .flags = RPC_TASK_ASYNC, |
731 | }; | |
462d5b32 | 732 | size_t wsize = NFS_SERVER(inode)->wsize; |
607f31e8 TM |
733 | unsigned int pgbase; |
734 | int result; | |
735 | ssize_t started = 0; | |
82b145c5 | 736 | |
1da177e4 | 737 | do { |
82b145c5 | 738 | struct nfs_write_data *data; |
462d5b32 CL |
739 | size_t bytes; |
740 | ||
e9f7bee1 TM |
741 | pgbase = user_addr & ~PAGE_MASK; |
742 | bytes = min(wsize,count); | |
743 | ||
607f31e8 | 744 | result = -ENOMEM; |
8d5658c9 | 745 | data = nfs_writedata_alloc(nfs_page_array_len(pgbase, bytes)); |
607f31e8 TM |
746 | if (unlikely(!data)) |
747 | break; | |
748 | ||
607f31e8 TM |
749 | down_read(¤t->mm->mmap_sem); |
750 | result = get_user_pages(current, current->mm, user_addr, | |
751 | data->npages, 0, 0, data->pagevec, NULL); | |
752 | up_read(¤t->mm->mmap_sem); | |
749e146e | 753 | if (result < 0) { |
1ae88b2e | 754 | nfs_writedata_free(data); |
749e146e CL |
755 | break; |
756 | } | |
757 | if ((unsigned)result < data->npages) { | |
d9df8d6b TM |
758 | bytes = result * PAGE_SIZE; |
759 | if (bytes <= pgbase) { | |
760 | nfs_direct_release_pages(data->pagevec, result); | |
1ae88b2e | 761 | nfs_writedata_free(data); |
d9df8d6b TM |
762 | break; |
763 | } | |
764 | bytes -= pgbase; | |
765 | data->npages = result; | |
607f31e8 TM |
766 | } |
767 | ||
768 | get_dreq(dreq); | |
769 | ||
fad61490 | 770 | list_move_tail(&data->pages, &dreq->rewrite_list); |
462d5b32 | 771 | |
607f31e8 | 772 | data->req = (struct nfs_page *) dreq; |
462d5b32 | 773 | data->inode = inode; |
bdc7f021 | 774 | data->cred = msg.rpc_cred; |
462d5b32 | 775 | data->args.fh = NFS_FH(inode); |
1ae88b2e | 776 | data->args.context = ctx; |
f11ac8db | 777 | data->args.lock_context = dreq->l_ctx; |
88467055 | 778 | data->args.offset = pos; |
462d5b32 | 779 | data->args.pgbase = pgbase; |
607f31e8 | 780 | data->args.pages = data->pagevec; |
462d5b32 | 781 | data->args.count = bytes; |
bdc7f021 | 782 | data->args.stable = sync; |
462d5b32 CL |
783 | data->res.fattr = &data->fattr; |
784 | data->res.count = bytes; | |
47989d74 | 785 | data->res.verf = &data->verf; |
65d26953 | 786 | nfs_fattr_init(&data->fattr); |
462d5b32 | 787 | |
07737691 | 788 | task_setup_data.task = &data->task; |
84115e1c | 789 | task_setup_data.callback_data = data; |
bdc7f021 TM |
790 | msg.rpc_argp = &data->args; |
791 | msg.rpc_resp = &data->res; | |
792 | NFS_PROTO(inode)->write_setup(data, &msg); | |
1da177e4 | 793 | |
07737691 | 794 | task = rpc_run_task(&task_setup_data); |
dbae4c73 TM |
795 | if (IS_ERR(task)) |
796 | break; | |
797 | rpc_put_task(task); | |
1da177e4 | 798 | |
a3f565b1 CL |
799 | dprintk("NFS: %5u initiated direct write call " |
800 | "(req %s/%Ld, %zu bytes @ offset %Lu)\n", | |
462d5b32 CL |
801 | data->task.tk_pid, |
802 | inode->i_sb->s_id, | |
803 | (long long)NFS_FILEID(inode), | |
804 | bytes, | |
805 | (unsigned long long)data->args.offset); | |
1da177e4 | 806 | |
607f31e8 TM |
807 | started += bytes; |
808 | user_addr += bytes; | |
88467055 | 809 | pos += bytes; |
e9f7bee1 TM |
810 | |
811 | /* FIXME: Remove this useless math from the final patch */ | |
462d5b32 | 812 | pgbase += bytes; |
462d5b32 | 813 | pgbase &= ~PAGE_MASK; |
e9f7bee1 | 814 | BUG_ON(pgbase != (user_addr & ~PAGE_MASK)); |
1da177e4 | 815 | |
462d5b32 CL |
816 | count -= bytes; |
817 | } while (count != 0); | |
607f31e8 | 818 | |
607f31e8 | 819 | if (started) |
c216fd70 | 820 | return started; |
607f31e8 | 821 | return result < 0 ? (ssize_t) result : -EFAULT; |
462d5b32 | 822 | } |
1da177e4 | 823 | |
19f73787 CL |
824 | static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq, |
825 | const struct iovec *iov, | |
826 | unsigned long nr_segs, | |
827 | loff_t pos, int sync) | |
828 | { | |
829 | ssize_t result = 0; | |
830 | size_t requested_bytes = 0; | |
831 | unsigned long seg; | |
832 | ||
833 | get_dreq(dreq); | |
834 | ||
835 | for (seg = 0; seg < nr_segs; seg++) { | |
836 | const struct iovec *vec = &iov[seg]; | |
02fe4946 CL |
837 | result = nfs_direct_write_schedule_segment(dreq, vec, |
838 | pos, sync); | |
19f73787 CL |
839 | if (result < 0) |
840 | break; | |
841 | requested_bytes += result; | |
842 | if ((size_t)result < vec->iov_len) | |
843 | break; | |
844 | pos += vec->iov_len; | |
845 | } | |
846 | ||
839f7ad6 CL |
847 | /* |
848 | * If no bytes were started, return the error, and let the | |
849 | * generic layer handle the completion. | |
850 | */ | |
851 | if (requested_bytes == 0) { | |
852 | nfs_direct_req_release(dreq); | |
853 | return result < 0 ? result : -EIO; | |
854 | } | |
855 | ||
19f73787 CL |
856 | if (put_dreq(dreq)) |
857 | nfs_direct_write_complete(dreq, dreq->inode); | |
839f7ad6 | 858 | return 0; |
19f73787 CL |
859 | } |
860 | ||
c216fd70 CL |
861 | static ssize_t nfs_direct_write(struct kiocb *iocb, const struct iovec *iov, |
862 | unsigned long nr_segs, loff_t pos, | |
863 | size_t count) | |
462d5b32 | 864 | { |
f11ac8db | 865 | ssize_t result = -ENOMEM; |
c89f2ee5 | 866 | struct inode *inode = iocb->ki_filp->f_mapping->host; |
462d5b32 | 867 | struct nfs_direct_req *dreq; |
fad61490 | 868 | size_t wsize = NFS_SERVER(inode)->wsize; |
bdc7f021 | 869 | int sync = NFS_UNSTABLE; |
1da177e4 | 870 | |
607f31e8 | 871 | dreq = nfs_direct_req_alloc(); |
462d5b32 | 872 | if (!dreq) |
f11ac8db | 873 | goto out; |
607f31e8 TM |
874 | nfs_alloc_commit_data(dreq); |
875 | ||
b47d19de | 876 | if (dreq->commit_data == NULL || count <= wsize) |
bdc7f021 | 877 | sync = NFS_FILE_SYNC; |
1da177e4 | 878 | |
c89f2ee5 | 879 | dreq->inode = inode; |
cd3758e3 | 880 | dreq->ctx = get_nfs_open_context(nfs_file_open_context(iocb->ki_filp)); |
f11ac8db | 881 | dreq->l_ctx = nfs_get_lock_context(dreq->ctx); |
568a810d | 882 | if (dreq->l_ctx == NULL) |
f11ac8db | 883 | goto out_release; |
c89f2ee5 CL |
884 | if (!is_sync_kiocb(iocb)) |
885 | dreq->iocb = iocb; | |
1da177e4 | 886 | |
c216fd70 | 887 | result = nfs_direct_write_schedule_iovec(dreq, iov, nr_segs, pos, sync); |
607f31e8 TM |
888 | if (!result) |
889 | result = nfs_direct_wait(dreq); | |
f11ac8db | 890 | out_release: |
b4946ffb | 891 | nfs_direct_req_release(dreq); |
f11ac8db | 892 | out: |
1da177e4 LT |
893 | return result; |
894 | } | |
895 | ||
896 | /** | |
897 | * nfs_file_direct_read - file direct read operation for NFS files | |
898 | * @iocb: target I/O control block | |
027445c3 BP |
899 | * @iov: vector of user buffers into which to read data |
900 | * @nr_segs: size of iov vector | |
88467055 | 901 | * @pos: byte offset in file where reading starts |
1da177e4 LT |
902 | * |
903 | * We use this function for direct reads instead of calling | |
904 | * generic_file_aio_read() in order to avoid gfar's check to see if | |
905 | * the request starts before the end of the file. For that check | |
906 | * to work, we must generate a GETATTR before each direct read, and | |
907 | * even then there is a window between the GETATTR and the subsequent | |
88467055 | 908 | * READ where the file size could change. Our preference is simply |
1da177e4 LT |
909 | * to do all reads the application wants, and the server will take |
910 | * care of managing the end of file boundary. | |
88467055 | 911 | * |
1da177e4 LT |
912 | * This function also eliminates unnecessarily updating the file's |
913 | * atime locally, as the NFS server sets the file's atime, and this | |
914 | * client must read the updated atime from the server back into its | |
915 | * cache. | |
916 | */ | |
027445c3 BP |
917 | ssize_t nfs_file_direct_read(struct kiocb *iocb, const struct iovec *iov, |
918 | unsigned long nr_segs, loff_t pos) | |
1da177e4 LT |
919 | { |
920 | ssize_t retval = -EINVAL; | |
1da177e4 | 921 | struct file *file = iocb->ki_filp; |
1da177e4 | 922 | struct address_space *mapping = file->f_mapping; |
c216fd70 CL |
923 | size_t count; |
924 | ||
925 | count = iov_length(iov, nr_segs); | |
926 | nfs_add_stats(mapping->host, NFSIOS_DIRECTREADBYTES, count); | |
1da177e4 | 927 | |
6da24bc9 | 928 | dfprintk(FILE, "NFS: direct read(%s/%s, %zd@%Ld)\n", |
01cce933 JJS |
929 | file->f_path.dentry->d_parent->d_name.name, |
930 | file->f_path.dentry->d_name.name, | |
c216fd70 | 931 | count, (long long) pos); |
1da177e4 | 932 | |
1da177e4 LT |
933 | retval = 0; |
934 | if (!count) | |
935 | goto out; | |
936 | ||
29884df0 TM |
937 | retval = nfs_sync_mapping(mapping); |
938 | if (retval) | |
939 | goto out; | |
1da177e4 | 940 | |
c216fd70 | 941 | retval = nfs_direct_read(iocb, iov, nr_segs, pos); |
1da177e4 | 942 | if (retval > 0) |
0cdd80d0 | 943 | iocb->ki_pos = pos + retval; |
1da177e4 LT |
944 | |
945 | out: | |
946 | return retval; | |
947 | } | |
948 | ||
949 | /** | |
950 | * nfs_file_direct_write - file direct write operation for NFS files | |
951 | * @iocb: target I/O control block | |
027445c3 BP |
952 | * @iov: vector of user buffers from which to write data |
953 | * @nr_segs: size of iov vector | |
88467055 | 954 | * @pos: byte offset in file where writing starts |
1da177e4 LT |
955 | * |
956 | * We use this function for direct writes instead of calling | |
957 | * generic_file_aio_write() in order to avoid taking the inode | |
958 | * semaphore and updating the i_size. The NFS server will set | |
959 | * the new i_size and this client must read the updated size | |
960 | * back into its cache. We let the server do generic write | |
961 | * parameter checking and report problems. | |
962 | * | |
1da177e4 LT |
963 | * We eliminate local atime updates, see direct read above. |
964 | * | |
965 | * We avoid unnecessary page cache invalidations for normal cached | |
966 | * readers of this file. | |
967 | * | |
968 | * Note that O_APPEND is not supported for NFS direct writes, as there | |
969 | * is no atomic O_APPEND write facility in the NFS protocol. | |
970 | */ | |
027445c3 BP |
971 | ssize_t nfs_file_direct_write(struct kiocb *iocb, const struct iovec *iov, |
972 | unsigned long nr_segs, loff_t pos) | |
1da177e4 | 973 | { |
070ea602 | 974 | ssize_t retval = -EINVAL; |
1da177e4 | 975 | struct file *file = iocb->ki_filp; |
1da177e4 | 976 | struct address_space *mapping = file->f_mapping; |
c216fd70 | 977 | size_t count; |
1da177e4 | 978 | |
c216fd70 CL |
979 | count = iov_length(iov, nr_segs); |
980 | nfs_add_stats(mapping->host, NFSIOS_DIRECTWRITTENBYTES, count); | |
981 | ||
6da24bc9 | 982 | dfprintk(FILE, "NFS: direct write(%s/%s, %zd@%Ld)\n", |
01cce933 JJS |
983 | file->f_path.dentry->d_parent->d_name.name, |
984 | file->f_path.dentry->d_name.name, | |
c216fd70 | 985 | count, (long long) pos); |
027445c3 | 986 | |
ce1a8e67 CL |
987 | retval = generic_write_checks(file, &pos, &count, 0); |
988 | if (retval) | |
1da177e4 | 989 | goto out; |
ce1a8e67 CL |
990 | |
991 | retval = -EINVAL; | |
992 | if ((ssize_t) count < 0) | |
1da177e4 | 993 | goto out; |
1da177e4 LT |
994 | retval = 0; |
995 | if (!count) | |
996 | goto out; | |
ce1a8e67 | 997 | |
29884df0 TM |
998 | retval = nfs_sync_mapping(mapping); |
999 | if (retval) | |
1000 | goto out; | |
1da177e4 | 1001 | |
c216fd70 | 1002 | retval = nfs_direct_write(iocb, iov, nr_segs, pos, count); |
9eafa8cc | 1003 | |
1da177e4 | 1004 | if (retval > 0) |
ce1a8e67 | 1005 | iocb->ki_pos = pos + retval; |
1da177e4 LT |
1006 | |
1007 | out: | |
1008 | return retval; | |
1009 | } | |
1010 | ||
88467055 CL |
1011 | /** |
1012 | * nfs_init_directcache - create a slab cache for nfs_direct_req structures | |
1013 | * | |
1014 | */ | |
f7b422b1 | 1015 | int __init nfs_init_directcache(void) |
1da177e4 LT |
1016 | { |
1017 | nfs_direct_cachep = kmem_cache_create("nfs_direct_cache", | |
1018 | sizeof(struct nfs_direct_req), | |
fffb60f9 PJ |
1019 | 0, (SLAB_RECLAIM_ACCOUNT| |
1020 | SLAB_MEM_SPREAD), | |
20c2df83 | 1021 | NULL); |
1da177e4 LT |
1022 | if (nfs_direct_cachep == NULL) |
1023 | return -ENOMEM; | |
1024 | ||
1025 | return 0; | |
1026 | } | |
1027 | ||
88467055 | 1028 | /** |
f7b422b1 | 1029 | * nfs_destroy_directcache - destroy the slab cache for nfs_direct_req structures |
88467055 CL |
1030 | * |
1031 | */ | |
266bee88 | 1032 | void nfs_destroy_directcache(void) |
1da177e4 | 1033 | { |
1a1d92c1 | 1034 | kmem_cache_destroy(nfs_direct_cachep); |
1da177e4 | 1035 | } |