提交 c708443c 编写于 作者: N NeilBrown 提交者: Linus Torvalds

[PATCH] md: make sure bitmap updates are visible through filesystem

When we update a page_cache page in the kernel, we need to flush_dache_page or
userspace might not see the change.
Signed-off-by: NNeil Brown <neilb@suse.de>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 07dbd377
...@@ -315,6 +315,8 @@ static int write_page(struct bitmap *bitmap, struct page *page, int wait) ...@@ -315,6 +315,8 @@ static int write_page(struct bitmap *bitmap, struct page *page, int wait)
if (bitmap->file == NULL) if (bitmap->file == NULL)
return write_sb_page(bitmap->mddev, bitmap->offset, page, wait); return write_sb_page(bitmap->mddev, bitmap->offset, page, wait);
flush_dcache_page(page); /* make sure visible to anyone reading the file */
if (wait) if (wait)
lock_page(page); lock_page(page);
else { else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册