From: Eric Wheeler <bcache@lists.ewheeler.net>
To: Coly Li <colyli@suse.de>
Cc: linux-block@vger.kernel.org, Jonathan Corbet <corbet@lwn.net>,
Kent Overstreet <kent.overstreet@gmail.com>,
"open list:DOCUMENTATION" <linux-doc@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>,
"open list:BCACHE (BLOCK LAYER CACHE)"
<linux-bcache@vger.kernel.org>,
"Martin K. Petersen" <martin.petersen@oracle.com>
Subject: Re: [PATCH] bcache: make stripe_size configurable and persistent for hardware raid5/6
Date: Wed, 5 Jan 2022 19:29:05 -0800 (PST) [thread overview]
Message-ID: <fdb85dc1-eee6-e55e-8e9c-fa1f36b4a37@ewheeler.net> (raw)
In-Reply-To: <8a9131dc-9bf7-a24a-f7b8-35e0c019e905@suse.de>
[-- Attachment #1: Type: text/plain, Size: 3656 bytes --]
On Tue, 25 Jun 2019, Coly Li wrote:
> On 2019/6/25 2:14 上午, Eric Wheeler wrote:
> > On Mon, 24 Jun 2019, Coly Li wrote:
> >
> >> On 2019/6/23 7:16 上午, Eric Wheeler wrote:
> >>> From: Eric Wheeler <git@linux.ewheeler.net>
> >>>
> >>> While some drivers set queue_limits.io_opt (e.g., md raid5), there are
> >>> currently no SCSI/RAID controller drivers that do. Previously stripe_size
> >>> and partial_stripes_expensive were read-only values and could not be
> >>> tuned by users (eg, for hardware RAID5/6).
> >>>
> >>> This patch enables users to save the optimal IO size via sysfs through
> >>> the backing device attributes stripe_size and partial_stripes_expensive
> >>> into the bcache superblock.
> >>>
> >>> Superblock changes are backwards-compatable:
> >>>
> >>> * partial_stripes_expensive: One bit was used in the superblock flags field
> >>>
> >>> * stripe_size: There are eight 64-bit "pad" fields for future use in
> >>> the superblock which default to 0; from those, 32-bits are now used
> >>> to save the stripe_size and load at device registration time.
> >>>
> >>> Signed-off-by: Eric Wheeler <bcache@linux.ewheeler.net>
> >>
> >> Hi Eric,
> >>
> >> In general I am OK with this patch. Since Peter comments lots of SCSI
> >> RAID devices reports a stripe width, could you please list the hardware
> >> raid devices which don't list stripe size ? Then we can make decision
> >> whether it is necessary to have such option enabled.
> >
> > Perhaps they do not set stripe_width using io_opt? I did a grep to see if
> > any of them did, but I didn't see them. How is stripe_width indicated by
> > RAID controllers?
> >
> > If they do set io_opt, then at least my Areca 1883 does not set io_opt as
> > of 4.19.x. I also have a LSI MegaRAID 3108 which does not report io_opt as
> > of 4.1.x, but that is an older kernel so maybe support has been added
> > since then.
> >
> > Martin,
> >
> > Where would stripe_width be configured in the SCSI drivers? Is it visible
> > through sysfs or debugfs so I can check my hardware support without
> > hacking debugging the kernel?
> >
> >>
> >> Another point is, this patch changes struct cache_sb, it is no problem
> >> to change on-disk format. I plan to update the super block version soon,
> >> to store more configuration persistently into super block. stripe_size
> >> can be added to cache_sb with other on-disk changes.
> >
>
> Hi Eric,
>
> > Maybe bumping version makes sense, but even if you do not, this is safe to
> > use on systems without bumping the version because the values are unused
> > and default to 0.
>
> Yes, I understand you, it works as you suggested. I need to think how to
> organize all options in struct cache_sb, stripe_size will be arranged
> then. And I will ask help to you for reviewing the changes of on-disk
> format.
Hi Coli,
Just checking in, its been a while and I didn't see any more discussion on
the topic:
This would benefit users with older RAID controllers using RAID-5/6 that
don't set io_opt.
Even new new RAID controlers that _do_ provide `io_opt` still do _not_
indicate partial_stripes_expensive (which is an mdraid feature, but Martin
please correct me if I'm wrong here). Thus, all hardware RAID-5/6 users
could benefit by manually flagging partial_stripes_expensive to get burst
writes out of bcache that fit their stride width.
This patch probably needs rebased and documentation updated about io_opt,
but here is the original patch with documentation for your reference:
https://lkml.org/lkml/2019/6/22/298
What do you think?
-Eric
>
> Thanks.
>
> [snipped]
>
> --
>
> Coly Li
>
next prev parent reply other threads:[~2022-01-06 3:29 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <d3f7fd44-9287-c7fa-ee95-c3b8a4d56c93@suse.de>
2019-06-22 23:16 ` [PATCH] bcache: make stripe_size configurable and persistent for hardware raid5/6 Eric Wheeler
2019-06-23 0:41 ` Martin K. Petersen
2019-06-24 6:57 ` Coly Li
2019-06-24 7:05 ` Coly Li
2019-06-24 18:14 ` Eric Wheeler
2019-06-24 23:24 ` Martin K. Petersen
2019-06-26 0:23 ` Eric Wheeler
2019-06-26 2:50 ` Martin K. Petersen
2019-06-25 1:59 ` Coly Li
2022-01-06 3:29 ` Eric Wheeler [this message]
2022-01-06 16:17 ` Coly Li
2022-01-08 0:21 ` Martin K. Petersen
2022-01-08 4:54 ` Eric Wheeler
2022-01-08 21:51 ` Eric Wheeler
2022-01-10 16:14 ` Martin K. Petersen
2022-01-10 23:30 ` Eric Wheeler
2022-01-11 2:55 ` Martin K. Petersen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fdb85dc1-eee6-e55e-8e9c-fa1f36b4a37@ewheeler.net \
--to=bcache@lists.ewheeler.net \
--cc=colyli@suse.de \
--cc=corbet@lwn.net \
--cc=kent.overstreet@gmail.com \
--cc=linux-bcache@vger.kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.petersen@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox