diff options
author | Jeff Mahoney <jeffm@suse.com> | 2016-09-20 10:05:00 -0400 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-09-26 12:08:44 -0400 |
commit | 5d163e0e68ce743e1e919ddd3264c96ac02e9026 (patch) | |
tree | a5659f205f66740cd7f949a7bff11f283d8b8374 /fs/btrfs/tree-log.c | |
parent | cea67ab92d3d4da9f2b4141d87cb8664757daca0 (diff) |
btrfs: unsplit printed strings
CodingStyle chapter 2:
"[...] never break user-visible strings such as printk messages,
because that breaks the ability to grep for them."
This patch unsplits user-visible strings.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r-- | fs/btrfs/tree-log.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index d22adf4fea7e..688df71c1bf7 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -5592,8 +5592,8 @@ int btrfs_recover_log_trees(struct btrfs_root *log_root_tree) | |||
5592 | 5592 | ||
5593 | ret = walk_log_tree(trans, log_root_tree, &wc); | 5593 | ret = walk_log_tree(trans, log_root_tree, &wc); |
5594 | if (ret) { | 5594 | if (ret) { |
5595 | btrfs_handle_fs_error(fs_info, ret, "Failed to pin buffers while " | 5595 | btrfs_handle_fs_error(fs_info, ret, |
5596 | "recovering log root tree."); | 5596 | "Failed to pin buffers while recovering log root tree."); |
5597 | goto error; | 5597 | goto error; |
5598 | } | 5598 | } |
5599 | 5599 | ||
@@ -5639,8 +5639,8 @@ again: | |||
5639 | free_extent_buffer(log->node); | 5639 | free_extent_buffer(log->node); |
5640 | free_extent_buffer(log->commit_root); | 5640 | free_extent_buffer(log->commit_root); |
5641 | kfree(log); | 5641 | kfree(log); |
5642 | btrfs_handle_fs_error(fs_info, ret, "Couldn't read target root " | 5642 | btrfs_handle_fs_error(fs_info, ret, |
5643 | "for tree log recovery."); | 5643 | "Couldn't read target root for tree log recovery."); |
5644 | goto error; | 5644 | goto error; |
5645 | } | 5645 | } |
5646 | 5646 | ||