fs: use kmem_cache_zalloc instead
[pv_ops_mirror.git] / fs / nfs / write.c
blob0cf9d1cd9bd256c1f1ff4928f523fb48788b3b41
1 /*
2 * linux/fs/nfs/write.c
4 * Write file data over NFS.
6 * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
7 */
9 #include <linux/types.h>
10 #include <linux/slab.h>
11 #include <linux/mm.h>
12 #include <linux/pagemap.h>
13 #include <linux/file.h>
14 #include <linux/writeback.h>
15 #include <linux/swap.h>
17 #include <linux/sunrpc/clnt.h>
18 #include <linux/nfs_fs.h>
19 #include <linux/nfs_mount.h>
20 #include <linux/nfs_page.h>
21 #include <linux/backing-dev.h>
23 #include <asm/uaccess.h>
25 #include "delegation.h"
26 #include "internal.h"
27 #include "iostat.h"
29 #define NFSDBG_FACILITY NFSDBG_PAGECACHE
31 #define MIN_POOL_WRITE (32)
32 #define MIN_POOL_COMMIT (4)
35 * Local function declarations
37 static struct nfs_page * nfs_update_request(struct nfs_open_context*,
38 struct page *,
39 unsigned int, unsigned int);
40 static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc,
41 struct inode *inode, int ioflags);
42 static const struct rpc_call_ops nfs_write_partial_ops;
43 static const struct rpc_call_ops nfs_write_full_ops;
44 static const struct rpc_call_ops nfs_commit_ops;
46 static struct kmem_cache *nfs_wdata_cachep;
47 static mempool_t *nfs_wdata_mempool;
48 static mempool_t *nfs_commit_mempool;
50 struct nfs_write_data *nfs_commit_alloc(void)
52 struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS);
54 if (p) {
55 memset(p, 0, sizeof(*p));
56 INIT_LIST_HEAD(&p->pages);
58 return p;
61 static void nfs_commit_rcu_free(struct rcu_head *head)
63 struct nfs_write_data *p = container_of(head, struct nfs_write_data, task.u.tk_rcu);
64 if (p && (p->pagevec != &p->page_array[0]))
65 kfree(p->pagevec);
66 mempool_free(p, nfs_commit_mempool);
69 void nfs_commit_free(struct nfs_write_data *wdata)
71 call_rcu_bh(&wdata->task.u.tk_rcu, nfs_commit_rcu_free);
74 struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount)
76 struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
78 if (p) {
79 memset(p, 0, sizeof(*p));
80 INIT_LIST_HEAD(&p->pages);
81 p->npages = pagecount;
82 if (pagecount <= ARRAY_SIZE(p->page_array))
83 p->pagevec = p->page_array;
84 else {
85 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
86 if (!p->pagevec) {
87 mempool_free(p, nfs_wdata_mempool);
88 p = NULL;
92 return p;
95 static void nfs_writedata_rcu_free(struct rcu_head *head)
97 struct nfs_write_data *p = container_of(head, struct nfs_write_data, task.u.tk_rcu);
98 if (p && (p->pagevec != &p->page_array[0]))
99 kfree(p->pagevec);
100 mempool_free(p, nfs_wdata_mempool);
103 static void nfs_writedata_free(struct nfs_write_data *wdata)
105 call_rcu_bh(&wdata->task.u.tk_rcu, nfs_writedata_rcu_free);
108 void nfs_writedata_release(void *wdata)
110 nfs_writedata_free(wdata);
113 static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
115 ctx->error = error;
116 smp_wmb();
117 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
120 static struct nfs_page *nfs_page_find_request_locked(struct page *page)
122 struct nfs_page *req = NULL;
124 if (PagePrivate(page)) {
125 req = (struct nfs_page *)page_private(page);
126 if (req != NULL)
127 kref_get(&req->wb_kref);
129 return req;
132 static struct nfs_page *nfs_page_find_request(struct page *page)
134 struct inode *inode = page->mapping->host;
135 struct nfs_page *req = NULL;
137 spin_lock(&inode->i_lock);
138 req = nfs_page_find_request_locked(page);
139 spin_unlock(&inode->i_lock);
140 return req;
143 /* Adjust the file length if we're writing beyond the end */
144 static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
146 struct inode *inode = page->mapping->host;
147 loff_t end, i_size = i_size_read(inode);
148 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
150 if (i_size > 0 && page->index < end_index)
151 return;
152 end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
153 if (i_size >= end)
154 return;
155 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
156 i_size_write(inode, end);
159 /* A writeback failed: mark the page as bad, and invalidate the page cache */
160 static void nfs_set_pageerror(struct page *page)
162 SetPageError(page);
163 nfs_zap_mapping(page->mapping->host, page->mapping);
166 /* We can set the PG_uptodate flag if we see that a write request
167 * covers the full page.
169 static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
171 if (PageUptodate(page))
172 return;
173 if (base != 0)
174 return;
175 if (count != nfs_page_length(page))
176 return;
177 if (count != PAGE_CACHE_SIZE)
178 zero_user_page(page, count, PAGE_CACHE_SIZE - count, KM_USER0);
179 SetPageUptodate(page);
182 static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
183 unsigned int offset, unsigned int count)
185 struct nfs_page *req;
186 int ret;
188 for (;;) {
189 req = nfs_update_request(ctx, page, offset, count);
190 if (!IS_ERR(req))
191 break;
192 ret = PTR_ERR(req);
193 if (ret != -EBUSY)
194 return ret;
195 ret = nfs_wb_page(page->mapping->host, page);
196 if (ret != 0)
197 return ret;
199 /* Update file length */
200 nfs_grow_file(page, offset, count);
201 nfs_unlock_request(req);
202 return 0;
205 static int wb_priority(struct writeback_control *wbc)
207 if (wbc->for_reclaim)
208 return FLUSH_HIGHPRI | FLUSH_STABLE;
209 if (wbc->for_kupdate)
210 return FLUSH_LOWPRI;
211 return 0;
215 * NFS congestion control
218 int nfs_congestion_kb;
220 #define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
221 #define NFS_CONGESTION_OFF_THRESH \
222 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
224 static int nfs_set_page_writeback(struct page *page)
226 int ret = test_set_page_writeback(page);
228 if (!ret) {
229 struct inode *inode = page->mapping->host;
230 struct nfs_server *nfss = NFS_SERVER(inode);
232 if (atomic_long_inc_return(&nfss->writeback) >
233 NFS_CONGESTION_ON_THRESH)
234 set_bdi_congested(&nfss->backing_dev_info, WRITE);
236 return ret;
239 static void nfs_end_page_writeback(struct page *page)
241 struct inode *inode = page->mapping->host;
242 struct nfs_server *nfss = NFS_SERVER(inode);
244 end_page_writeback(page);
245 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
246 clear_bdi_congested(&nfss->backing_dev_info, WRITE);
250 * Find an associated nfs write request, and prepare to flush it out
251 * May return an error if the user signalled nfs_wait_on_request().
253 static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
254 struct page *page)
256 struct inode *inode = page->mapping->host;
257 struct nfs_inode *nfsi = NFS_I(inode);
258 struct nfs_page *req;
259 int ret;
261 spin_lock(&inode->i_lock);
262 for(;;) {
263 req = nfs_page_find_request_locked(page);
264 if (req == NULL) {
265 spin_unlock(&inode->i_lock);
266 return 0;
268 if (nfs_lock_request_dontget(req))
269 break;
270 /* Note: If we hold the page lock, as is the case in nfs_writepage,
271 * then the call to nfs_lock_request_dontget() will always
272 * succeed provided that someone hasn't already marked the
273 * request as dirty (in which case we don't care).
275 spin_unlock(&inode->i_lock);
276 ret = nfs_wait_on_request(req);
277 nfs_release_request(req);
278 if (ret != 0)
279 return ret;
280 spin_lock(&inode->i_lock);
282 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
283 /* This request is marked for commit */
284 spin_unlock(&inode->i_lock);
285 nfs_unlock_request(req);
286 nfs_pageio_complete(pgio);
287 return 0;
289 if (nfs_set_page_writeback(page) != 0) {
290 spin_unlock(&inode->i_lock);
291 BUG();
293 radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index,
294 NFS_PAGE_TAG_LOCKED);
295 spin_unlock(&inode->i_lock);
296 nfs_pageio_add_request(pgio, req);
297 return 0;
300 static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio)
302 struct inode *inode = page->mapping->host;
304 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
305 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
307 nfs_pageio_cond_complete(pgio, page->index);
308 return nfs_page_async_flush(pgio, page);
312 * Write an mmapped page to the server.
314 static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
316 struct nfs_pageio_descriptor pgio;
317 int err;
319 nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc));
320 err = nfs_do_writepage(page, wbc, &pgio);
321 nfs_pageio_complete(&pgio);
322 if (err < 0)
323 return err;
324 if (pgio.pg_error < 0)
325 return pgio.pg_error;
326 return 0;
329 int nfs_writepage(struct page *page, struct writeback_control *wbc)
331 int ret;
333 ret = nfs_writepage_locked(page, wbc);
334 unlock_page(page);
335 return ret;
338 static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
340 int ret;
342 ret = nfs_do_writepage(page, wbc, data);
343 unlock_page(page);
344 return ret;
347 int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
349 struct inode *inode = mapping->host;
350 struct nfs_pageio_descriptor pgio;
351 int err;
353 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
355 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc));
356 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
357 nfs_pageio_complete(&pgio);
358 if (err < 0)
359 return err;
360 if (pgio.pg_error < 0)
361 return pgio.pg_error;
362 return 0;
366 * Insert a write request into an inode
368 static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
370 struct nfs_inode *nfsi = NFS_I(inode);
371 int error;
373 error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
374 BUG_ON(error == -EEXIST);
375 if (error)
376 return error;
377 if (!nfsi->npages) {
378 igrab(inode);
379 if (nfs_have_delegation(inode, FMODE_WRITE))
380 nfsi->change_attr++;
382 SetPagePrivate(req->wb_page);
383 set_page_private(req->wb_page, (unsigned long)req);
384 nfsi->npages++;
385 kref_get(&req->wb_kref);
386 return 0;
390 * Remove a write request from an inode
392 static void nfs_inode_remove_request(struct nfs_page *req)
394 struct inode *inode = req->wb_context->path.dentry->d_inode;
395 struct nfs_inode *nfsi = NFS_I(inode);
397 BUG_ON (!NFS_WBACK_BUSY(req));
399 spin_lock(&inode->i_lock);
400 set_page_private(req->wb_page, 0);
401 ClearPagePrivate(req->wb_page);
402 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
403 nfsi->npages--;
404 if (!nfsi->npages) {
405 spin_unlock(&inode->i_lock);
406 iput(inode);
407 } else
408 spin_unlock(&inode->i_lock);
409 nfs_clear_request(req);
410 nfs_release_request(req);
413 static void
414 nfs_redirty_request(struct nfs_page *req)
416 __set_page_dirty_nobuffers(req->wb_page);
420 * Check if a request is dirty
422 static inline int
423 nfs_dirty_request(struct nfs_page *req)
425 struct page *page = req->wb_page;
427 if (page == NULL || test_bit(PG_NEED_COMMIT, &req->wb_flags))
428 return 0;
429 return !PageWriteback(req->wb_page);
432 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
434 * Add a request to the inode's commit list.
436 static void
437 nfs_mark_request_commit(struct nfs_page *req)
439 struct inode *inode = req->wb_context->path.dentry->d_inode;
440 struct nfs_inode *nfsi = NFS_I(inode);
442 spin_lock(&inode->i_lock);
443 nfsi->ncommit++;
444 set_bit(PG_NEED_COMMIT, &(req)->wb_flags);
445 radix_tree_tag_set(&nfsi->nfs_page_tree,
446 req->wb_index,
447 NFS_PAGE_TAG_COMMIT);
448 spin_unlock(&inode->i_lock);
449 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
450 inc_bdi_stat(req->wb_page->mapping->backing_dev_info, BDI_RECLAIMABLE);
451 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
454 static inline
455 int nfs_write_need_commit(struct nfs_write_data *data)
457 return data->verf.committed != NFS_FILE_SYNC;
460 static inline
461 int nfs_reschedule_unstable_write(struct nfs_page *req)
463 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
464 nfs_mark_request_commit(req);
465 return 1;
467 if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
468 nfs_redirty_request(req);
469 return 1;
471 return 0;
473 #else
474 static inline void
475 nfs_mark_request_commit(struct nfs_page *req)
479 static inline
480 int nfs_write_need_commit(struct nfs_write_data *data)
482 return 0;
485 static inline
486 int nfs_reschedule_unstable_write(struct nfs_page *req)
488 return 0;
490 #endif
493 * Wait for a request to complete.
495 * Interruptible by signals only if mounted with intr flag.
497 static int nfs_wait_on_requests_locked(struct inode *inode, pgoff_t idx_start, unsigned int npages)
499 struct nfs_inode *nfsi = NFS_I(inode);
500 struct nfs_page *req;
501 pgoff_t idx_end, next;
502 unsigned int res = 0;
503 int error;
505 if (npages == 0)
506 idx_end = ~0;
507 else
508 idx_end = idx_start + npages - 1;
510 next = idx_start;
511 while (radix_tree_gang_lookup_tag(&nfsi->nfs_page_tree, (void **)&req, next, 1, NFS_PAGE_TAG_LOCKED)) {
512 if (req->wb_index > idx_end)
513 break;
515 next = req->wb_index + 1;
516 BUG_ON(!NFS_WBACK_BUSY(req));
518 kref_get(&req->wb_kref);
519 spin_unlock(&inode->i_lock);
520 error = nfs_wait_on_request(req);
521 nfs_release_request(req);
522 spin_lock(&inode->i_lock);
523 if (error < 0)
524 return error;
525 res++;
527 return res;
530 static void nfs_cancel_commit_list(struct list_head *head)
532 struct nfs_page *req;
534 while(!list_empty(head)) {
535 req = nfs_list_entry(head->next);
536 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
537 dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
538 BDI_RECLAIMABLE);
539 nfs_list_remove_request(req);
540 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
541 nfs_inode_remove_request(req);
542 nfs_unlock_request(req);
546 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
548 * nfs_scan_commit - Scan an inode for commit requests
549 * @inode: NFS inode to scan
550 * @dst: destination list
551 * @idx_start: lower bound of page->index to scan.
552 * @npages: idx_start + npages sets the upper bound to scan.
554 * Moves requests from the inode's 'commit' request list.
555 * The requests are *not* checked to ensure that they form a contiguous set.
557 static int
558 nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
560 struct nfs_inode *nfsi = NFS_I(inode);
561 int res = 0;
563 if (nfsi->ncommit != 0) {
564 res = nfs_scan_list(nfsi, dst, idx_start, npages,
565 NFS_PAGE_TAG_COMMIT);
566 nfsi->ncommit -= res;
568 return res;
570 #else
571 static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
573 return 0;
575 #endif
578 * Try to update any existing write request, or create one if there is none.
579 * In order to match, the request's credentials must match those of
580 * the calling process.
582 * Note: Should always be called with the Page Lock held!
584 static struct nfs_page * nfs_update_request(struct nfs_open_context* ctx,
585 struct page *page, unsigned int offset, unsigned int bytes)
587 struct address_space *mapping = page->mapping;
588 struct inode *inode = mapping->host;
589 struct nfs_page *req, *new = NULL;
590 pgoff_t rqend, end;
592 end = offset + bytes;
594 for (;;) {
595 /* Loop over all inode entries and see if we find
596 * A request for the page we wish to update
598 spin_lock(&inode->i_lock);
599 req = nfs_page_find_request_locked(page);
600 if (req) {
601 if (!nfs_lock_request_dontget(req)) {
602 int error;
604 spin_unlock(&inode->i_lock);
605 error = nfs_wait_on_request(req);
606 nfs_release_request(req);
607 if (error < 0) {
608 if (new)
609 nfs_release_request(new);
610 return ERR_PTR(error);
612 continue;
614 spin_unlock(&inode->i_lock);
615 if (new)
616 nfs_release_request(new);
617 break;
620 if (new) {
621 int error;
622 nfs_lock_request_dontget(new);
623 error = nfs_inode_add_request(inode, new);
624 if (error) {
625 spin_unlock(&inode->i_lock);
626 nfs_unlock_request(new);
627 return ERR_PTR(error);
629 spin_unlock(&inode->i_lock);
630 return new;
632 spin_unlock(&inode->i_lock);
634 new = nfs_create_request(ctx, inode, page, offset, bytes);
635 if (IS_ERR(new))
636 return new;
639 /* We have a request for our page.
640 * If the creds don't match, or the
641 * page addresses don't match,
642 * tell the caller to wait on the conflicting
643 * request.
645 rqend = req->wb_offset + req->wb_bytes;
646 if (req->wb_context != ctx
647 || req->wb_page != page
648 || !nfs_dirty_request(req)
649 || offset > rqend || end < req->wb_offset) {
650 nfs_unlock_request(req);
651 return ERR_PTR(-EBUSY);
654 /* Okay, the request matches. Update the region */
655 if (offset < req->wb_offset) {
656 req->wb_offset = offset;
657 req->wb_pgbase = offset;
658 req->wb_bytes = rqend - req->wb_offset;
661 if (end > rqend)
662 req->wb_bytes = end - req->wb_offset;
664 return req;
667 int nfs_flush_incompatible(struct file *file, struct page *page)
669 struct nfs_open_context *ctx = nfs_file_open_context(file);
670 struct nfs_page *req;
671 int do_flush, status;
673 * Look for a request corresponding to this page. If there
674 * is one, and it belongs to another file, we flush it out
675 * before we try to copy anything into the page. Do this
676 * due to the lack of an ACCESS-type call in NFSv2.
677 * Also do the same if we find a request from an existing
678 * dropped page.
680 do {
681 req = nfs_page_find_request(page);
682 if (req == NULL)
683 return 0;
684 do_flush = req->wb_page != page || req->wb_context != ctx
685 || !nfs_dirty_request(req);
686 nfs_release_request(req);
687 if (!do_flush)
688 return 0;
689 status = nfs_wb_page(page->mapping->host, page);
690 } while (status == 0);
691 return status;
695 * Update and possibly write a cached page of an NFS file.
697 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
698 * things with a page scheduled for an RPC call (e.g. invalidate it).
700 int nfs_updatepage(struct file *file, struct page *page,
701 unsigned int offset, unsigned int count)
703 struct nfs_open_context *ctx = nfs_file_open_context(file);
704 struct inode *inode = page->mapping->host;
705 int status = 0;
707 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
709 dprintk("NFS: nfs_updatepage(%s/%s %d@%Ld)\n",
710 file->f_path.dentry->d_parent->d_name.name,
711 file->f_path.dentry->d_name.name, count,
712 (long long)(page_offset(page) +offset));
714 /* If we're not using byte range locks, and we know the page
715 * is entirely in cache, it may be more efficient to avoid
716 * fragmenting write requests.
718 if (PageUptodate(page) && inode->i_flock == NULL && !(file->f_mode & O_SYNC)) {
719 count = max(count + offset, nfs_page_length(page));
720 offset = 0;
723 status = nfs_writepage_setup(ctx, page, offset, count);
724 __set_page_dirty_nobuffers(page);
726 dprintk("NFS: nfs_updatepage returns %d (isize %Ld)\n",
727 status, (long long)i_size_read(inode));
728 if (status < 0)
729 nfs_set_pageerror(page);
730 return status;
733 static void nfs_writepage_release(struct nfs_page *req)
736 if (PageError(req->wb_page)) {
737 nfs_end_page_writeback(req->wb_page);
738 nfs_inode_remove_request(req);
739 } else if (!nfs_reschedule_unstable_write(req)) {
740 /* Set the PG_uptodate flag */
741 nfs_mark_uptodate(req->wb_page, req->wb_pgbase, req->wb_bytes);
742 nfs_end_page_writeback(req->wb_page);
743 nfs_inode_remove_request(req);
744 } else
745 nfs_end_page_writeback(req->wb_page);
746 nfs_clear_page_tag_locked(req);
749 static inline int flush_task_priority(int how)
751 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
752 case FLUSH_HIGHPRI:
753 return RPC_PRIORITY_HIGH;
754 case FLUSH_LOWPRI:
755 return RPC_PRIORITY_LOW;
757 return RPC_PRIORITY_NORMAL;
761 * Set up the argument/result storage required for the RPC call.
763 static void nfs_write_rpcsetup(struct nfs_page *req,
764 struct nfs_write_data *data,
765 const struct rpc_call_ops *call_ops,
766 unsigned int count, unsigned int offset,
767 int how)
769 struct inode *inode;
770 int flags;
772 /* Set up the RPC argument and reply structs
773 * NB: take care not to mess about with data->commit et al. */
775 data->req = req;
776 data->inode = inode = req->wb_context->path.dentry->d_inode;
777 data->cred = req->wb_context->cred;
779 data->args.fh = NFS_FH(inode);
780 data->args.offset = req_offset(req) + offset;
781 data->args.pgbase = req->wb_pgbase + offset;
782 data->args.pages = data->pagevec;
783 data->args.count = count;
784 data->args.context = req->wb_context;
786 data->res.fattr = &data->fattr;
787 data->res.count = count;
788 data->res.verf = &data->verf;
789 nfs_fattr_init(&data->fattr);
791 /* Set up the initial task struct. */
792 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
793 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, call_ops, data);
794 NFS_PROTO(inode)->write_setup(data, how);
796 data->task.tk_priority = flush_task_priority(how);
797 data->task.tk_cookie = (unsigned long)inode;
799 dprintk("NFS: %5u initiated write call "
800 "(req %s/%Ld, %u bytes @ offset %Lu)\n",
801 data->task.tk_pid,
802 inode->i_sb->s_id,
803 (long long)NFS_FILEID(inode),
804 count,
805 (unsigned long long)data->args.offset);
808 static void nfs_execute_write(struct nfs_write_data *data)
810 struct rpc_clnt *clnt = NFS_CLIENT(data->inode);
811 sigset_t oldset;
813 rpc_clnt_sigmask(clnt, &oldset);
814 rpc_execute(&data->task);
815 rpc_clnt_sigunmask(clnt, &oldset);
819 * Generate multiple small requests to write out a single
820 * contiguous dirty area on one page.
822 static int nfs_flush_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how)
824 struct nfs_page *req = nfs_list_entry(head->next);
825 struct page *page = req->wb_page;
826 struct nfs_write_data *data;
827 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
828 unsigned int offset;
829 int requests = 0;
830 LIST_HEAD(list);
832 nfs_list_remove_request(req);
834 nbytes = count;
835 do {
836 size_t len = min(nbytes, wsize);
838 data = nfs_writedata_alloc(1);
839 if (!data)
840 goto out_bad;
841 list_add(&data->pages, &list);
842 requests++;
843 nbytes -= len;
844 } while (nbytes != 0);
845 atomic_set(&req->wb_complete, requests);
847 ClearPageError(page);
848 offset = 0;
849 nbytes = count;
850 do {
851 data = list_entry(list.next, struct nfs_write_data, pages);
852 list_del_init(&data->pages);
854 data->pagevec[0] = page;
856 if (nbytes < wsize)
857 wsize = nbytes;
858 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
859 wsize, offset, how);
860 offset += wsize;
861 nbytes -= wsize;
862 nfs_execute_write(data);
863 } while (nbytes != 0);
865 return 0;
867 out_bad:
868 while (!list_empty(&list)) {
869 data = list_entry(list.next, struct nfs_write_data, pages);
870 list_del(&data->pages);
871 nfs_writedata_release(data);
873 nfs_redirty_request(req);
874 nfs_end_page_writeback(req->wb_page);
875 nfs_clear_page_tag_locked(req);
876 return -ENOMEM;
880 * Create an RPC task for the given write request and kick it.
881 * The page must have been locked by the caller.
883 * It may happen that the page we're passed is not marked dirty.
884 * This is the case if nfs_updatepage detects a conflicting request
885 * that has been written but not committed.
887 static int nfs_flush_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how)
889 struct nfs_page *req;
890 struct page **pages;
891 struct nfs_write_data *data;
893 data = nfs_writedata_alloc(npages);
894 if (!data)
895 goto out_bad;
897 pages = data->pagevec;
898 while (!list_empty(head)) {
899 req = nfs_list_entry(head->next);
900 nfs_list_remove_request(req);
901 nfs_list_add_request(req, &data->pages);
902 ClearPageError(req->wb_page);
903 *pages++ = req->wb_page;
905 req = nfs_list_entry(data->pages.next);
907 /* Set up the argument struct */
908 nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
910 nfs_execute_write(data);
911 return 0;
912 out_bad:
913 while (!list_empty(head)) {
914 req = nfs_list_entry(head->next);
915 nfs_list_remove_request(req);
916 nfs_redirty_request(req);
917 nfs_end_page_writeback(req->wb_page);
918 nfs_clear_page_tag_locked(req);
920 return -ENOMEM;
923 static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
924 struct inode *inode, int ioflags)
926 int wsize = NFS_SERVER(inode)->wsize;
928 if (wsize < PAGE_CACHE_SIZE)
929 nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags);
930 else
931 nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags);
935 * Handle a write reply that flushed part of a page.
937 static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
939 struct nfs_write_data *data = calldata;
940 struct nfs_page *req = data->req;
941 struct page *page = req->wb_page;
943 dprintk("NFS: write (%s/%Ld %d@%Ld)",
944 req->wb_context->path.dentry->d_inode->i_sb->s_id,
945 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
946 req->wb_bytes,
947 (long long)req_offset(req));
949 if (nfs_writeback_done(task, data) != 0)
950 return;
952 if (task->tk_status < 0) {
953 nfs_set_pageerror(page);
954 nfs_context_set_write_error(req->wb_context, task->tk_status);
955 dprintk(", error = %d\n", task->tk_status);
956 goto out;
959 if (nfs_write_need_commit(data)) {
960 struct inode *inode = page->mapping->host;
962 spin_lock(&inode->i_lock);
963 if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
964 /* Do nothing we need to resend the writes */
965 } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
966 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
967 dprintk(" defer commit\n");
968 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
969 set_bit(PG_NEED_RESCHED, &req->wb_flags);
970 clear_bit(PG_NEED_COMMIT, &req->wb_flags);
971 dprintk(" server reboot detected\n");
973 spin_unlock(&inode->i_lock);
974 } else
975 dprintk(" OK\n");
977 out:
978 if (atomic_dec_and_test(&req->wb_complete))
979 nfs_writepage_release(req);
982 static const struct rpc_call_ops nfs_write_partial_ops = {
983 .rpc_call_done = nfs_writeback_done_partial,
984 .rpc_release = nfs_writedata_release,
988 * Handle a write reply that flushes a whole page.
990 * FIXME: There is an inherent race with invalidate_inode_pages and
991 * writebacks since the page->count is kept > 1 for as long
992 * as the page has a write request pending.
994 static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
996 struct nfs_write_data *data = calldata;
997 struct nfs_page *req;
998 struct page *page;
1000 if (nfs_writeback_done(task, data) != 0)
1001 return;
1003 /* Update attributes as result of writeback. */
1004 while (!list_empty(&data->pages)) {
1005 req = nfs_list_entry(data->pages.next);
1006 nfs_list_remove_request(req);
1007 page = req->wb_page;
1009 dprintk("NFS: write (%s/%Ld %d@%Ld)",
1010 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1011 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
1012 req->wb_bytes,
1013 (long long)req_offset(req));
1015 if (task->tk_status < 0) {
1016 nfs_set_pageerror(page);
1017 nfs_context_set_write_error(req->wb_context, task->tk_status);
1018 dprintk(", error = %d\n", task->tk_status);
1019 goto remove_request;
1022 if (nfs_write_need_commit(data)) {
1023 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1024 nfs_mark_request_commit(req);
1025 nfs_end_page_writeback(page);
1026 dprintk(" marked for commit\n");
1027 goto next;
1029 /* Set the PG_uptodate flag? */
1030 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
1031 dprintk(" OK\n");
1032 remove_request:
1033 nfs_end_page_writeback(page);
1034 nfs_inode_remove_request(req);
1035 next:
1036 nfs_clear_page_tag_locked(req);
1040 static const struct rpc_call_ops nfs_write_full_ops = {
1041 .rpc_call_done = nfs_writeback_done_full,
1042 .rpc_release = nfs_writedata_release,
1047 * This function is called when the WRITE call is complete.
1049 int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
1051 struct nfs_writeargs *argp = &data->args;
1052 struct nfs_writeres *resp = &data->res;
1053 int status;
1055 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
1056 task->tk_pid, task->tk_status);
1059 * ->write_done will attempt to use post-op attributes to detect
1060 * conflicting writes by other clients. A strict interpretation
1061 * of close-to-open would allow us to continue caching even if
1062 * another writer had changed the file, but some applications
1063 * depend on tighter cache coherency when writing.
1065 status = NFS_PROTO(data->inode)->write_done(task, data);
1066 if (status != 0)
1067 return status;
1068 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1070 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1071 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1072 /* We tried a write call, but the server did not
1073 * commit data to stable storage even though we
1074 * requested it.
1075 * Note: There is a known bug in Tru64 < 5.0 in which
1076 * the server reports NFS_DATA_SYNC, but performs
1077 * NFS_FILE_SYNC. We therefore implement this checking
1078 * as a dprintk() in order to avoid filling syslog.
1080 static unsigned long complain;
1082 if (time_before(complain, jiffies)) {
1083 dprintk("NFS: faulty NFS server %s:"
1084 " (committed = %d) != (stable = %d)\n",
1085 NFS_SERVER(data->inode)->nfs_client->cl_hostname,
1086 resp->verf->committed, argp->stable);
1087 complain = jiffies + 300 * HZ;
1090 #endif
1091 /* Is this a short write? */
1092 if (task->tk_status >= 0 && resp->count < argp->count) {
1093 static unsigned long complain;
1095 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1097 /* Has the server at least made some progress? */
1098 if (resp->count != 0) {
1099 /* Was this an NFSv2 write or an NFSv3 stable write? */
1100 if (resp->verf->committed != NFS_UNSTABLE) {
1101 /* Resend from where the server left off */
1102 argp->offset += resp->count;
1103 argp->pgbase += resp->count;
1104 argp->count -= resp->count;
1105 } else {
1106 /* Resend as a stable write in order to avoid
1107 * headaches in the case of a server crash.
1109 argp->stable = NFS_FILE_SYNC;
1111 rpc_restart_call(task);
1112 return -EAGAIN;
1114 if (time_before(complain, jiffies)) {
1115 printk(KERN_WARNING
1116 "NFS: Server wrote zero bytes, expected %u.\n",
1117 argp->count);
1118 complain = jiffies + 300 * HZ;
1120 /* Can't do anything about it except throw an error. */
1121 task->tk_status = -EIO;
1123 return 0;
1127 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1128 void nfs_commit_release(void *wdata)
1130 nfs_commit_free(wdata);
1134 * Set up the argument/result storage required for the RPC call.
1136 static void nfs_commit_rpcsetup(struct list_head *head,
1137 struct nfs_write_data *data,
1138 int how)
1140 struct nfs_page *first;
1141 struct inode *inode;
1142 int flags;
1144 /* Set up the RPC argument and reply structs
1145 * NB: take care not to mess about with data->commit et al. */
1147 list_splice_init(head, &data->pages);
1148 first = nfs_list_entry(data->pages.next);
1149 inode = first->wb_context->path.dentry->d_inode;
1151 data->inode = inode;
1152 data->cred = first->wb_context->cred;
1154 data->args.fh = NFS_FH(data->inode);
1155 /* Note: we always request a commit of the entire inode */
1156 data->args.offset = 0;
1157 data->args.count = 0;
1158 data->res.count = 0;
1159 data->res.fattr = &data->fattr;
1160 data->res.verf = &data->verf;
1161 nfs_fattr_init(&data->fattr);
1163 /* Set up the initial task struct. */
1164 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
1165 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, &nfs_commit_ops, data);
1166 NFS_PROTO(inode)->commit_setup(data, how);
1168 data->task.tk_priority = flush_task_priority(how);
1169 data->task.tk_cookie = (unsigned long)inode;
1171 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
1175 * Commit dirty pages
1177 static int
1178 nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1180 struct nfs_write_data *data;
1181 struct nfs_page *req;
1183 data = nfs_commit_alloc();
1185 if (!data)
1186 goto out_bad;
1188 /* Set up the argument struct */
1189 nfs_commit_rpcsetup(head, data, how);
1191 nfs_execute_write(data);
1192 return 0;
1193 out_bad:
1194 while (!list_empty(head)) {
1195 req = nfs_list_entry(head->next);
1196 nfs_list_remove_request(req);
1197 nfs_mark_request_commit(req);
1198 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
1199 dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
1200 BDI_RECLAIMABLE);
1201 nfs_clear_page_tag_locked(req);
1203 return -ENOMEM;
1207 * COMMIT call returned
1209 static void nfs_commit_done(struct rpc_task *task, void *calldata)
1211 struct nfs_write_data *data = calldata;
1212 struct nfs_page *req;
1214 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
1215 task->tk_pid, task->tk_status);
1217 /* Call the NFS version-specific code */
1218 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1219 return;
1221 while (!list_empty(&data->pages)) {
1222 req = nfs_list_entry(data->pages.next);
1223 nfs_list_remove_request(req);
1224 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
1225 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
1226 dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
1227 BDI_RECLAIMABLE);
1229 dprintk("NFS: commit (%s/%Ld %d@%Ld)",
1230 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1231 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
1232 req->wb_bytes,
1233 (long long)req_offset(req));
1234 if (task->tk_status < 0) {
1235 nfs_context_set_write_error(req->wb_context, task->tk_status);
1236 nfs_inode_remove_request(req);
1237 dprintk(", error = %d\n", task->tk_status);
1238 goto next;
1241 /* Okay, COMMIT succeeded, apparently. Check the verifier
1242 * returned by the server against all stored verfs. */
1243 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1244 /* We have a match */
1245 /* Set the PG_uptodate flag */
1246 nfs_mark_uptodate(req->wb_page, req->wb_pgbase,
1247 req->wb_bytes);
1248 nfs_inode_remove_request(req);
1249 dprintk(" OK\n");
1250 goto next;
1252 /* We have a mismatch. Write the page again */
1253 dprintk(" mismatch\n");
1254 nfs_redirty_request(req);
1255 next:
1256 nfs_clear_page_tag_locked(req);
1260 static const struct rpc_call_ops nfs_commit_ops = {
1261 .rpc_call_done = nfs_commit_done,
1262 .rpc_release = nfs_commit_release,
1265 int nfs_commit_inode(struct inode *inode, int how)
1267 LIST_HEAD(head);
1268 int res;
1270 spin_lock(&inode->i_lock);
1271 res = nfs_scan_commit(inode, &head, 0, 0);
1272 spin_unlock(&inode->i_lock);
1273 if (res) {
1274 int error = nfs_commit_list(inode, &head, how);
1275 if (error < 0)
1276 return error;
1278 return res;
1280 #else
1281 static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1283 return 0;
1285 #endif
1287 long nfs_sync_mapping_wait(struct address_space *mapping, struct writeback_control *wbc, int how)
1289 struct inode *inode = mapping->host;
1290 pgoff_t idx_start, idx_end;
1291 unsigned int npages = 0;
1292 LIST_HEAD(head);
1293 int nocommit = how & FLUSH_NOCOMMIT;
1294 long pages, ret;
1296 /* FIXME */
1297 if (wbc->range_cyclic)
1298 idx_start = 0;
1299 else {
1300 idx_start = wbc->range_start >> PAGE_CACHE_SHIFT;
1301 idx_end = wbc->range_end >> PAGE_CACHE_SHIFT;
1302 if (idx_end > idx_start) {
1303 pgoff_t l_npages = 1 + idx_end - idx_start;
1304 npages = l_npages;
1305 if (sizeof(npages) != sizeof(l_npages) &&
1306 (pgoff_t)npages != l_npages)
1307 npages = 0;
1310 how &= ~FLUSH_NOCOMMIT;
1311 spin_lock(&inode->i_lock);
1312 do {
1313 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
1314 if (ret != 0)
1315 continue;
1316 if (nocommit)
1317 break;
1318 pages = nfs_scan_commit(inode, &head, idx_start, npages);
1319 if (pages == 0)
1320 break;
1321 if (how & FLUSH_INVALIDATE) {
1322 spin_unlock(&inode->i_lock);
1323 nfs_cancel_commit_list(&head);
1324 ret = pages;
1325 spin_lock(&inode->i_lock);
1326 continue;
1328 pages += nfs_scan_commit(inode, &head, 0, 0);
1329 spin_unlock(&inode->i_lock);
1330 ret = nfs_commit_list(inode, &head, how);
1331 spin_lock(&inode->i_lock);
1333 } while (ret >= 0);
1334 spin_unlock(&inode->i_lock);
1335 return ret;
1338 static int __nfs_write_mapping(struct address_space *mapping, struct writeback_control *wbc, int how)
1340 int ret;
1342 ret = nfs_writepages(mapping, wbc);
1343 if (ret < 0)
1344 goto out;
1345 ret = nfs_sync_mapping_wait(mapping, wbc, how);
1346 if (ret < 0)
1347 goto out;
1348 return 0;
1349 out:
1350 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
1351 return ret;
1354 /* Two pass sync: first using WB_SYNC_NONE, then WB_SYNC_ALL */
1355 static int nfs_write_mapping(struct address_space *mapping, int how)
1357 struct writeback_control wbc = {
1358 .bdi = mapping->backing_dev_info,
1359 .sync_mode = WB_SYNC_NONE,
1360 .nr_to_write = LONG_MAX,
1361 .for_writepages = 1,
1362 .range_cyclic = 1,
1364 int ret;
1366 ret = __nfs_write_mapping(mapping, &wbc, how);
1367 if (ret < 0)
1368 return ret;
1369 wbc.sync_mode = WB_SYNC_ALL;
1370 return __nfs_write_mapping(mapping, &wbc, how);
1374 * flush the inode to disk.
1376 int nfs_wb_all(struct inode *inode)
1378 return nfs_write_mapping(inode->i_mapping, 0);
1381 int nfs_wb_nocommit(struct inode *inode)
1383 return nfs_write_mapping(inode->i_mapping, FLUSH_NOCOMMIT);
1386 int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1388 struct nfs_page *req;
1389 loff_t range_start = page_offset(page);
1390 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
1391 struct writeback_control wbc = {
1392 .bdi = page->mapping->backing_dev_info,
1393 .sync_mode = WB_SYNC_ALL,
1394 .nr_to_write = LONG_MAX,
1395 .range_start = range_start,
1396 .range_end = range_end,
1398 int ret = 0;
1400 BUG_ON(!PageLocked(page));
1401 for (;;) {
1402 req = nfs_page_find_request(page);
1403 if (req == NULL)
1404 goto out;
1405 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
1406 nfs_release_request(req);
1407 break;
1409 if (nfs_lock_request_dontget(req)) {
1410 nfs_inode_remove_request(req);
1412 * In case nfs_inode_remove_request has marked the
1413 * page as being dirty
1415 cancel_dirty_page(page, PAGE_CACHE_SIZE);
1416 nfs_unlock_request(req);
1417 break;
1419 ret = nfs_wait_on_request(req);
1420 if (ret < 0)
1421 goto out;
1423 if (!PagePrivate(page))
1424 return 0;
1425 ret = nfs_sync_mapping_wait(page->mapping, &wbc, FLUSH_INVALIDATE);
1426 out:
1427 return ret;
1430 int nfs_wb_page_priority(struct inode *inode, struct page *page, int how)
1432 loff_t range_start = page_offset(page);
1433 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
1434 struct writeback_control wbc = {
1435 .bdi = page->mapping->backing_dev_info,
1436 .sync_mode = WB_SYNC_ALL,
1437 .nr_to_write = LONG_MAX,
1438 .range_start = range_start,
1439 .range_end = range_end,
1441 int ret;
1443 BUG_ON(!PageLocked(page));
1444 if (clear_page_dirty_for_io(page)) {
1445 ret = nfs_writepage_locked(page, &wbc);
1446 if (ret < 0)
1447 goto out;
1449 if (!PagePrivate(page))
1450 return 0;
1451 ret = nfs_sync_mapping_wait(page->mapping, &wbc, how);
1452 if (ret >= 0)
1453 return 0;
1454 out:
1455 __mark_inode_dirty(inode, I_DIRTY_PAGES);
1456 return ret;
1460 * Write back all requests on one page - we do this before reading it.
1462 int nfs_wb_page(struct inode *inode, struct page* page)
1464 return nfs_wb_page_priority(inode, page, FLUSH_STABLE);
1467 int __init nfs_init_writepagecache(void)
1469 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1470 sizeof(struct nfs_write_data),
1471 0, SLAB_HWCACHE_ALIGN,
1472 NULL);
1473 if (nfs_wdata_cachep == NULL)
1474 return -ENOMEM;
1476 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1477 nfs_wdata_cachep);
1478 if (nfs_wdata_mempool == NULL)
1479 return -ENOMEM;
1481 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1482 nfs_wdata_cachep);
1483 if (nfs_commit_mempool == NULL)
1484 return -ENOMEM;
1487 * NFS congestion size, scale with available memory.
1489 * 64MB: 8192k
1490 * 128MB: 11585k
1491 * 256MB: 16384k
1492 * 512MB: 23170k
1493 * 1GB: 32768k
1494 * 2GB: 46340k
1495 * 4GB: 65536k
1496 * 8GB: 92681k
1497 * 16GB: 131072k
1499 * This allows larger machines to have larger/more transfers.
1500 * Limit the default to 256M
1502 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1503 if (nfs_congestion_kb > 256*1024)
1504 nfs_congestion_kb = 256*1024;
1506 return 0;
1509 void nfs_destroy_writepagecache(void)
1511 mempool_destroy(nfs_commit_mempool);
1512 mempool_destroy(nfs_wdata_mempool);
1513 kmem_cache_destroy(nfs_wdata_cachep);