From: Jens Axboe <axboe@kernel.dk>
To: Daniel Golle <daniel@makrotopia.org>
Cc: "Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Ulf Hansson" <ulf.hansson@linaro.org>,
"Hauke Mehrtens" <hauke@hauke-m.de>,
"Felix Fietkau" <nbd@nbd.name>,
"Srinivas Kandagatla" <srinivas.kandagatla@linaro.org>,
"Dave Chinner" <dchinner@redhat.com>, "Jan Kara" <jack@suse.cz>,
"Christian Brauner" <brauner@kernel.org>,
"Thomas Weißschuh" <linux@weissschuh.net>,
"Al Viro" <viro@zeniv.linux.org.uk>,
"Li Lingfeng" <lilingfeng3@huawei.com>,
"Christian Heusel" <christian@heusel.eu>,
"Min Li" <min15.li@samsung.com>,
"Avri Altman" <avri.altman@wdc.com>,
"Adrian Hunter" <adrian.hunter@intel.com>,
"Hannes Reinecke" <hare@suse.de>,
"Mikko Rapeli" <mikko.rapeli@linaro.org>,
"Yeqi Fu" <asuk4.q@gmail.com>,
"Victor Shih" <victor.shih@genesyslogic.com.tw>,
"Christophe JAILLET" <christophe.jaillet@wanadoo.fr>,
"Li Zhijian" <lizhijian@fujitsu.com>,
"Ricardo B. Marliere" <ricardo@marliere.net>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mmc@vger.kernel.org, linux-block@vger.kernel.org
Subject: Re: [PATCH v3 2/4] block: partitions: populate fwnode
Date: Wed, 26 Jun 2024 14:09:24 -0600 [thread overview]
Message-ID: <1233bf3c-335c-497a-ba08-cd52362f3723@kernel.dk> (raw)
In-Reply-To: <Znxy0BJNTE79MrCq@makrotopia.org>
On 6/26/24 1:58 PM, Daniel Golle wrote:
> On Wed, Jun 26, 2024 at 01:43:49PM -0600, Jens Axboe wrote:
>> On 6/25/24 8:50 PM, Daniel Golle wrote:
>>> diff --git a/block/partitions/core.c b/block/partitions/core.c
>>> index ab76e64f0f6c..f88829e254e6 100644
>>> --- a/block/partitions/core.c
>>> +++ b/block/partitions/core.c
>>> @@ -10,6 +10,8 @@
>>> #include <linux/ctype.h>
>>> #include <linux/vmalloc.h>
>>> #include <linux/raid/detect.h>
>>> +#include <linux/property.h>
>>> +
>>> #include "check.h"
>>>
>>> static int (*const check_part[])(struct parsed_partitions *) = {
>>> @@ -281,6 +283,42 @@ static ssize_t whole_disk_show(struct device *dev,
>>> }
>>> static const DEVICE_ATTR(whole_disk, 0444, whole_disk_show, NULL);
>>>
>>> +static struct fwnode_handle *find_partition_fwnode(struct block_device *bdev)
>>> +{
>>> + struct fwnode_handle *fw_parts, *fw_part;
>>> + struct device *ddev = disk_to_dev(bdev->bd_disk);
>>> + const char *partname, *uuid;
>>> + u32 partno;
>>> +
>>> + fw_parts = device_get_named_child_node(ddev, "partitions");
>>> + if (!fw_parts)
>>> + fw_parts = device_get_named_child_node(ddev->parent, "partitions");
>>> +
>>> + if (!fw_parts)
>>> + return NULL;
>>
>> That last if check should to inside the previous one.
>
> Actually the previous one should have been removed entirely. I somehow
> forgot to 'git add' that change.
>
>>
>>> + fwnode_for_each_child_node(fw_parts, fw_part) {
>>> + if (!fwnode_property_read_string(fw_part, "uuid", &uuid) &&
>>> + (!bdev->bd_meta_info || strlen(uuid) > PARTITION_META_INFO_UUIDLTH ||
>>> + strncmp(uuid, bdev->bd_meta_info->uuid, PARTITION_META_INFO_UUIDLTH)))
>>> + continue;
>>> +
>>> + if (!fwnode_property_read_string(fw_part, "partname", &partname) &&
>>> + (!bdev->bd_meta_info || strlen(uuid) > PARTITION_META_INFO_VOLNAMELTH ||
>>> + strncmp(partname, bdev->bd_meta_info->volname,
>>> + PARTITION_META_INFO_VOLNAMELTH)))
>>> + continue;
>>
>> This is pretty hard to make sense of...
>
> I'll add comments explaining it. Or should I use another syntax, e.g. several
> nested if-clauses, instead?
Maybe some kind of helpers for these instead, with comments? Nobody can
read the above.
--
Jens Axboe
next prev parent reply other threads:[~2024-06-26 20:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-26 2:49 [PATCH v3 0/4] block: preparations for NVMEM provider Daniel Golle
2024-06-26 2:50 ` [PATCH v3 1/4] dt-bindings: block: add basic bindings for block devices Daniel Golle
2024-06-26 2:50 ` [PATCH v3 2/4] block: partitions: populate fwnode Daniel Golle
2024-06-26 19:43 ` Jens Axboe
2024-06-26 19:58 ` Daniel Golle
2024-06-26 20:09 ` Jens Axboe [this message]
2024-06-26 2:51 ` [PATCH v3 3/4] block: add support for notifications Daniel Golle
2024-06-26 19:46 ` Jens Axboe
2024-06-26 19:55 ` Daniel Golle
2024-06-26 20:23 ` Jens Axboe
2024-06-26 2:51 ` [PATCH v3 4/4] block: add new genhd flag GENHD_FL_NVMEM Daniel Golle
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=1233bf3c-335c-497a-ba08-cd52362f3723@kernel.dk \
--to=axboe@kernel.dk \
--cc=adrian.hunter@intel.com \
--cc=asuk4.q@gmail.com \
--cc=avri.altman@wdc.com \
--cc=brauner@kernel.org \
--cc=christian@heusel.eu \
--cc=christophe.jaillet@wanadoo.fr \
--cc=conor+dt@kernel.org \
--cc=daniel@makrotopia.org \
--cc=dchinner@redhat.com \
--cc=devicetree@vger.kernel.org \
--cc=hare@suse.de \
--cc=hauke@hauke-m.de \
--cc=jack@suse.cz \
--cc=krzk+dt@kernel.org \
--cc=lilingfeng3@huawei.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux@weissschuh.net \
--cc=lizhijian@fujitsu.com \
--cc=mikko.rapeli@linaro.org \
--cc=min15.li@samsung.com \
--cc=nbd@nbd.name \
--cc=ricardo@marliere.net \
--cc=robh@kernel.org \
--cc=srinivas.kandagatla@linaro.org \
--cc=ulf.hansson@linaro.org \
--cc=victor.shih@genesyslogic.com.tw \
--cc=viro@zeniv.linux.org.uk \
/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