All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] rtnl: change l_rtnl_address expire times to uint64_t
@ 2022-03-30 19:23 Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2022-03-30 19:23 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 267 bytes --]

Hi James,

On 3/30/22 14:23, James Prestwood wrote:
> These are calculated from uint64_t values so they also should be
> uint64_t sizes.
> ---
>   ell/rtnl.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

Regards,
-Denis

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

* [PATCH] rtnl: change l_rtnl_address expire times to uint64_t
@ 2022-03-30 19:23 James Prestwood
  0 siblings, 0 replies; 2+ messages in thread
From: James Prestwood @ 2022-03-30 19:23 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 567 bytes --]

These are calculated from uint64_t values so they also should be
uint64_t sizes.
---
 ell/rtnl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ell/rtnl.c b/ell/rtnl.c
index afbff9d..f7f36ab 100644
--- a/ell/rtnl.c
+++ b/ell/rtnl.c
@@ -54,8 +54,8 @@ struct l_rtnl_address {
 	char label[IFNAMSIZ];
 	uint32_t preferred_lifetime;
 	uint32_t valid_lifetime;
-	uint32_t preferred_expiry_time;
-	uint32_t valid_expiry_time;
+	uint64_t preferred_expiry_time;
+	uint64_t valid_expiry_time;
 	uint32_t flags;
 };
 
-- 
2.34.1

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

end of thread, other threads:[~2022-03-30 19:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-30 19:23 [PATCH] rtnl: change l_rtnl_address expire times to uint64_t Denis Kenzior
2022-03-30 19:23 James Prestwood

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.