Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1632737 > unrolled thread
| Started by | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| First post | 2017-04-28 11:50 +0200 |
| Last post | 2017-04-28 17:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 1/2] of: fix uninitialized variable warning for overlay test Arnd Bergmann <arnd@arndb.de> - 2017-04-28 11:50 +0200
Re: [PATCH 1/2] of: fix uninitialized variable warning for overlay test Frank Rowand <frowand.list@gmail.com> - 2017-04-28 17:50 +0200
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2017-04-28 11:50 +0200 |
| Subject | [PATCH 1/2] of: fix uninitialized variable warning for overlay test |
| Message-ID | <tBaHf-5yJ-3@gated-at.bofh.it> |
gcc warns that an empty device tree would cause undefined behavior:
drivers/of/unittest.c: In function 'of_unittest':
drivers/of/unittest.c:2199:25: warning: 'last_sibling' may be used uninitialized in this function [-Wmaybe-uninitialized]
This adds an initialization of the variable to zero, which we handle
correctly.
Fixes: 81d0848fc8d2 ("of: Add unit tests for applying overlays")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
drivers/of/unittest.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 12597ff8cfb0..6b8f3e6aa43c 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -2192,7 +2192,7 @@ static __init void of_unittest_overlay_high_level(void)
mutex_lock(&of_mutex);
- for (np = of_root->child; np; np = np->sibling)
+ for (last_sibling = np = of_root->child; np; np = np->sibling)
last_sibling = np;
if (last_sibling)
--
2.9.0
[toc] | [next] | [standalone]
| From | Frank Rowand <frowand.list@gmail.com> |
|---|---|
| Date | 2017-04-28 17:50 +0200 |
| Subject | Re: [PATCH 1/2] of: fix uninitialized variable warning for overlay test |
| Message-ID | <tBgjD-Uv-7@gated-at.bofh.it> |
| In reply to | #1632737 |
On 04/28/17 02:44, Arnd Bergmann wrote:
> gcc warns that an empty device tree would cause undefined behavior:
>
> drivers/of/unittest.c: In function 'of_unittest':
> drivers/of/unittest.c:2199:25: warning: 'last_sibling' may be used uninitialized in this function [-Wmaybe-uninitialized]
>
> This adds an initialization of the variable to zero, which we handle
> correctly.
>
> Fixes: 81d0848fc8d2 ("of: Add unit tests for applying overlays")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
> drivers/of/unittest.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
> index 12597ff8cfb0..6b8f3e6aa43c 100644
> --- a/drivers/of/unittest.c
> +++ b/drivers/of/unittest.c
> @@ -2192,7 +2192,7 @@ static __init void of_unittest_overlay_high_level(void)
>
> mutex_lock(&of_mutex);
>
> - for (np = of_root->child; np; np = np->sibling)
> + for (last_sibling = np = of_root->child; np; np = np->sibling)
> last_sibling = np;
>
> if (last_sibling)
>
Thanks Arnd! Linux-next also reported this and I sent Rob a different
patch for it yesterday.
Rob, I am fine with either Arnd's patch or mine, they both fix the
problem.
-Frank
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web