]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: fix the wrong nocow range check
authorMiao Xie <miaox@cn.fujitsu.com>
Fri, 27 Dec 2013 13:11:50 +0000 (21:11 +0800)
committerChris Mason <clm@fb.com>
Tue, 28 Jan 2014 21:20:13 +0000 (13:20 -0800)
commit5434de8ad7f4e3ea7694ab8815cc1b772b78c600
tree45d1dc9b9731bc047289c26671d1cfcd0b1a6fe4
parent4428b4ff3add61c36002f4cdb7dc0a26f6231e9c
Btrfs: fix the wrong nocow range check

The following warning message was outputed when running the 274th case
of xfstests with nodatacow option:
 BUG: Bad page state in process kswapd0  pfn:1c66f
 page:ffffea0000636848 count:0 mapcount:0 mapping:(null) index:0x78000
 page flags: 0x1000000000100a(error|uptodate|private_2)

It is because the check of nocow range was wrong, we should compare the
start and end position of the extent with the write position to verify
if the write position was in the extent, but the current code just used
the start postion to do the check, so we got the wrong extent and told
the caller that it was a nocow write. And then when we write back the
dirty pages, we found we should cow the extent, but at that time, there
was no space in the fs, we had to the error flag for the page. When
someone reclaimed that page, the above warning outputed. Fix it.

Reported-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/inode.c