From: Igor Mammedov <imammedo@redhat.com>
To: Andrew Jones <drjones@redhat.com>
Cc: peter.maydell@linaro.org, qemu-devel@nongnu.org,
Alexander Graf <agraf@suse.de>,
eric.auger@redhat.com, qemu-arm@nongnu.org
Subject: Re: [Qemu-arm] [RFC PATCH 2/6] device_tree: add qemu_fdt_add_path
Date: Mon, 23 Jul 2018 14:42:54 +0200 [thread overview]
Message-ID: <20180723144254.663f457f@redhat.com> (raw)
In-Reply-To: <20180704124923.32483-3-drjones@redhat.com>
On Wed, 4 Jul 2018 14:49:19 +0200
Andrew Jones <drjones@redhat.com> wrote:
> qemu_fdt_add_path works like qemu_fdt_add_subnode, except it
> also recursively adds any missing parent nodes.
Probably add here why new helper is need?
>
> Cc: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> Cc: Alexander Graf <agraf@suse.de>
> Signed-off-by: Andrew Jones <drjones@redhat.com>
> ---
> device_tree.c | 24 ++++++++++++++++++++++++
> include/sysemu/device_tree.h | 1 +
> 2 files changed, 25 insertions(+)
>
> diff --git a/device_tree.c b/device_tree.c
> index 6d9c9726f66c..ad570a4dbe3a 100644
> --- a/device_tree.c
> +++ b/device_tree.c
> @@ -520,6 +520,30 @@ int qemu_fdt_add_subnode(void *fdt, const char *name)
> return retval;
> }
>
> +int qemu_fdt_add_path(void *fdt, const char *path)
> +{
> + char *parent;
> + int offset;
> +
> + offset = fdt_path_offset(fdt, path);
> + if (offset < 0 && offset != -FDT_ERR_NOTFOUND) {
> + error_report("%s Couldn't find node %s: %s", __func__, path,
> + fdt_strerror(offset));
> + exit(1);
> + }
> +
> + if (offset != -FDT_ERR_NOTFOUND) {
> + return offset;
> + }
> +
> + parent = g_strdup(path);
> + strrchr(parent, '/')[0] = '\0';
> + qemu_fdt_add_path(fdt, parent);
can it be implemented without recursion?
> + g_free(parent);
> +
> + return qemu_fdt_add_subnode(fdt, path);
> +}
> +
> void qemu_fdt_dumpdtb(void *fdt, int size)
> {
> const char *dumpdtb = qemu_opt_get(qemu_get_machine_opts(), "dumpdtb");
> diff --git a/include/sysemu/device_tree.h b/include/sysemu/device_tree.h
> index c16fd69bc0b1..d62fc873a3ea 100644
> --- a/include/sysemu/device_tree.h
> +++ b/include/sysemu/device_tree.h
> @@ -101,6 +101,7 @@ uint32_t qemu_fdt_get_phandle(void *fdt, const char *path);
> uint32_t qemu_fdt_alloc_phandle(void *fdt);
> int qemu_fdt_nop_node(void *fdt, const char *node_path);
> int qemu_fdt_add_subnode(void *fdt, const char *name);
/**
* qemu_fdt_add_path: ....
...
*/
It would be nice to have a doc comment here
> +int qemu_fdt_add_path(void *fdt, const char *path);
>
> #define qemu_fdt_setprop_cells(fdt, node_path, property, ...) \
> do { \
WARNING: multiple messages have this Message-ID (diff)
From: Igor Mammedov <imammedo@redhat.com>
To: Andrew Jones <drjones@redhat.com>
Cc: qemu-devel@nongnu.org, qemu-arm@nongnu.org,
peter.maydell@linaro.org, eric.auger@redhat.com, wei@redhat.com,
Peter Crosthwaite <crosthwaite.peter@gmail.com>,
Alexander Graf <agraf@suse.de>
Subject: Re: [Qemu-devel] [RFC PATCH 2/6] device_tree: add qemu_fdt_add_path
Date: Mon, 23 Jul 2018 14:42:54 +0200 [thread overview]
Message-ID: <20180723144254.663f457f@redhat.com> (raw)
In-Reply-To: <20180704124923.32483-3-drjones@redhat.com>
On Wed, 4 Jul 2018 14:49:19 +0200
Andrew Jones <drjones@redhat.com> wrote:
> qemu_fdt_add_path works like qemu_fdt_add_subnode, except it
> also recursively adds any missing parent nodes.
Probably add here why new helper is need?
>
> Cc: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> Cc: Alexander Graf <agraf@suse.de>
> Signed-off-by: Andrew Jones <drjones@redhat.com>
> ---
> device_tree.c | 24 ++++++++++++++++++++++++
> include/sysemu/device_tree.h | 1 +
> 2 files changed, 25 insertions(+)
>
> diff --git a/device_tree.c b/device_tree.c
> index 6d9c9726f66c..ad570a4dbe3a 100644
> --- a/device_tree.c
> +++ b/device_tree.c
> @@ -520,6 +520,30 @@ int qemu_fdt_add_subnode(void *fdt, const char *name)
> return retval;
> }
>
> +int qemu_fdt_add_path(void *fdt, const char *path)
> +{
> + char *parent;
> + int offset;
> +
> + offset = fdt_path_offset(fdt, path);
> + if (offset < 0 && offset != -FDT_ERR_NOTFOUND) {
> + error_report("%s Couldn't find node %s: %s", __func__, path,
> + fdt_strerror(offset));
> + exit(1);
> + }
> +
> + if (offset != -FDT_ERR_NOTFOUND) {
> + return offset;
> + }
> +
> + parent = g_strdup(path);
> + strrchr(parent, '/')[0] = '\0';
> + qemu_fdt_add_path(fdt, parent);
can it be implemented without recursion?
> + g_free(parent);
> +
> + return qemu_fdt_add_subnode(fdt, path);
> +}
> +
> void qemu_fdt_dumpdtb(void *fdt, int size)
> {
> const char *dumpdtb = qemu_opt_get(qemu_get_machine_opts(), "dumpdtb");
> diff --git a/include/sysemu/device_tree.h b/include/sysemu/device_tree.h
> index c16fd69bc0b1..d62fc873a3ea 100644
> --- a/include/sysemu/device_tree.h
> +++ b/include/sysemu/device_tree.h
> @@ -101,6 +101,7 @@ uint32_t qemu_fdt_get_phandle(void *fdt, const char *path);
> uint32_t qemu_fdt_alloc_phandle(void *fdt);
> int qemu_fdt_nop_node(void *fdt, const char *node_path);
> int qemu_fdt_add_subnode(void *fdt, const char *name);
/**
* qemu_fdt_add_path: ....
...
*/
It would be nice to have a doc comment here
> +int qemu_fdt_add_path(void *fdt, const char *path);
>
> #define qemu_fdt_setprop_cells(fdt, node_path, property, ...) \
> do { \
next prev parent reply other threads:[~2018-07-23 12:43 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-04 12:49 [Qemu-arm] [RFC PATCH 0/6] hw/arm/virt: Introduce cpu topology support Andrew Jones
2018-07-04 12:49 ` [Qemu-devel] " Andrew Jones
2018-07-04 12:49 ` [Qemu-arm] [RFC PATCH 1/6] hw/arm/virt: Add virt-3.1 machine type Andrew Jones
2018-07-04 12:49 ` [Qemu-devel] " Andrew Jones
2018-07-23 12:22 ` [Qemu-arm] " Igor Mammedov
2018-07-23 12:22 ` [Qemu-devel] " Igor Mammedov
2018-08-17 14:55 ` Peter Maydell
2018-08-17 14:55 ` Peter Maydell
2018-07-04 12:49 ` [Qemu-arm] [RFC PATCH 2/6] device_tree: add qemu_fdt_add_path Andrew Jones
2018-07-04 12:49 ` [Qemu-devel] " Andrew Jones
2018-07-23 12:42 ` Igor Mammedov [this message]
2018-07-23 12:42 ` Igor Mammedov
2018-08-17 15:00 ` [Qemu-arm] " Andrew Jones
2018-08-17 15:00 ` Andrew Jones
2018-07-04 12:49 ` [Qemu-arm] [RFC PATCH 3/6] hw/arm/virt: DT: add cpu-map Andrew Jones
2018-07-04 12:49 ` [Qemu-devel] " Andrew Jones
2018-07-23 13:10 ` [Qemu-arm] " Igor Mammedov
2018-07-23 13:10 ` [Qemu-devel] " Igor Mammedov
2018-07-04 12:49 ` [Qemu-arm] [RFC PATCH 4/6] hw/arm/virt-acpi-build: distinguish possible and present cpus Andrew Jones
2018-07-04 12:49 ` [Qemu-devel] " Andrew Jones
2018-07-23 13:28 ` [Qemu-arm] " Igor Mammedov
2018-07-23 13:28 ` Igor Mammedov
2018-07-04 12:49 ` [Qemu-devel] [RFC PATCH 5/6] virt-acpi-build: add PPTT table Andrew Jones
2018-07-04 12:49 ` Andrew Jones
2018-07-11 12:51 ` [Qemu-arm] " Andrew Jones
2018-07-11 12:51 ` [Qemu-devel] " Andrew Jones
2018-07-23 14:00 ` [Qemu-arm] " Igor Mammedov
2018-07-23 14:00 ` [Qemu-devel] " Igor Mammedov
2018-07-04 12:49 ` [Qemu-arm] [RFC PATCH 6/6] hw/arm/virt: cpu topology: don't allow threads Andrew Jones
2018-07-04 12:49 ` [Qemu-devel] " Andrew Jones
2019-12-09 2:14 ` [Qemu-devel] [RFC PATCH 0/6] hw/arm/virt: Introduce cpu topology support Zengtao (B)
2019-12-10 10:13 ` Andrew Jones
2019-12-10 10:13 ` Andrew Jones
2019-12-11 11:10 ` Zengtao (B)
2019-12-11 11:10 ` Zengtao (B)
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=20180723144254.663f457f@redhat.com \
--to=imammedo@redhat.com \
--cc=agraf@suse.de \
--cc=drjones@redhat.com \
--cc=eric.auger@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.