1
0
Fork 0

Btrfs: make sure we're not using obsolete code in btrfs_get_extent

There's code in btrfs_get_extent that should never be used. This patch turns
a WARN_ON(1) into a BUG(), hoping we can remove the transaction code from
btrfs_get_extent soon.

Signed-off-by: Jan Schmidt <list.btrfs@jan-o-sch.net>
wifi-calibration
Jan Schmidt 2011-12-01 14:35:19 +01:00
parent 4692cf58aa
commit 6bf7e080d5
1 changed files with 1 additions and 1 deletions

View File

@ -5022,7 +5022,7 @@ again:
}
flush_dcache_page(page);
} else if (create && PageUptodate(page)) {
WARN_ON(1);
BUG();
if (!trans) {
kunmap(page);
free_extent_map(em);