summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/file.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2008-07-31 15:42:54 -0400
committerChris Mason <chris.mason@oracle.com>2008-09-25 11:04:05 -0400
commit3ce7e67a069b919be774a341b82fc20978b7f69d (patch)
treec1f346ab7c61f51a4de0328ba0890be68038ad50 /fs/btrfs/file.c
parent61b4944018449003ac5f9757f4d125dce519cf51 (diff)
downloadlinux-stable-3ce7e67a069b919be774a341b82fc20978b7f69d.tar.gz
linux-stable-3ce7e67a069b919be774a341b82fc20978b7f69d.tar.bz2
linux-stable-3ce7e67a069b919be774a341b82fc20978b7f69d.zip
Btrfs: Drop some debugging around the extent_map pinned flag
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r--fs/btrfs/file.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index d3f2fe0b7c6c..c78f184ee5cc 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -380,15 +380,7 @@ int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
spin_unlock(&em_tree->lock);
break;
}
- if (test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
- printk(KERN_CRIT "inode %lu trying to drop pinned "
- "extent start %llu end %llu, em [%llu %llu]\n",
- inode->i_ino,
- (unsigned long long)start,
- (unsigned long long)end,
- (unsigned long long)em->start,
- (unsigned long long)em->len);
- }
+ clear_bit(EXTENT_FLAG_PINNED, &em->flags);
remove_extent_mapping(em_tree, em);
if (em->block_start < EXTENT_MAP_LAST_BYTE &&