2012-11-01 06:38:34

by NeilBrown

[permalink] [raw]
Subject: Problem with DISCARD and RAID5


Hi Shaohua,
I've been doing some testing and discovered a problem with your discard
support for RAID5.

The code in blkdev_issue_discard assumes that the 'granularity' is a power
of 2, and for example subtracts 1 to get a mask.

However RAID5 sets the granularity to be the stripe size which often is not
a power of two. When this happens you can easily get into an infinite loop.

I suspect that to make this work properly, blkdev_issue_discard will need to
be changed to allow 'granularity' to be an arbitrary value.
When it is a power of two, the current masking can be used.
When it is anything else, it will need to use sector_div().

Could you look into this please?

Thanks,
NeilBrown


Attachments:
signature.asc (828.00 B)

2012-11-02 01:41:18

by Shaohua Li

[permalink] [raw]
Subject: Re: Problem with DISCARD and RAID5

On Thu, Nov 01, 2012 at 05:38:54PM +1100, NeilBrown wrote:
>
> Hi Shaohua,
> I've been doing some testing and discovered a problem with your discard
> support for RAID5.
>
> The code in blkdev_issue_discard assumes that the 'granularity' is a power
> of 2, and for example subtracts 1 to get a mask.
>
> However RAID5 sets the granularity to be the stripe size which often is not
> a power of two. When this happens you can easily get into an infinite loop.
>
> I suspect that to make this work properly, blkdev_issue_discard will need to
> be changed to allow 'granularity' to be an arbitrary value.
> When it is a power of two, the current masking can be used.
> When it is anything else, it will need to use sector_div().

Yep, looks we need use sector_div. And this isn't the only problem. discard
request can be merged, and the merge check only checks max_discard_sectors.
That means the split requests in blkdev_issue_discard can be merged again. The
split nerver works.

I'm wondering what's purpose of discard_alignment and discard_granularity. Are
there devices with discard_granularity not 1 sector? If bio isn't discard
aligned, what device will do? Further, why driver handles alignment/granularity
if device will ignore misaligned request. Jens, can you share some hints please?

Thanks,
Shaohua

2012-11-05 21:48:52

by Dave Chinner

[permalink] [raw]
Subject: Re: Problem with DISCARD and RAID5

On Fri, Nov 02, 2012 at 09:40:58AM +0800, Shaohua Li wrote:
> On Thu, Nov 01, 2012 at 05:38:54PM +1100, NeilBrown wrote:
> >
> > Hi Shaohua,
> > I've been doing some testing and discovered a problem with your discard
> > support for RAID5.
> >
> > The code in blkdev_issue_discard assumes that the 'granularity' is a power
> > of 2, and for example subtracts 1 to get a mask.
> >
> > However RAID5 sets the granularity to be the stripe size which often is not
> > a power of two. When this happens you can easily get into an infinite loop.
> >
> > I suspect that to make this work properly, blkdev_issue_discard will need to
> > be changed to allow 'granularity' to be an arbitrary value.
> > When it is a power of two, the current masking can be used.
> > When it is anything else, it will need to use sector_div().
>
> Yep, looks we need use sector_div. And this isn't the only problem. discard
> request can be merged, and the merge check only checks max_discard_sectors.
> That means the split requests in blkdev_issue_discard can be merged again. The
> split nerver works.
>
> I'm wondering what's purpose of discard_alignment and discard_granularity. Are
> there devices with discard_granularity not 1 sector?

Most certainly. Thin provisioned storage often has granularity in the
order of megabytes....

> If bio isn't discard
> aligned, what device will do?

Up to the device.

> Further, why driver handles alignment/granularity
> if device will ignore misaligned request.

When you send a series of sequential unaligned requests, the device
may ignore them all. Hence you end up with nothing being discarded,
even though the entire range being discarded is much, much larger
than the discard granularity....

Cheers,

Dave.
--
Dave Chinner
[email protected]

2012-11-06 08:06:53

by Jens Axboe

[permalink] [raw]
Subject: Re: Problem with DISCARD and RAID5

