diff options
| -rw-r--r-- | fs/nfs/dir.c | 4 | ||||
| -rw-r--r-- | fs/nfs/write.c | 20 | ||||
| -rw-r--r-- | net/sunrpc/xdr.c | 3 |
3 files changed, 21 insertions, 6 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 3ddda6f7ecc2..e7ffb4deb3e5 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c | |||
| @@ -690,7 +690,9 @@ int nfs_lookup_verify_inode(struct inode *inode, struct nameidata *nd) | |||
| 690 | goto out_force; | 690 | goto out_force; |
| 691 | /* This is an open(2) */ | 691 | /* This is an open(2) */ |
| 692 | if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 && | 692 | if (nfs_lookup_check_intent(nd, LOOKUP_OPEN) != 0 && |
| 693 | !(server->flags & NFS_MOUNT_NOCTO)) | 693 | !(server->flags & NFS_MOUNT_NOCTO) && |
| 694 | (S_ISREG(inode->i_mode) || | ||
| 695 | S_ISDIR(inode->i_mode))) | ||
| 694 | goto out_force; | 696 | goto out_force; |
| 695 | } | 697 | } |
| 696 | return nfs_revalidate_inode(server, inode); | 698 | return nfs_revalidate_inode(server, inode); |
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index bca5734ca9fb..86bac6a5008e 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c | |||
| @@ -578,7 +578,7 @@ static int nfs_wait_on_requests(struct inode *inode, unsigned long idx_start, un | |||
| 578 | return ret; | 578 | return ret; |
| 579 | } | 579 | } |
| 580 | 580 | ||
| 581 | static void nfs_cancel_requests(struct list_head *head) | 581 | static void nfs_cancel_dirty_list(struct list_head *head) |
| 582 | { | 582 | { |
| 583 | struct nfs_page *req; | 583 | struct nfs_page *req; |
| 584 | while(!list_empty(head)) { | 584 | while(!list_empty(head)) { |
| @@ -589,6 +589,19 @@ static void nfs_cancel_requests(struct list_head *head) | |||
| 589 | } | 589 | } |
| 590 | } | 590 | } |
| 591 | 591 | ||
| 592 | static void nfs_cancel_commit_list(struct list_head *head) | ||
| 593 | { | ||
| 594 | struct nfs_page *req; | ||
| 595 | |||
| 596 | while(!list_empty(head)) { | ||
| 597 | req = nfs_list_entry(head->next); | ||
| 598 | nfs_list_remove_request(req); | ||
| 599 | nfs_inode_remove_request(req); | ||
| 600 | nfs_clear_page_writeback(req); | ||
| 601 | dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS); | ||
| 602 | } | ||
| 603 | } | ||
| 604 | |||
| 592 | /* | 605 | /* |
| 593 | * nfs_scan_dirty - Scan an inode for dirty requests | 606 | * nfs_scan_dirty - Scan an inode for dirty requests |
| 594 | * @inode: NFS inode to scan | 607 | * @inode: NFS inode to scan |
| @@ -1381,6 +1394,7 @@ nfs_commit_list(struct inode *inode, struct list_head *head, int how) | |||
| 1381 | nfs_list_remove_request(req); | 1394 | nfs_list_remove_request(req); |
| 1382 | nfs_mark_request_commit(req); | 1395 | nfs_mark_request_commit(req); |
| 1383 | nfs_clear_page_writeback(req); | 1396 | nfs_clear_page_writeback(req); |
| 1397 | dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS); | ||
| 1384 | } | 1398 | } |
| 1385 | return -ENOMEM; | 1399 | return -ENOMEM; |
| 1386 | } | 1400 | } |
| @@ -1499,7 +1513,7 @@ int nfs_sync_inode_wait(struct inode *inode, unsigned long idx_start, | |||
| 1499 | if (pages != 0) { | 1513 | if (pages != 0) { |
| 1500 | spin_unlock(&nfsi->req_lock); | 1514 | spin_unlock(&nfsi->req_lock); |
| 1501 | if (how & FLUSH_INVALIDATE) | 1515 | if (how & FLUSH_INVALIDATE) |
| 1502 | nfs_cancel_requests(&head); | 1516 | nfs_cancel_dirty_list(&head); |
| 1503 | else | 1517 | else |
| 1504 | ret = nfs_flush_list(inode, &head, pages, how); | 1518 | ret = nfs_flush_list(inode, &head, pages, how); |
| 1505 | spin_lock(&nfsi->req_lock); | 1519 | spin_lock(&nfsi->req_lock); |
| @@ -1512,7 +1526,7 @@ int nfs_sync_inode_wait(struct inode *inode, unsigned long idx_start, | |||
| 1512 | break; | 1526 | break; |
| 1513 | if (how & FLUSH_INVALIDATE) { | 1527 | if (how & FLUSH_INVALIDATE) { |
| 1514 | spin_unlock(&nfsi->req_lock); | 1528 | spin_unlock(&nfsi->req_lock); |
| 1515 | nfs_cancel_requests(&head); | 1529 | nfs_cancel_commit_list(&head); |
| 1516 | spin_lock(&nfsi->req_lock); | 1530 | spin_lock(&nfsi->req_lock); |
| 1517 | continue; | 1531 | continue; |
| 1518 | } | 1532 | } |
diff --git a/net/sunrpc/xdr.c b/net/sunrpc/xdr.c index 49174f0d0a3e..6ac45103a272 100644 --- a/net/sunrpc/xdr.c +++ b/net/sunrpc/xdr.c | |||
| @@ -191,7 +191,6 @@ _shift_data_right_pages(struct page **pages, size_t pgto_base, | |||
| 191 | do { | 191 | do { |
| 192 | /* Are any pointers crossing a page boundary? */ | 192 | /* Are any pointers crossing a page boundary? */ |
| 193 | if (pgto_base == 0) { | 193 | if (pgto_base == 0) { |
| 194 | flush_dcache_page(*pgto); | ||
| 195 | pgto_base = PAGE_CACHE_SIZE; | 194 | pgto_base = PAGE_CACHE_SIZE; |
| 196 | pgto--; | 195 | pgto--; |
| 197 | } | 196 | } |
| @@ -211,11 +210,11 @@ _shift_data_right_pages(struct page **pages, size_t pgto_base, | |||
| 211 | vto = kmap_atomic(*pgto, KM_USER0); | 210 | vto = kmap_atomic(*pgto, KM_USER0); |
| 212 | vfrom = kmap_atomic(*pgfrom, KM_USER1); | 211 | vfrom = kmap_atomic(*pgfrom, KM_USER1); |
| 213 | memmove(vto + pgto_base, vfrom + pgfrom_base, copy); | 212 | memmove(vto + pgto_base, vfrom + pgfrom_base, copy); |
| 213 | flush_dcache_page(*pgto); | ||
| 214 | kunmap_atomic(vfrom, KM_USER1); | 214 | kunmap_atomic(vfrom, KM_USER1); |
| 215 | kunmap_atomic(vto, KM_USER0); | 215 | kunmap_atomic(vto, KM_USER0); |
| 216 | 216 | ||
| 217 | } while ((len -= copy) != 0); | 217 | } while ((len -= copy) != 0); |
| 218 | flush_dcache_page(*pgto); | ||
| 219 | } | 218 | } |
| 220 | 219 | ||
| 221 | /* | 220 | /* |
