Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64633
b: refs/heads/master
c: 2aeb3db
h: refs/heads/master
i:
  64631: 4f35512
v: v3
  • Loading branch information
Ryusuke Konishi authored and Linus Torvalds committed Aug 31, 2007
1 parent 78ea0ce commit c4e1af9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 85787a2bea516b76a013eea7f5f3fad12c5a6417
refs/heads/master: 2aeb3db17fc33443d21b11d7121c5627d55717c6
3 changes: 2 additions & 1 deletion trunk/fs/ecryptfs/mmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,8 @@ static void ecryptfs_sync_page(struct page *page)
ecryptfs_printk(KERN_DEBUG, "find_lock_page failed\n");
return;
}
lower_page->mapping->a_ops->sync_page(lower_page);
if (lower_page->mapping->a_ops->sync_page)
lower_page->mapping->a_ops->sync_page(lower_page);
ecryptfs_printk(KERN_DEBUG, "Unlocking page with index = [0x%.16x]\n",
lower_page->index);
unlock_page(lower_page);
Expand Down

0 comments on commit c4e1af9

Please sign in to comment.