]> Pileus Git - ~andy/linux/commitdiff
Btrfs: make sure we're not using obsolete code in btrfs_get_extent
authorJan Schmidt <list.btrfs@jan-o-sch.net>
Thu, 1 Dec 2011 13:35:19 +0000 (14:35 +0100)
committerJan Schmidt <list.btrfs@jan-o-sch.net>
Thu, 5 Jan 2012 14:11:55 +0000 (15:11 +0100)
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>
fs/btrfs/inode.c

index ea819386b8647dc0fec0e923b9645975d11d0a92..603d740f0f1c55fd42f95ecf3c53a5a62664acb1 100644 (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);