mbox series

[PATCHv3,00/11] dm-zoned: metadata version 2

Message ID 20200409064527.82992-1-hare@suse.de (mailing list archive)
Headers show
Series dm-zoned: metadata version 2 | expand

Message

Hannes Reinecke April 9, 2020, 6:45 a.m. UTC
Hi all,

this patchset adds a new metadata version 2, which brings the following
improvements:
- UUIDs and labels: Adding three more fields to the metadata containing
  the dm-zoned device UUID and label, and the device UUID. This allows
  for an unique identification of the devices, so that several dm-zoned
  sets can coexist and have a persistent identification.
- Extend random zones by an additional regular disk device: A regular
  block device can be added together with the zoned block device, providing
  additional (emulated) random write zones. With this it's possible to
  handle sequential zones only devices; also there will be a speed-up if
  the regular block device resides on a fast medium. The regular block device
  is placed logically in front of the zoned block device, so that metadata
  and mapping tables reside on the regular block device, not the zoned device.
- Tertiary superblock support: In addition to the two existing sets of metadata
  another, tertiary, superblock is written to the first block of the zoned
  block device. This superblock is for identification only; the generation
  number is set to '0' and the block itself it never updated. The additional
  metadate like bitmap tables etc are not copied.

To handle this, some changes to the original handling are introduced:
- Zones are now equidistant. Originally, runt zones were ignored, and
  not counted when sizing the mapping tables. With the dual device setup
  runt zones might occur at the end of the regular block device, making
  direct translation between zone number and sector/block number complex.
  For metadata version 2 all zones are considered to be of the same size,
  and runt zones are simply marked as 'offline' to have them ignored when
  allocating a new zone.
- The block number in the superblock is now the global number, and refers to
  the location of the superblock relative to the resulting device-mapper
  device. Which means that the tertiary superblock contains absolute block
  addresses, which needs to be translated to the relative device addresses
  to find the referenced block.

There is an accompanying patchset for dm-zoned-tools for writing and checking
this new metadata.

As usual, comments and reviews are welcome.

Changes to v2:
- Kill dmz_id()
- Include reviews from Damien
- Sanitize uuid handling as suggested by John Dorminy

Hannes Reinecke (11):
  dm-zoned: store zone id within the zone structure and kill dmz_id()
  dm-zoned: use array for superblock zones
  dm-zoned: store device in struct dmz_sb
  dm-zoned: move fields from struct dmz_dev to dmz_metadata
  dm-zoned: introduce dmz_metadata_label() to format device name
  dm-zoned: remove 'dev' argument from reclaim
  dm-zoned: replace 'target' pointer in the bio context
  dm-zoned: use dmz_zone_to_dev() when handling metadata I/O
  dm-zoned: add metadata logging functions
  dm-zoned: ignore metadata zone in dmz_alloc_zone()
  dm-zoned: metadata version 2

 drivers/md/dm-zoned-metadata.c | 601 ++++++++++++++++++++++++---------
 drivers/md/dm-zoned-reclaim.c  |  89 ++---
 drivers/md/dm-zoned-target.c   | 273 ++++++++-------
 drivers/md/dm-zoned.h          |  29 +-
 4 files changed, 659 insertions(+), 333 deletions(-)

Comments

