* [PATCH 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c
@ 2024-11-08 3:44 Adriano Cordova
2024-11-08 6:42 ` Heinrich Schuchardt
0 siblings, 1 reply; 2+ messages in thread
From: Adriano Cordova @ 2024-11-08 3:44 UTC (permalink / raw)
To: u-boot
Cc: joe.hershberger, rfried.dev, jerome.forissier, xypron.glpk,
ilias.apalodimas, Adriano Cordova
The function string_to_ip is already in net_utils, which is
compiled unconditionally, but ip_to_string is currently only
accessible if the legacy network stack is selected. This
commit puts ip_to_string in net_utils.c and removes it from the
legacy network code.
Signed-off-by: Adriano Cordova <adrianox@gmail.com>
---
include/net-common.h | 10 ++++++++++
lib/net_utils.c | 11 +++++++++++
net/net.c | 11 -----------
3 files changed, 21 insertions(+), 11 deletions(-)
diff --git a/include/net-common.h b/include/net-common.h
index 11c53766a3..5206b8346d 100644
--- a/include/net-common.h
+++ b/include/net-common.h
@@ -426,6 +426,16 @@ void string_to_enetaddr(const char *addr, uint8_t *enetaddr);
*/
struct in_addr string_to_ip(const char *s);
+/**
+ * ip_to_string() - Convert a string to ip address
+ *
+ * Implemented in lib/net_utils.c (built unconditionally)
+ *
+ * @x: Input ip to parse
+ * @s: string containing the parsed ip address
+ */
+void ip_to_string(struct in_addr x, char *s);
+
/* copy a filename (allow for "..." notation, limit length) */
void copy_filename(char *dst, const char *src, int size);
diff --git a/lib/net_utils.c b/lib/net_utils.c
index c70fef0d99..621f6512b6 100644
--- a/lib/net_utils.c
+++ b/lib/net_utils.c
@@ -152,6 +152,17 @@ out_err:
}
#endif
+void ip_to_string(struct in_addr x, char *s)
+{
+ x.s_addr = ntohl(x.s_addr);
+ sprintf(s, "%d.%d.%d.%d",
+ (int) ((x.s_addr >> 24) & 0xff),
+ (int) ((x.s_addr >> 16) & 0xff),
+ (int) ((x.s_addr >> 8) & 0xff),
+ (int) ((x.s_addr >> 0) & 0xff)
+ );
+}
+
void string_to_enetaddr(const char *addr, uint8_t *enetaddr)
{
char *end;
diff --git a/net/net.c b/net/net.c
index f47e9fbe33..ca35704f66 100644
--- a/net/net.c
+++ b/net/net.c
@@ -1723,17 +1723,6 @@ int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
return 1;
}
-void ip_to_string(struct in_addr x, char *s)
-{
- x.s_addr = ntohl(x.s_addr);
- sprintf(s, "%d.%d.%d.%d",
- (int) ((x.s_addr >> 24) & 0xff),
- (int) ((x.s_addr >> 16) & 0xff),
- (int) ((x.s_addr >> 8) & 0xff),
- (int) ((x.s_addr >> 0) & 0xff)
- );
-}
-
void vlan_to_string(ushort x, char *s)
{
x = ntohs(x);
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c
2024-11-08 3:44 [PATCH 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c Adriano Cordova
@ 2024-11-08 6:42 ` Heinrich Schuchardt
0 siblings, 0 replies; 2+ messages in thread
From: Heinrich Schuchardt @ 2024-11-08 6:42 UTC (permalink / raw)
To: Adriano Cordova, u-boot
Cc: joe.hershberger, rfried.dev, jerome.forissier, ilias.apalodimas
Am 8. November 2024 04:44:44 MEZ schrieb Adriano Cordova <adrianox@gmail.com>:
>The function string_to_ip is already in net_utils, which is
>compiled unconditionally, but ip_to_string is currently only
>accessible if the legacy network stack is selected. This
>commit puts ip_to_string in net_utils.c and removes it from the
>legacy network code.
>
>Signed-off-by: Adriano Cordova <adrianox@gmail.com>
LGTM
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Would you mind resending the series as a single email thread, please (git send email 0*.patch or use patchman). This will make reviewing and merging easier.
>---
> include/net-common.h | 10 ++++++++++
> lib/net_utils.c | 11 +++++++++++
> net/net.c | 11 -----------
> 3 files changed, 21 insertions(+), 11 deletions(-)
>
>diff --git a/include/net-common.h b/include/net-common.h
>index 11c53766a3..5206b8346d 100644
>--- a/include/net-common.h
>+++ b/include/net-common.h
>@@ -426,6 +426,16 @@ void string_to_enetaddr(const char *addr, uint8_t *enetaddr);
> */
> struct in_addr string_to_ip(const char *s);
>
>+/**
>+ * ip_to_string() - Convert a string to ip address
>+ *
>+ * Implemented in lib/net_utils.c (built unconditionally)
>+ *
>+ * @x: Input ip to parse
>+ * @s: string containing the parsed ip address
>+ */
>+void ip_to_string(struct in_addr x, char *s);
>+
> /* copy a filename (allow for "..." notation, limit length) */
> void copy_filename(char *dst, const char *src, int size);
>
>diff --git a/lib/net_utils.c b/lib/net_utils.c
>index c70fef0d99..621f6512b6 100644
>--- a/lib/net_utils.c
>+++ b/lib/net_utils.c
>@@ -152,6 +152,17 @@ out_err:
> }
> #endif
>
>+void ip_to_string(struct in_addr x, char *s)
>+{
>+ x.s_addr = ntohl(x.s_addr);
>+ sprintf(s, "%d.%d.%d.%d",
>+ (int) ((x.s_addr >> 24) & 0xff),
>+ (int) ((x.s_addr >> 16) & 0xff),
>+ (int) ((x.s_addr >> 8) & 0xff),
>+ (int) ((x.s_addr >> 0) & 0xff)
>+ );
>+}
>+
> void string_to_enetaddr(const char *addr, uint8_t *enetaddr)
> {
> char *end;
>diff --git a/net/net.c b/net/net.c
>index f47e9fbe33..ca35704f66 100644
>--- a/net/net.c
>+++ b/net/net.c
>@@ -1723,17 +1723,6 @@ int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
> return 1;
> }
>
>-void ip_to_string(struct in_addr x, char *s)
>-{
>- x.s_addr = ntohl(x.s_addr);
>- sprintf(s, "%d.%d.%d.%d",
>- (int) ((x.s_addr >> 24) & 0xff),
>- (int) ((x.s_addr >> 16) & 0xff),
>- (int) ((x.s_addr >> 8) & 0xff),
>- (int) ((x.s_addr >> 0) & 0xff)
>- );
>-}
>-
> void vlan_to_string(ushort x, char *s)
> {
> x = ntohs(x);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-11-08 13:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-08 3:44 [PATCH 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c Adriano Cordova
2024-11-08 6:42 ` Heinrich Schuchardt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox