linux-efi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] efi: fix the wrong check for the offset of subnode
@ 2016-08-24  2:18 Shawn Lin
       [not found] ` <1472005090-5871-1-git-send-email-shawn.lin-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Shawn Lin @ 2016-08-24  2:18 UTC (permalink / raw)
  To: Matt Fleming; +Cc: linux-efi-u79uwXL29TY76Z2rM5mHXA, Shawn Lin

of_get_flat_dt_subnode_by_name return the offset of
the subnode, and we should check if it's valid. But
the original code use the unsigned type to check it,
which makes the we always get subnode successfully
even if returning -FDT_ERR_BADPATH etc. Let's fix it
by adding offset variable.

Suggested-by: Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
Signed-off-by: Shawn Lin <shawn.lin-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
---

 drivers/firmware/efi/efi.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
index 5a2631a..7a5964e 100644
--- a/drivers/firmware/efi/efi.c
+++ b/drivers/firmware/efi/efi.c
@@ -647,6 +647,7 @@ static int __init fdt_find_uefi_params(unsigned long node, const char *uname,
 {
 	struct param_info *info = data;
 	int i;
+	int offset = node;
 
 	for (i = 0; i < ARRAY_SIZE(dt_params); i++) {
 		const char *subnode = dt_params[i].subnode;
@@ -657,12 +658,12 @@ static int __init fdt_find_uefi_params(unsigned long node, const char *uname,
 		}
 
 		if (subnode) {
-			node = of_get_flat_dt_subnode_by_name(node, subnode);
-			if (node < 0)
+			offset = of_get_flat_dt_subnode_by_name(node, subnode);
+			if (offset < 0)
 				return 0;
 		}
 
-		return __find_uefi_params(node, info, dt_params[i].params);
+		return __find_uefi_params(offset, info, dt_params[i].params);
 	}
 
 	return 0;
-- 
2.3.7

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-08-24 14:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-24  2:18 [PATCH] efi: fix the wrong check for the offset of subnode Shawn Lin
     [not found] ` <1472005090-5871-1-git-send-email-shawn.lin-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2016-08-24 14:28   ` Matt Fleming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).