Bob Liu April 11, 2020, 12:30 p.m. UTC | #1
On 4/9/20 2:45 PM, Hannes Reinecke wrote:
> Hi all,
> 
> this patchset adds a new metadata version 2, which brings the following
> improvements:
> - UUIDs and labels: Adding three more fields to the metadata containing
>   the dm-zoned device UUID and label, and the device UUID. This allows
>   for an unique identification of the devices, so that several dm-zoned
>   sets can coexist and have a persistent identification.
> - Extend random zones by an additional regular disk device: A regular
>   block device can be added together with the zoned block device, providing
>   additional (emulated) random write zones. With this it's possible to
>   handle sequential zones only devices; also there will be a speed-up if
>   the regular block device resides on a fast medium. The regular block device
>   is placed logically in front of the zoned block device, so that metadata
>   and mapping tables reside on the regular block device, not the zoned device.
> - Tertiary superblock support: In addition to the two existing sets of metadata
>   another, tertiary, superblock is written to the first block of the zoned
>   block device. This superblock is for identification only; the generation
>   number is set to '0' and the block itself it never updated. The additional
>   metadate like bitmap tables etc are not copied.
> 
> To handle this, some changes to the original handling are introduced:
> - Zones are now equidistant. Originally, runt zones were ignored, and
>   not counted when sizing the mapping tables. With the dual device setup
>   runt zones might occur at the end of the regular block device, making
>   direct translation between zone number and sector/block number complex.
>   For metadata version 2 all zones are considered to be of the same size,
>   and runt zones are simply marked as 'offline' to have them ignored when
>   allocating a new zone.
> - The block number in the superblock is now the global number, and refers to
>   the location of the superblock relative to the resulting device-mapper
>   device. Which means that the tertiary superblock contains absolute block
>   addresses, which needs to be translated to the relative device addresses
>   to find the referenced block.
> 
> There is an accompanying patchset for dm-zoned-tools for writing and checking
> this new metadata.
> 
> As usual, comments and reviews are welcome.
> 
> Changes to v2:
> - Kill dmz_id()
> - Include reviews from Damien
> - Sanitize uuid handling as suggested by John Dorminy
> 

This series looks good to me, feel free to add my
Reviewed-by: Bob Liu <bob.liu@oracle.com>

By the way, have you completed the patches for regular device support?
I was considering rebase my previous patches to this series but not sure is it still necessary.

Regards,
Bob

> Hannes Reinecke (11):
>   dm-zoned: store zone id within the zone structure and kill dmz_id()
>   dm-zoned: use array for superblock zones
>   dm-zoned: store device in struct dmz_sb
>   dm-zoned: move fields from struct dmz_dev to dmz_metadata
>   dm-zoned: introduce dmz_metadata_label() to format device name
>   dm-zoned: remove 'dev' argument from reclaim
>   dm-zoned: replace 'target' pointer in the bio context
>   dm-zoned: use dmz_zone_to_dev() when handling metadata I/O
>   dm-zoned: add metadata logging functions
>   dm-zoned: ignore metadata zone in dmz_alloc_zone()
>   dm-zoned: metadata version 2
> 
>  drivers/md/dm-zoned-metadata.c | 601 ++++++++++++++++++++++++---------
>  drivers/md/dm-zoned-reclaim.c  |  89 ++---
>  drivers/md/dm-zoned-target.c   | 273 ++++++++-------
>  drivers/md/dm-zoned.h          |  29 +-
>  4 files changed, 659 insertions(+), 333 deletions(-)
> 

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel
Hannes Reinecke April 14, 2020, 6:38 a.m. UTC | #2
On 4/11/20 2:30 PM, Bob Liu wrote:
> On 4/9/20 2:45 PM, Hannes Reinecke wrote:
>> Hi all,
>>
>> this patchset adds a new metadata version 2, which brings the following
>> improvements:
>> - UUIDs and labels: Adding three more fields to the metadata containing
>>    the dm-zoned device UUID and label, and the device UUID. This allows
>>    for an unique identification of the devices, so that several dm-zoned
>>    sets can coexist and have a persistent identification.
>> - Extend random zones by an additional regular disk device: A regular
>>    block device can be added together with the zoned block device, providing
>>    additional (emulated) random write zones. With this it's possible to
>>    handle sequential zones only devices; also there will be a speed-up if
>>    the regular block device resides on a fast medium. The regular block device
>>    is placed logically in front of the zoned block device, so that metadata
>>    and mapping tables reside on the regular block device, not the zoned device.
>> - Tertiary superblock support: In addition to the two existing sets of metadata
>>    another, tertiary, superblock is written to the first block of the zoned
>>    block device. This superblock is for identification only; the generation
>>    number is set to '0' and the block itself it never updated. The additional
>>    metadate like bitmap tables etc are not copied.
>>
>> To handle this, some changes to the original handling are introduced:
>> - Zones are now equidistant. Originally, runt zones were ignored, and
>>    not counted when sizing the mapping tables. With the dual device setup
>>    runt zones might occur at the end of the regular block device, making
>>    direct translation between zone number and sector/block number complex.
>>    For metadata version 2 all zones are considered to be of the same size,
>>    and runt zones are simply marked as 'offline' to have them ignored when
>>    allocating a new zone.
>> - The block number in the superblock is now the global number, and refers to
>>    the location of the superblock relative to the resulting device-mapper
>>    device. Which means that the tertiary superblock contains absolute block
>>    addresses, which needs to be translated to the relative device addresses
>>    to find the referenced block.
>>
>> There is an accompanying patchset for dm-zoned-tools for writing and checking
>> this new metadata.
>>
>> As usual, comments and reviews are welcome.
>>
>> Changes to v2:
>> - Kill dmz_id()
>> - Include reviews from Damien
>> - Sanitize uuid handling as suggested by John Dorminy
>>
> 
> This series looks good to me, feel free to add my
> Reviewed-by: Bob Liu <bob.liu@oracle.com>
> 
> By the way, have you completed the patches for regular device support?
> I was considering rebase my previous patches to this series but not sure is it still necessary.
> 
I have combined both patchsets, this one now also included regular 
device support. So no need to resend from your side.

