diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-03-05 15:46:18 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-03-05 15:46:18 -0500 |
commit | 3fa04ecd72780da31ba8b329e148179bc24a9c7d (patch) | |
tree | f5d462fd4aee086952d18f159f737c450ab46b3b /fs/nfs/inode.c | |
parent | 180b62a3d837613fcac3ce89576526423926c3c3 (diff) | |
parent | 1cda707d52e51a6cafac0aef12d2bd7052d572e6 (diff) |
Merge branch 'writeback-for-2.6.34' into nfs-for-2.6.34
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r-- | fs/nfs/inode.c | 95 |
1 files changed, 16 insertions, 79 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 87cca56846d6..657201acda84 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c | |||
@@ -97,22 +97,6 @@ u64 nfs_compat_user_ino64(u64 fileid) | |||
97 | return ino; | 97 | return ino; |
98 | } | 98 | } |
99 | 99 | ||
100 | int nfs_write_inode(struct inode *inode, int sync) | ||
101 | { | ||
102 | int ret; | ||
103 | |||
104 | if (sync) { | ||
105 | ret = filemap_fdatawait(inode->i_mapping); | ||
106 | if (ret == 0) | ||
107 | ret = nfs_commit_inode(inode, FLUSH_SYNC); | ||
108 | } else | ||
109 | ret = nfs_commit_inode(inode, 0); | ||
110 | if (ret >= 0) | ||
111 | return 0; | ||
112 | __mark_inode_dirty(inode, I_DIRTY_DATASYNC); | ||
113 | return ret; | ||
114 | } | ||
115 | |||
116 | void nfs_clear_inode(struct inode *inode) | 100 | void nfs_clear_inode(struct inode *inode) |
117 | { | 101 | { |
118 | /* | 102 | /* |
@@ -130,16 +114,12 @@ void nfs_clear_inode(struct inode *inode) | |||
130 | */ | 114 | */ |
131 | int nfs_sync_mapping(struct address_space *mapping) | 115 | int nfs_sync_mapping(struct address_space *mapping) |
132 | { | 116 | { |
133 | int ret; | 117 | int ret = 0; |
134 | 118 | ||
135 | if (mapping->nrpages == 0) | 119 | if (mapping->nrpages != 0) { |
136 | return 0; | 120 | unmap_mapping_range(mapping, 0, 0, 0); |
137 | unmap_mapping_range(mapping, 0, 0, 0); | 121 | ret = nfs_wb_all(mapping->host); |
138 | ret = filemap_write_and_wait(mapping); | 122 | } |
139 | if (ret != 0) | ||
140 | goto out; | ||
141 | ret = nfs_wb_all(mapping->host); | ||
142 | out: | ||
143 | return ret; | 123 | return ret; |
144 | } | 124 | } |
145 | 125 | ||
@@ -511,17 +491,11 @@ int nfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) | |||
511 | int need_atime = NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME; | 491 | int need_atime = NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME; |
512 | int err; | 492 | int err; |
513 | 493 | ||
514 | /* | 494 | /* Flush out writes to the server in order to update c/mtime. */ |
515 | * Flush out writes to the server in order to update c/mtime. | ||
516 | * | ||
517 | * Hold the i_mutex to suspend application writes temporarily; | ||
518 | * this prevents long-running writing applications from blocking | ||
519 | * nfs_wb_nocommit. | ||
520 | */ | ||
521 | if (S_ISREG(inode->i_mode)) { | 495 | if (S_ISREG(inode->i_mode)) { |
522 | mutex_lock(&inode->i_mutex); | 496 | err = filemap_write_and_wait(inode->i_mapping); |
523 | nfs_wb_nocommit(inode); | 497 | if (err) |
524 | mutex_unlock(&inode->i_mutex); | 498 | goto out; |
525 | } | 499 | } |
526 | 500 | ||
527 | /* | 501 | /* |
@@ -545,6 +519,7 @@ int nfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) | |||
545 | generic_fillattr(inode, stat); | 519 | generic_fillattr(inode, stat); |
546 | stat->ino = nfs_compat_user_ino64(NFS_FILEID(inode)); | 520 | stat->ino = nfs_compat_user_ino64(NFS_FILEID(inode)); |
547 | } | 521 | } |
522 | out: | ||
548 | return err; | 523 | return err; |
549 | } | 524 | } |
550 | 525 | ||
@@ -574,14 +549,14 @@ void nfs_close_context(struct nfs_open_context *ctx, int is_sync) | |||
574 | nfs_revalidate_inode(server, inode); | 549 | nfs_revalidate_inode(server, inode); |
575 | } | 550 | } |
576 | 551 | ||
577 | static struct nfs_open_context *alloc_nfs_open_context(struct vfsmount *mnt, struct dentry *dentry, struct rpc_cred *cred) | 552 | static struct nfs_open_context *alloc_nfs_open_context(struct path *path, struct rpc_cred *cred) |
578 | { | 553 | { |
579 | struct nfs_open_context *ctx; | 554 | struct nfs_open_context *ctx; |
580 | 555 | ||
581 | ctx = kmalloc(sizeof(*ctx), GFP_KERNEL); | 556 | ctx = kmalloc(sizeof(*ctx), GFP_KERNEL); |
582 | if (ctx != NULL) { | 557 | if (ctx != NULL) { |
583 | ctx->path.dentry = dget(dentry); | 558 | ctx->path = *path; |
584 | ctx->path.mnt = mntget(mnt); | 559 | path_get(&ctx->path); |
585 | ctx->cred = get_rpccred(cred); | 560 | ctx->cred = get_rpccred(cred); |
586 | ctx->state = NULL; | 561 | ctx->state = NULL; |
587 | ctx->lockowner = current->files; | 562 | ctx->lockowner = current->files; |
@@ -681,7 +656,7 @@ int nfs_open(struct inode *inode, struct file *filp) | |||
681 | cred = rpc_lookup_cred(); | 656 | cred = rpc_lookup_cred(); |
682 | if (IS_ERR(cred)) | 657 | if (IS_ERR(cred)) |
683 | return PTR_ERR(cred); | 658 | return PTR_ERR(cred); |
684 | ctx = alloc_nfs_open_context(filp->f_path.mnt, filp->f_path.dentry, cred); | 659 | ctx = alloc_nfs_open_context(&filp->f_path, cred); |
685 | put_rpccred(cred); | 660 | put_rpccred(cred); |
686 | if (ctx == NULL) | 661 | if (ctx == NULL) |
687 | return -ENOMEM; | 662 | return -ENOMEM; |
@@ -774,7 +749,7 @@ int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode) | |||
774 | return __nfs_revalidate_inode(server, inode); | 749 | return __nfs_revalidate_inode(server, inode); |
775 | } | 750 | } |
776 | 751 | ||
777 | static int nfs_invalidate_mapping_nolock(struct inode *inode, struct address_space *mapping) | 752 | static int nfs_invalidate_mapping(struct inode *inode, struct address_space *mapping) |
778 | { | 753 | { |
779 | struct nfs_inode *nfsi = NFS_I(inode); | 754 | struct nfs_inode *nfsi = NFS_I(inode); |
780 | 755 | ||
@@ -795,49 +770,10 @@ static int nfs_invalidate_mapping_nolock(struct inode *inode, struct address_spa | |||
795 | return 0; | 770 | return 0; |
796 | } | 771 | } |
797 | 772 | ||
798 | static int nfs_invalidate_mapping(struct inode *inode, struct address_space *mapping) | ||
799 | { | ||
800 | int ret = 0; | ||
801 | |||
802 | mutex_lock(&inode->i_mutex); | ||
803 | if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_DATA) { | ||
804 | ret = nfs_sync_mapping(mapping); | ||
805 | if (ret == 0) | ||
806 | ret = nfs_invalidate_mapping_nolock(inode, mapping); | ||
807 | } | ||
808 | mutex_unlock(&inode->i_mutex); | ||
809 | return ret; | ||
810 | } | ||
811 | |||
812 | /** | ||
813 | * nfs_revalidate_mapping_nolock - Revalidate the pagecache | ||
814 | * @inode - pointer to host inode | ||
815 | * @mapping - pointer to mapping | ||
816 | */ | ||
817 | int nfs_revalidate_mapping_nolock(struct inode *inode, struct address_space *mapping) | ||
818 | { | ||
819 | struct nfs_inode *nfsi = NFS_I(inode); | ||
820 | int ret = 0; | ||
821 | |||
822 | if ((nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) | ||
823 | || nfs_attribute_timeout(inode) || NFS_STALE(inode)) { | ||
824 | ret = __nfs_revalidate_inode(NFS_SERVER(inode), inode); | ||
825 | if (ret < 0) | ||
826 | goto out; | ||
827 | } | ||
828 | if (nfsi->cache_validity & NFS_INO_INVALID_DATA) | ||
829 | ret = nfs_invalidate_mapping_nolock(inode, mapping); | ||
830 | out: | ||
831 | return ret; | ||
832 | } | ||
833 | |||
834 | /** | 773 | /** |
835 | * nfs_revalidate_mapping - Revalidate the pagecache | 774 | * nfs_revalidate_mapping - Revalidate the pagecache |
836 | * @inode - pointer to host inode | 775 | * @inode - pointer to host inode |
837 | * @mapping - pointer to mapping | 776 | * @mapping - pointer to mapping |
838 | * | ||
839 | * This version of the function will take the inode->i_mutex and attempt to | ||
840 | * flush out all dirty data if it needs to invalidate the page cache. | ||
841 | */ | 777 | */ |
842 | int nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping) | 778 | int nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping) |
843 | { | 779 | { |
@@ -1415,6 +1351,7 @@ static void init_once(void *foo) | |||
1415 | INIT_LIST_HEAD(&nfsi->access_cache_inode_lru); | 1351 | INIT_LIST_HEAD(&nfsi->access_cache_inode_lru); |
1416 | INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC); | 1352 | INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC); |
1417 | nfsi->npages = 0; | 1353 | nfsi->npages = 0; |
1354 | nfsi->ncommit = 0; | ||
1418 | atomic_set(&nfsi->silly_count, 1); | 1355 | atomic_set(&nfsi->silly_count, 1); |
1419 | INIT_HLIST_HEAD(&nfsi->silly_list); | 1356 | INIT_HLIST_HEAD(&nfsi->silly_list); |
1420 | init_waitqueue_head(&nfsi->waitqueue); | 1357 | init_waitqueue_head(&nfsi->waitqueue); |