mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] globalvar: Fix value of new globalvar when nvvar exists
@ 2017-05-08 18:10 Sascha Hauer
  2017-05-09  9:43 ` Ian Abbott
  0 siblings, 1 reply; 2+ messages in thread
From: Sascha Hauer @ 2017-05-08 18:10 UTC (permalink / raw)
  To: Barebox List; +Cc: Ian Abbott

When a new globalvar with a value is created and the corresponding
nvvar exists, then the globalvar gets the value of the nvvar, not
from the newly assigned value as expected.

nv quux=foo; global quux=bar; echo ${global.quux}

Should give "bar", not "foo". Fix this.

Reported-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 common/globalvar.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/globalvar.c b/common/globalvar.c
index c48e7df067..c528b24062 100644
--- a/common/globalvar.c
+++ b/common/globalvar.c
@@ -403,11 +403,11 @@ int globalvar_add_simple(const char *name, const char *value)
 			return PTR_ERR(param);
 	}
 
+	globalvar_nv_sync(name);
+
 	if (value)
 		dev_set_param(&global_device, name, value);
 
-	globalvar_nv_sync(name);
-
 	return 0;
 }
 
-- 
2.11.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] globalvar: Fix value of new globalvar when nvvar exists
  2017-05-08 18:10 [PATCH] globalvar: Fix value of new globalvar when nvvar exists Sascha Hauer
@ 2017-05-09  9:43 ` Ian Abbott
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Abbott @ 2017-05-09  9:43 UTC (permalink / raw)
  To: Sascha Hauer, Barebox List

On 08/05/17 19:10, Sascha Hauer wrote:
> When a new globalvar with a value is created and the corresponding
> nvvar exists, then the globalvar gets the value of the nvvar, not
> from the newly assigned value as expected.
>
> nv quux=foo; global quux=bar; echo ${global.quux}
>
> Should give "bar", not "foo". Fix this.
>
> Reported-by: Ian Abbott <abbotti@mev.co.uk>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
>  common/globalvar.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/common/globalvar.c b/common/globalvar.c
> index c48e7df067..c528b24062 100644
> --- a/common/globalvar.c
> +++ b/common/globalvar.c
> @@ -403,11 +403,11 @@ int globalvar_add_simple(const char *name, const char *value)
>  			return PTR_ERR(param);
>  	}
>
> +	globalvar_nv_sync(name);
> +
>  	if (value)
>  		dev_set_param(&global_device, name, value);
>
> -	globalvar_nv_sync(name);
> -
>  	return 0;
>  }

This seems to work.  Thanks.

-- 
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbotti@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2017-05-09  9:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-08 18:10 [PATCH] globalvar: Fix value of new globalvar when nvvar exists Sascha Hauer
2017-05-09  9:43 ` Ian Abbott

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox