Miao Xie
2013-Jan-16 11:27 UTC
[PATCH 1/2] Btrfs: fix wrong max device number for single profile
The max device number of single profile is 1, not 0 (0 means ''as many as possible''). Fix it. Cc: Liu Bo <bo.li.liu@oracle.com> Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> --- fs/btrfs/volumes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 86279c3..7fa9773 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -3496,7 +3496,7 @@ struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { { 1, 1, 2, 2, 2, 2 /* raid1 */ }, { 1, 2, 1, 1, 1, 2 /* dup */ }, { 1, 1, 0, 2, 1, 1 /* raid0 */ }, - { 1, 1, 0, 1, 1, 1 /* single */ }, + { 1, 1, 1, 1, 1, 1 /* single */ }, }; static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Liu Bo
2013-Jan-16 12:03 UTC
Re: [PATCH 1/2] Btrfs: fix wrong max device number for single profile
On Wed, Jan 16, 2013 at 07:27:17PM +0800, Miao Xie wrote:> The max device number of single profile is 1, not 0 (0 means ''as many as > possible''). Fix it.Reviewed-by: Liu Bo <bo.li.liu@oracle.com>> > Cc: Liu Bo <bo.li.liu@oracle.com> > Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> > --- > fs/btrfs/volumes.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c > index 86279c3..7fa9773 100644 > --- a/fs/btrfs/volumes.c > +++ b/fs/btrfs/volumes.c > @@ -3496,7 +3496,7 @@ struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = { > { 1, 1, 2, 2, 2, 2 /* raid1 */ }, > { 1, 2, 1, 1, 1, 2 /* dup */ }, > { 1, 1, 0, 2, 1, 1 /* raid0 */ }, > - { 1, 1, 0, 1, 1, 1 /* single */ }, > + { 1, 1, 1, 1, 1, 1 /* single */ }, > }; > > static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans, > -- > 1.7.11.7 > -- > To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html-- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html