提交 b34b086c 编写于 作者: C Chris Mason

Btrfs: Fix compile warning around num_online_cpus() in a min statement

Signed-off-by: NChris Mason <chris.mason@oracle.com>
上级 1f80e4db
...@@ -1528,7 +1528,8 @@ struct btrfs_root *open_ctree(struct super_block *sb, ...@@ -1528,7 +1528,8 @@ struct btrfs_root *open_ctree(struct super_block *sb,
fs_info->btree_inode->i_ino = 1; fs_info->btree_inode->i_ino = 1;
fs_info->btree_inode->i_nlink = 1; fs_info->btree_inode->i_nlink = 1;
fs_info->thread_pool_size = min(num_online_cpus() + 2, 8); fs_info->thread_pool_size = min_t(unsigned long,
num_online_cpus() + 2, 8);
INIT_LIST_HEAD(&fs_info->ordered_extents); INIT_LIST_HEAD(&fs_info->ordered_extents);
spin_lock_init(&fs_info->ordered_extent_lock); spin_lock_init(&fs_info->ordered_extent_lock);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册