* [PATCH v2] net: dhcp: add global variable for retries
@ 2018-09-04 7:07 Oleg.Karfich
2018-09-04 8:09 ` Sascha Hauer
0 siblings, 1 reply; 3+ messages in thread
From: Oleg.Karfich @ 2018-09-04 7:07 UTC (permalink / raw)
To: barebox; +Cc: Oleg.Karfich
Signed-off-by: Oleg Karfich <oleg.karfich@wago.com>
---
Changes in v2:
- use globalvar_add_simple_int
- set default value to global variable
- and use the global variable in dhcp requests :-)
---
net/dhcp.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net/dhcp.c b/net/dhcp.c
index 92e0501..984d32a 100644
--- a/net/dhcp.c
+++ b/net/dhcp.c
@@ -448,7 +448,7 @@ static char *global_dhcp_bootfile;
static char *global_dhcp_oftree_file;
static char *global_dhcp_rootpath;
static char *global_dhcp_tftp_server_name;
-static char *global_dhcp_retries;
+static int global_dhcp_retries = DHCP_DEFAULT_RETRY;
static char *global_dhcp_option224;
static void set_res(char **var, const char *res)
@@ -485,7 +485,7 @@ int dhcp_request(struct eth_device *edev, const struct dhcp_req_param *param,
if (!dhcp_param.option224)
dhcp_param.option224 = global_dhcp_option224;
if (!dhcp_param.retries)
- dhcp_param.retries = DHCP_DEFAULT_RETRY;
+ dhcp_param.retries = global_dhcp_retries;
dhcp_con = net_udp_eth_new(edev, IP_BROADCAST, PORT_BOOTPS, dhcp_handler, NULL);
if (IS_ERR(dhcp_con)) {
@@ -630,7 +630,7 @@ static int dhcp_global_init(void)
globalvar_add_simple_string("dhcp.user_class", &global_dhcp_user_class);
globalvar_add_simple_string("dhcp.oftree_file", &global_dhcp_oftree_file);
globalvar_add_simple_string("dhcp.tftp_server_name", &global_dhcp_tftp_server_name);
- globalvar_add_simple_string("dhcp.retries", &global_dhcp_retries);
+ globalvar_add_simple_int("dhcp.retries", &global_dhcp_retries, "%u");
globalvar_add_simple_string("dhcp.option224", &global_dhcp_option224);
return 0;
--
2.7.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] net: dhcp: add global variable for retries
2018-09-04 7:07 [PATCH v2] net: dhcp: add global variable for retries Oleg.Karfich
@ 2018-09-04 8:09 ` Sascha Hauer
2018-09-04 8:34 ` Oleg.Karfich
0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2018-09-04 8:09 UTC (permalink / raw)
To: Oleg.Karfich; +Cc: barebox
On Tue, Sep 04, 2018 at 07:07:37AM +0000, Oleg.Karfich@wago.com wrote:
> Signed-off-by: Oleg Karfich <oleg.karfich@wago.com>
> ---
>
> Changes in v2:
>
> - use globalvar_add_simple_int
> - set default value to global variable
> - and use the global variable in dhcp requests :-)
>
> ---
This is not exactly a v2 but a fixup for the original patch. Squashed
the to patches into one and applied, thanks
Sascha
> net/dhcp.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/net/dhcp.c b/net/dhcp.c
> index 92e0501..984d32a 100644
> --- a/net/dhcp.c
> +++ b/net/dhcp.c
> @@ -448,7 +448,7 @@ static char *global_dhcp_bootfile;
> static char *global_dhcp_oftree_file;
> static char *global_dhcp_rootpath;
> static char *global_dhcp_tftp_server_name;
> -static char *global_dhcp_retries;
> +static int global_dhcp_retries = DHCP_DEFAULT_RETRY;
> static char *global_dhcp_option224;
>
> static void set_res(char **var, const char *res)
> @@ -485,7 +485,7 @@ int dhcp_request(struct eth_device *edev, const struct dhcp_req_param *param,
> if (!dhcp_param.option224)
> dhcp_param.option224 = global_dhcp_option224;
> if (!dhcp_param.retries)
> - dhcp_param.retries = DHCP_DEFAULT_RETRY;
> + dhcp_param.retries = global_dhcp_retries;
>
> dhcp_con = net_udp_eth_new(edev, IP_BROADCAST, PORT_BOOTPS, dhcp_handler, NULL);
> if (IS_ERR(dhcp_con)) {
> @@ -630,7 +630,7 @@ static int dhcp_global_init(void)
> globalvar_add_simple_string("dhcp.user_class", &global_dhcp_user_class);
> globalvar_add_simple_string("dhcp.oftree_file", &global_dhcp_oftree_file);
> globalvar_add_simple_string("dhcp.tftp_server_name", &global_dhcp_tftp_server_name);
> - globalvar_add_simple_string("dhcp.retries", &global_dhcp_retries);
> + globalvar_add_simple_int("dhcp.retries", &global_dhcp_retries, "%u");
> globalvar_add_simple_string("dhcp.option224", &global_dhcp_option224);
>
> return 0;
> --
> 2.7.4
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] net: dhcp: add global variable for retries
2018-09-04 8:09 ` Sascha Hauer
@ 2018-09-04 8:34 ` Oleg.Karfich
0 siblings, 0 replies; 3+ messages in thread
From: Oleg.Karfich @ 2018-09-04 8:34 UTC (permalink / raw)
To: s.hauer; +Cc: barebox
On 04.09.2018 10:09, Sascha Hauer wrote:
Hi Sascha,
> On Tue, Sep 04, 2018 at 07:07:37AM +0000, Oleg.Karfich@wago.com wrote:
>> Signed-off-by: Oleg Karfich <oleg.karfich@wago.com>
>> ---
>>
>> Changes in v2:
>>
>> - use globalvar_add_simple_int
>> - set default value to global variable
>> - and use the global variable in dhcp requests :-)
>>
>> ---
>
> This is not exactly a v2 but a fixup for the original patch. Squashed
> the to patches into one and applied, thanks
Ok. Thanks for squashing. So the next time i will send a new v2 patch-series.
>
> Sascha
Regards
Oleg
[ ... ]
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-09-04 8:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-04 7:07 [PATCH v2] net: dhcp: add global variable for retries Oleg.Karfich
2018-09-04 8:09 ` Sascha Hauer
2018-09-04 8:34 ` Oleg.Karfich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox