All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Williamson <alex.williamson@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Crosthwaite <crosthwaite.peter@gmail.com>,
	Eric Auger <eric.auger@linaro.org>
Subject: [Qemu-devel] [PULL 09/13] device_tree: qemu_fdt_getprop converted to use the error API
Date: Thu, 18 Feb 2016 13:06:37 -0700	[thread overview]
Message-ID: <20160218200637.29220.10246.stgit@gimli.home> (raw)
In-Reply-To: <20160218200419.29220.39836.stgit@gimli.home>

From: Eric Auger <eric.auger@linaro.org>

Current qemu_fdt_getprop exits if the property is not found. It is
sometimes needed to read an optional property, in which case we do
not wish to exit but simply returns a null value.

This patch converts qemu_fdt_getprop to accept an Error **, and existing
users are converted to pass &error_fatal. This preserves the existing
behaviour. Then to use the API with your optional semantic a null
parameter can be conveyed.

Signed-off-by: Eric Auger <eric.auger@linaro.org>
Reviewed-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
---
 device_tree.c                |   11 ++++++-----
 include/sysemu/device_tree.h |   13 ++++++++++++-
 2 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/device_tree.c b/device_tree.c
index 2587257..c93a615 100644
--- a/device_tree.c
+++ b/device_tree.c
@@ -330,18 +330,18 @@ int qemu_fdt_setprop_string(void *fdt, const char *node_path,
 }
 
 const void *qemu_fdt_getprop(void *fdt, const char *node_path,
-                             const char *property, int *lenp)
+                             const char *property, int *lenp, Error **errp)
 {
     int len;
     const void *r;
+
     if (!lenp) {
         lenp = &len;
     }
     r = fdt_getprop(fdt, findnode_nofail(fdt, node_path), property, lenp);
     if (!r) {
-        error_report("%s: Couldn't get %s/%s: %s", __func__,
-                     node_path, property, fdt_strerror(*lenp));
-        exit(1);
+        error_setg(errp, "%s: Couldn't get %s/%s: %s", __func__,
+                  node_path, property, fdt_strerror(*lenp));
     }
     return r;
 }
@@ -350,7 +350,8 @@ uint32_t qemu_fdt_getprop_cell(void *fdt, const char *node_path,
                                const char *property)
 {
     int len;
-    const uint32_t *p = qemu_fdt_getprop(fdt, node_path, property, &len);
+    const uint32_t *p = qemu_fdt_getprop(fdt, node_path, property, &len,
+                                         &error_fatal);
     if (len != 4) {
         error_report("%s: %s/%s not 4 bytes long (not a cell?)",
                      __func__, node_path, property);
diff --git a/include/sysemu/device_tree.h b/include/sysemu/device_tree.h
index 552df21..48bf3b5 100644
--- a/include/sysemu/device_tree.h
+++ b/include/sysemu/device_tree.h
@@ -54,8 +54,19 @@ int qemu_fdt_setprop_string(void *fdt, const char *node_path,
 int qemu_fdt_setprop_phandle(void *fdt, const char *node_path,
                              const char *property,
                              const char *target_node_path);
+/**
+ * qemu_fdt_getprop: retrieve the value of a given property
+ * @fdt: pointer to the device tree blob
+ * @node_path: node path
+ * @property: name of the property to find
+ * @lenp: fdt error if any or length of the property on success
+ * @errp: handle to an error object
+ *
+ * returns a pointer to the property on success and NULL on failure
+ */
 const void *qemu_fdt_getprop(void *fdt, const char *node_path,
-                             const char *property, int *lenp);
+                             const char *property, int *lenp,
+                             Error **errp);
 uint32_t qemu_fdt_getprop_cell(void *fdt, const char *node_path,
                                const char *property);
 uint32_t qemu_fdt_get_phandle(void *fdt, const char *path);

  parent reply	other threads:[~2016-02-18 20:06 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-18 20:05 [Qemu-devel] [PULL 00/13] VFIO updates 2016-02-18 Alex Williamson
2016-02-18 20:05 ` [Qemu-devel] [PULL 01/13] pcie: modify the capability size assert Alex Williamson
2016-02-18 20:05 ` [Qemu-devel] [PULL 02/13] vfio: make the 4 bytes aligned for capability size Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 03/13] aer: impove pcie_aer_init to support vfio device Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 04/13] pcie_aer: expose pcie_aer_msg() interface Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 05/13] vfio/pci: replace 1 with PCI_CAP_LIST_NEXT to make code self-explain Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 06/13] hw/vfio/platform: amd-xgbe device Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 07/13] device_tree: introduce load_device_tree_from_sysfs Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 08/13] device_tree: introduce qemu_fdt_node_path Alex Williamson
2016-02-18 20:06 ` Alex Williamson [this message]
2016-02-18 20:06 ` [Qemu-devel] [PULL 10/13] device_tree: qemu_fdt_getprop_cell converted to use the error API Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 11/13] hw/arm/sysbus-fdt: helpers for clock node generation Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 12/13] hw/arm/sysbus-fdt: enable amd-xgbe dynamic instantiation Alex Williamson
2016-02-18 20:07 ` [Qemu-devel] [PULL 13/13] hw/arm/sysbus-fdt: remove qemu_fdt_setprop returned value check Alex Williamson
2016-02-19 10:50 ` [Qemu-devel] [PULL 00/13] VFIO updates 2016-02-18 Peter Maydell
2016-02-19 12:20   ` Eric Auger

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=20160218200637.29220.10246.stgit@gimli.home \
    --to=alex.williamson@redhat.com \
    --cc=crosthwaite.peter@gmail.com \
    --cc=eric.auger@linaro.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.