Skip to content

Commit

Permalink
btrfs: remove newline from inode cache kthread name
Browse files Browse the repository at this point in the history
Signed-off-by: David Sterba <[email protected]>
Signed-off-by: Chris Mason <[email protected]>
  • Loading branch information
kdave authored and masoncl committed Jun 10, 2014
1 parent 351fd35 commit 67a77eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/btrfs/inode-map.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ static void start_caching(struct btrfs_root *root)
BTRFS_LAST_FREE_OBJECTID - objectid + 1);
}

tsk = kthread_run(caching_kthread, root, "btrfs-ino-cache-%llu\n",
tsk = kthread_run(caching_kthread, root, "btrfs-ino-cache-%llu",
root->root_key.objectid);
if (IS_ERR(tsk)) {
btrfs_warn(root->fs_info, "failed to start inode caching task");
Expand Down

0 comments on commit 67a77eb

Please sign in to comment.