Cheers,

Hannes
Mike Snitzer April 14, 2020, 3:13 p.m. UTC | #3
On Tue, Apr 14 2020 at  2:38am -0400,
Hannes Reinecke <hare@suse.de> wrote:

> On 4/11/20 2:30 PM, Bob Liu wrote:
> >On 4/9/20 2:45 PM, Hannes Reinecke wrote:
> >>Hi all,
> >>
> >>this patchset adds a new metadata version 2, which brings the following
> >>improvements:
> >>- UUIDs and labels: Adding three more fields to the metadata containing
> >>   the dm-zoned device UUID and label, and the device UUID. This allows
> >>   for an unique identification of the devices, so that several dm-zoned
> >>   sets can coexist and have a persistent identification.
> >>- Extend random zones by an additional regular disk device: A regular
> >>   block device can be added together with the zoned block device, providing
> >>   additional (emulated) random write zones. With this it's possible to
> >>   handle sequential zones only devices; also there will be a speed-up if
> >>   the regular block device resides on a fast medium. The regular block device
> >>   is placed logically in front of the zoned block device, so that metadata
> >>   and mapping tables reside on the regular block device, not the zoned device.
> >>- Tertiary superblock support: In addition to the two existing sets of metadata
> >>   another, tertiary, superblock is written to the first block of the zoned
> >>   block device. This superblock is for identification only; the generation
> >>   number is set to '0' and the block itself it never updated. The additional
> >>   metadate like bitmap tables etc are not copied.
> >>
> >>To handle this, some changes to the original handling are introduced:
> >>- Zones are now equidistant. Originally, runt zones were ignored, and
> >>   not counted when sizing the mapping tables. With the dual device setup
> >>   runt zones might occur at the end of the regular block device, making
> >>   direct translation between zone number and sector/block number complex.
> >>   For metadata version 2 all zones are considered to be of the same size,
> >>   and runt zones are simply marked as 'offline' to have them ignored when
> >>   allocating a new zone.
> >>- The block number in the superblock is now the global number, and refers to
> >>   the location of the superblock relative to the resulting device-mapper
> >>   device. Which means that the tertiary superblock contains absolute block
> >>   addresses, which needs to be translated to the relative device addresses
> >>   to find the referenced block.
> >>
> >>There is an accompanying patchset for dm-zoned-tools for writing and checking
> >>this new metadata.
> >>
> >>As usual, comments and reviews are welcome.
> >>
> >>Changes to v2:
> >>- Kill dmz_id()
> >>- Include reviews from Damien
> >>- Sanitize uuid handling as suggested by John Dorminy
> >>
> >
> >This series looks good to me, feel free to add my
> >Reviewed-by: Bob Liu <bob.liu@oracle.com>
> >
> >By the way, have you completed the patches for regular device support?
> >I was considering rebase my previous patches to this series but not sure is it still necessary.

Bob, not trying to be overly critical but if you couldn't answer your
question how did you feel comfortable providing your Reviewed-by to this
patchset?  That Reviewed-by _must_ mean something.

Mike


