aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/send.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2014-05-15 10:48:20 -0400
committerChris Mason <clm@fb.com>2014-06-09 20:20:53 -0400
commit351fd3532159441e810d458a5b681090ff8449fd (patch)
tree7c087b510bff35cfd9c9b8d21d6a2a56f3a68f32 /fs/btrfs/send.c
parent7d78874273463a784759916fc3e0b4e2eb141c70 (diff)
btrfs: remove stale newlines from log messages
I've noticed an extra line after "use no compression", but search revealed much more in messages of more critical levels and rare errors. Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/send.c')
-rw-r--r--fs/btrfs/send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c
index 3f14b31c0c96..a86c049932f9 100644
--- a/fs/btrfs/send.c
+++ b/fs/btrfs/send.c
@@ -1349,7 +1349,7 @@ static int find_extent_clone(struct send_ctx *sctx,
1349 ret = -EIO; 1349 ret = -EIO;
1350 btrfs_err(sctx->send_root->fs_info, "did not find backref in " 1350 btrfs_err(sctx->send_root->fs_info, "did not find backref in "
1351 "send_root. inode=%llu, offset=%llu, " 1351 "send_root. inode=%llu, offset=%llu, "
1352 "disk_byte=%llu found extent=%llu\n", 1352 "disk_byte=%llu found extent=%llu",
1353 ino, data_offset, disk_byte, found_key.objectid); 1353 ino, data_offset, disk_byte, found_key.objectid);
1354 goto out; 1354 goto out;
1355 } 1355 }
@@ -5472,7 +5472,7 @@ static void btrfs_root_dec_send_in_progress(struct btrfs_root* root)
5472 */ 5472 */
5473 if (root->send_in_progress < 0) 5473 if (root->send_in_progress < 0)
5474 btrfs_err(root->fs_info, 5474 btrfs_err(root->fs_info,
5475 "send_in_progres unbalanced %d root %llu\n", 5475 "send_in_progres unbalanced %d root %llu",
5476 root->send_in_progress, root->root_key.objectid); 5476 root->send_in_progress, root->root_key.objectid);
5477 spin_unlock(&root->root_item_lock); 5477 spin_unlock(&root->root_item_lock);
5478} 5478}