On 2012-11-05 22:48, Dave Chinner wrote:
> On Fri, Nov 02, 2012 at 09:40:58AM +0800, Shaohua Li wrote:
>> On Thu, Nov 01, 2012 at 05:38:54PM +1100, NeilBrown wrote:
>>>
>>> Hi Shaohua,
>>> I've been doing some testing and discovered a problem with your discard
>>> support for RAID5.
>>>
>>> The code in blkdev_issue_discard assumes that the 'granularity' is a power
>>> of 2, and for example subtracts 1 to get a mask.
>>>
>>> However RAID5 sets the granularity to be the stripe size which often is not
>>> a power of two. When this happens you can easily get into an infinite loop.
>>>
>>> I suspect that to make this work properly, blkdev_issue_discard will need to
>>> be changed to allow 'granularity' to be an arbitrary value.
>>> When it is a power of two, the current masking can be used.
>>> When it is anything else, it will need to use sector_div().
>>
>> Yep, looks we need use sector_div. And this isn't the only problem. discard
>> request can be merged, and the merge check only checks max_discard_sectors.
>> That means the split requests in blkdev_issue_discard can be merged again. The
>> split nerver works.
>>
>> I'm wondering what's purpose of discard_alignment and discard_granularity. Are
>> there devices with discard_granularity not 1 sector?
>
> Most certainly. Thin provisioned storage often has granularity in the
> order of megabytes....

Can't really to to much about that...

>> If bio isn't discard
>> aligned, what device will do?
>
> Up to the device.

We should not send those down, if they are violating the restrictions
set by the driver.

>> Further, why driver handles alignment/granularity
>> if device will ignore misaligned request.
>
> When you send a series of sequential unaligned requests, the device
> may ignore them all. Hence you end up with nothing being discarded,
> even though the entire range being discarded is much, much larger
> than the discard granularity....

That's just tough luck, unfortunately. Shaohua, I'd suggest sending down
whatever discards you can, IFF they are aligned according to the
restrictions being set. If that ends up not discarding to devices that
have large alignment/size constraints, nothing we can do about that.

--
Jens Axboe

2012-11-07 05:02:13

by Shaohua Li

[permalink] [raw]
Subject: Re: Problem with DISCARD and RAID5

On Tue, Nov 06, 2012 at 09:06:16AM +0100, Jens Axboe wrote:
> On 2012-11-05 22:48, Dave Chinner wrote:
> > On Fri, Nov 02, 2012 at 09:40:58AM +0800, Shaohua Li wrote:
> >> On Thu, Nov 01, 2012 at 05:38:54PM +1100, NeilBrown wrote:
> >>>
> >>> Hi Shaohua,
> >>> I've been doing some testing and discovered a problem with your discard
> >>> support for RAID5.
> >>>
> >>> The code in blkdev_issue_discard assumes that the 'granularity' is a power
> >>> of 2, and for example subtracts 1 to get a mask.
> >>>
> >>> However RAID5 sets the granularity to be the stripe size which often is not
> >>> a power of two. When this happens you can easily get into an infinite loop.
> >>>
> >>> I suspect that to make this work properly, blkdev_issue_discard will need to
> >>> be changed to allow 'granularity' to be an arbitrary value.
> >>> When it is a power of two, the current masking can be used.
> >>> When it is anything else, it will need to use sector_div().
> >>
> >> Yep, looks we need use sector_div. And this isn't the only problem. discard
> >> request can be merged, and the merge check only checks max_discard_sectors.
> >> That means the split requests in blkdev_issue_discard can be merged again. The
> >> split nerver works.
> >>
> >> I'm wondering what's purpose of discard_alignment and discard_granularity. Are
> >> there devices with discard_granularity not 1 sector?
> >
> > Most certainly. Thin provisioned storage often has granularity in the
> > order of megabytes....
>
> Can't really to to much about that...
>
> >> If bio isn't discard
> >> aligned, what device will do?
> >
> > Up to the device.
>
> We should not send those down, if they are violating the restrictions
> set by the driver.
>
> >> Further, why driver handles alignment/granularity
> >> if device will ignore misaligned request.
> >
> > When you send a series of sequential unaligned requests, the device
> > may ignore them all. Hence you end up with nothing being discarded,
> > even though the entire range being discarded is much, much larger
> > than the discard granularity....
>
> That's just tough luck, unfortunately. Shaohua, I'd suggest sending down
> whatever discards you can, IFF they are aligned according to the
> restrictions being set. If that ends up not discarding to devices that
> have large alignment/size constraints, nothing we can do about that.

So we have two problems here:

1. as Neil described, blkdev_issue_discard assumes alignment and granularity
are a power of 2. We can fix it with sector_div for example.

2. discard request can be merged. The merge check currently ignore alignment
and granularity. So it's possible unaligned requests are merged to aligned, or
one aligned request and one unaligned request are merged to unaligned. Just
ignore unaligned request, so such merge will not happen?