> I have combined both patchsets, this one now also included regular
> device support. So no need to resend from your side.
> 
> Cheers,
> 
> Hannes
> -- 
> Dr. Hannes Reinecke            Teamlead Storage & Networking
> hare@suse.de                               +49 911 74053 688
> SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg
> HRB 36809 (AG Nürnberg), Geschäftsführer: Felix Imendörffer
> 

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel
Bob Liu April 15, 2020, 12:07 a.m. UTC | #4
On 4/14/20 11:13 PM, Mike Snitzer wrote:
> On Tue, Apr 14 2020 at  2:38am -0400,
> Hannes Reinecke <hare@suse.de> wrote:
> 
>> On 4/11/20 2:30 PM, Bob Liu wrote:
>>> On 4/9/20 2:45 PM, Hannes Reinecke wrote:
>>>> Hi all,
>>>>
>>>> this patchset adds a new metadata version 2, which brings the following
>>>> improvements:
>>>> - UUIDs and labels: Adding three more fields to the metadata containing
>>>>   the dm-zoned device UUID and label, and the device UUID. This allows
>>>>   for an unique identification of the devices, so that several dm-zoned
>>>>   sets can coexist and have a persistent identification.
>>>> - Extend random zones by an additional regular disk device: A regular
>>>>   block device can be added together with the zoned block device, providing
>>>>   additional (emulated) random write zones. With this it's possible to
>>>>   handle sequential zones only devices; also there will be a speed-up if
>>>>   the regular block device resides on a fast medium. The regular block device
>>>>   is placed logically in front of the zoned block device, so that metadata
>>>>   and mapping tables reside on the regular block device, not the zoned device.
>>>> - Tertiary superblock support: In addition to the two existing sets of metadata
>>>>   another, tertiary, superblock is written to the first block of the zoned
>>>>   block device. This superblock is for identification only; the generation
>>>>   number is set to '0' and the block itself it never updated. The additional
>>>>   metadate like bitmap tables etc are not copied.
>>>>
>>>> To handle this, some changes to the original handling are introduced:
>>>> - Zones are now equidistant. Originally, runt zones were ignored, and
>>>>   not counted when sizing the mapping tables. With the dual device setup
>>>>   runt zones might occur at the end of the regular block device, making
>>>>   direct translation between zone number and sector/block number complex.
>>>>   For metadata version 2 all zones are considered to be of the same size,
>>>>   and runt zones are simply marked as 'offline' to have them ignored when
>>>>   allocating a new zone.
>>>> - The block number in the superblock is now the global number, and refers to
>>>>   the location of the superblock relative to the resulting device-mapper
>>>>   device. Which means that the tertiary superblock contains absolute block
>>>>   addresses, which needs to be translated to the relative device addresses
>>>>   to find the referenced block.
>>>>
>>>> There is an accompanying patchset for dm-zoned-tools for writing and checking
>>>> this new metadata.
>>>>
>>>> As usual, comments and reviews are welcome.
>>>>
>>>> Changes to v2:
>>>> - Kill dmz_id()
>>>> - Include reviews from Damien
>>>> - Sanitize uuid handling as suggested by John Dorminy
>>>>
>>>
>>> This series looks good to me, feel free to add my
>>> Reviewed-by: Bob Liu <bob.liu@oracle.com>
>>>
>>> By the way, have you completed the patches for regular device support?
>>> I was considering rebase my previous patches to this series but not sure is it still necessary.
> 
> Bob, not trying to be overly critical but if you couldn't answer your

These patches did looks fine to me, my question was asking about following regular-device support
patches which haven't included in this series.
Anyway, I will pay more attention.
Thanks for reminding.

Bob

> question how did you feel comfortable providing your Reviewed-by to this
> patchset?  That Reviewed-by _must_ mean something.
> 
> Mike
> 
> 
>> I have combined both patchsets, this one now also included regular
>> device support. So no need to resend from your side.
>>
>> Cheers,
>>
>> Hannes
>> -- 
>> Dr. Hannes Reinecke            Teamlead Storage & Networking
>> hare@suse.de                               +49 911 74053 688
>> SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg
>> HRB 36809 (AG Nürnberg), Geschäftsführer: Felix Imendörffer
>>
> 


--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel