All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] provide y2038 safe socket constants
@ 2020-03-29  4:16 Vineet Gupta
  2020-03-31 19:24 ` Vineet Gupta
  2020-03-31 19:34 ` Florian Weimer
  0 siblings, 2 replies; 15+ messages in thread
From: Vineet Gupta @ 2020-03-29  4:16 UTC (permalink / raw)
  To: libc-alpha
  Cc: Stepan Golosunov, Vineet Gupta, linux-snps-arc, Alistair Francis,
	Lukasz Majewski

These will be used by upcoming RV32 and ARC ports and any future ports

Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
---
 sysdeps/unix/sysv/linux/bits/socket-constants.h | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/sysdeps/unix/sysv/linux/bits/socket-constants.h b/sysdeps/unix/sysv/linux/bits/socket-constants.h
index 9dcc19cd5380..8a48ae7d0ca2 100644
--- a/sysdeps/unix/sysv/linux/bits/socket-constants.h
+++ b/sysdeps/unix/sysv/linux/bits/socket-constants.h
@@ -20,6 +20,8 @@
 # error "Never include <bits/socket-constants.h> directly; use <sys/socket.h> instead."
 #endif
 
+#include <bits/timesize.h>
+
 #define SOL_SOCKET 1
 #define SO_ACCEPTCONN 30
 #define SO_BROADCAST 6
@@ -30,9 +32,17 @@
 #define SO_OOBINLINE 10
 #define SO_RCVBUF 8
 #define SO_RCVLOWAT 18
-#define SO_RCVTIMEO 20
+#if __TIMESIZE == 64 && __WORDSIZE == 32
+# define SO_RCVTIMEO 66
+#else
+# define SO_RCVTIMEO 20
+#endif
 #define SO_REUSEADDR 2
 #define SO_SNDBUF 7
 #define SO_SNDLOWAT 19
-#define SO_SNDTIMEO 21
+#if __TIMESIZE == 64 && __WORDSIZE == 32
+# define SO_SNDTIMEO 67
+#else
+# define SO_SNDTIMEO 21
+#endif
 #define SO_TYPE 3
-- 
2.20.1


_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-29  4:16 [PATCH] provide y2038 safe socket constants Vineet Gupta
@ 2020-03-31 19:24 ` Vineet Gupta
  2020-03-31 19:34 ` Florian Weimer
  1 sibling, 0 replies; 15+ messages in thread
From: Vineet Gupta @ 2020-03-31 19:24 UTC (permalink / raw)
  To: libc-alpha
  Cc: Stepan Golosunov, linux-snps-arc, Alistair Francis, Lukasz Majewski

ping !

On 3/28/20 9:16 PM, Vineet Gupta wrote:
> These will be used by upcoming RV32 and ARC ports and any future ports
> 
> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
> ---
>  sysdeps/unix/sysv/linux/bits/socket-constants.h | 14 ++++++++++++--
>  1 file changed, 12 insertions(+), 2 deletions(-)
> 
> diff --git a/sysdeps/unix/sysv/linux/bits/socket-constants.h b/sysdeps/unix/sysv/linux/bits/socket-constants.h
> index 9dcc19cd5380..8a48ae7d0ca2 100644
> --- a/sysdeps/unix/sysv/linux/bits/socket-constants.h
> +++ b/sysdeps/unix/sysv/linux/bits/socket-constants.h
> @@ -20,6 +20,8 @@
>  # error "Never include <bits/socket-constants.h> directly; use <sys/socket.h> instead."
>  #endif
>  
> +#include <bits/timesize.h>
> +
>  #define SOL_SOCKET 1
>  #define SO_ACCEPTCONN 30
>  #define SO_BROADCAST 6
> @@ -30,9 +32,17 @@
>  #define SO_OOBINLINE 10
>  #define SO_RCVBUF 8
>  #define SO_RCVLOWAT 18
> -#define SO_RCVTIMEO 20
> +#if __TIMESIZE == 64 && __WORDSIZE == 32
> +# define SO_RCVTIMEO 66
> +#else
> +# define SO_RCVTIMEO 20
> +#endif
>  #define SO_REUSEADDR 2
>  #define SO_SNDBUF 7
>  #define SO_SNDLOWAT 19
> -#define SO_SNDTIMEO 21
> +#if __TIMESIZE == 64 && __WORDSIZE == 32
> +# define SO_SNDTIMEO 67
> +#else
> +# define SO_SNDTIMEO 21
> +#endif
>  #define SO_TYPE 3
> 

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-29  4:16 [PATCH] provide y2038 safe socket constants Vineet Gupta
  2020-03-31 19:24 ` Vineet Gupta
@ 2020-03-31 19:34 ` Florian Weimer
  2020-03-31 20:02   ` Vineet Gupta
  2020-03-31 20:45   ` Joseph Myers
  1 sibling, 2 replies; 15+ messages in thread
From: Florian Weimer @ 2020-03-31 19:34 UTC (permalink / raw)
  To: Vineet Gupta via Libc-alpha
  Cc: Stepan Golosunov, Vineet Gupta, linux-snps-arc, Alistair Francis

* Vineet Gupta via Libc-alpha:

> These will be used by upcoming RV32 and ARC ports and any future ports
>
> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
> ---
>  sysdeps/unix/sysv/linux/bits/socket-constants.h | 14 ++++++++++++--
>  1 file changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/sysdeps/unix/sysv/linux/bits/socket-constants.h b/sysdeps/unix/sysv/linux/bits/socket-constants.h
> index 9dcc19cd5380..8a48ae7d0ca2 100644
> --- a/sysdeps/unix/sysv/linux/bits/socket-constants.h
> +++ b/sysdeps/unix/sysv/linux/bits/socket-constants.h

What about the parallel changes to the sysdeps overrides?  I would
expect changes for hppa, mips, powerpc.  (Not sure about the alpha
situation.)

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-31 19:34 ` Florian Weimer
@ 2020-03-31 20:02   ` Vineet Gupta
  2020-03-31 20:18     ` Florian Weimer
  2020-03-31 20:45   ` Joseph Myers
  1 sibling, 1 reply; 15+ messages in thread
From: Vineet Gupta @ 2020-03-31 20:02 UTC (permalink / raw)
  To: Florian Weimer
  Cc: Stepan Golosunov, Vineet Gupta, linux-snps-arc, Alistair Francis

On 3/31/20 12:34 PM, Florian Weimer wrote:
> What about the parallel changes to the sysdeps overrides? I would> expect changes for hppa, mips, powerpc.  (Not sure about the alpha
> situation.)

This patch fixes the existing/future asm-generic ABI enabled arches and the ones
you refer to are not. So IMHO that would be a separate patch if at all.

But if they do need fixing, I'm all up for it - except that I'm not sure if their
ABI is changing too. Which brings us (me) to a fundamental question, how are those
arches going to be made y2038 safe (me goes and reads the big wiki page)

Thx,
-Vineet


_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-31 20:02   ` Vineet Gupta
@ 2020-03-31 20:18     ` Florian Weimer
  2020-03-31 20:28       ` Vineet Gupta
  0 siblings, 1 reply; 15+ messages in thread
From: Florian Weimer @ 2020-03-31 20:18 UTC (permalink / raw)
  To: Vineet Gupta; +Cc: Stepan Golosunov, linux-snps-arc, Alistair Francis

* Vineet Gupta:

> On 3/31/20 12:34 PM, Florian Weimer wrote:
>> What about the parallel changes to the sysdeps overrides? I would> expect changes for hppa, mips, powerpc.  (Not sure about the alpha
>> situation.)
>
> This patch fixes the existing/future asm-generic ABI enabled arches
> and the ones you refer to are not. So IMHO that would be a separate
> patch if at all.

Ahh, I think the commit message could make this clearer (although it
it's somewhat implied).  The commit message also lacks a period at the
end.

But is the conditional correct for x32?  It has to be keep using the
old macro definitions.

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-31 20:18     ` Florian Weimer
@ 2020-03-31 20:28       ` Vineet Gupta
  0 siblings, 0 replies; 15+ messages in thread
From: Vineet Gupta @ 2020-03-31 20:28 UTC (permalink / raw)
  To: Florian Weimer
  Cc: Stepan Golosunov, libc-alpha @ sourceware . org, linux-snps-arc,
	Alistair Francis

+CC libc-alpha which got lost in the thread.

On 3/31/20 1:18 PM, Florian Weimer wrote:
> * Vineet Gupta:
> 
>> On 3/31/20 12:34 PM, Florian Weimer wrote:
>>> What about the parallel changes to the sysdeps overrides? I would> expect changes for hppa, mips, powerpc.  (Not sure about the alpha
>>> situation.)
>>
>> This patch fixes the existing/future asm-generic ABI enabled arches
>> and the ones you refer to are not. So IMHO that would be a separate
>> patch if at all.
> 
> Ahh, I think the commit message could make this clearer (although it
> it's somewhat implied). 

Sure I can make it more explicit.

> The commit message also lacks a period at the
> end.

Will fix for v2.

> But is the conditional correct for x32?  It has to be keep using the
> old macro definitions.

I was not sure as some of the other patches in area don't seem to do that. Hence I
CC'ed Stephan who had earlier commented on x32.


_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-31 19:34 ` Florian Weimer
  2020-03-31 20:02   ` Vineet Gupta
@ 2020-03-31 20:45   ` Joseph Myers
  2020-03-31 21:00     ` Vineet Gupta
  1 sibling, 1 reply; 15+ messages in thread
From: Joseph Myers @ 2020-03-31 20:45 UTC (permalink / raw)
  To: Florian Weimer
  Cc: Stepan Golosunov, Alistair Francis, Vineet Gupta, linux-snps-arc,
	Vineet Gupta via Libc-alpha

On Tue, 31 Mar 2020, Florian Weimer wrote:

> What about the parallel changes to the sysdeps overrides?  I would
> expect changes for hppa, mips, powerpc.  (Not sure about the alpha
> situation.)

This fix is only about the case where the *default* ABI in glibc requires 
these different values.

The header will need further changes (to use a conditional not based on 
__TIMESIZE) when _TIME_BITS=64 is supported on platforms that currently 
have 32-bit time_t.  That's the point at which changes for other 
architectures are needed - once we have an appropriate conditional for 
"the current compilation uses 64-bit time but kernel long is 32-bit" (or 
something like that).

I'm concerned the present patch is wrong for x32, however; that has 
__TIMESIZE == 64 && __WORDSIZE == 32 but should use the old values; the 
patch should be using __SYSCALL_WORDSIZE when available in place of 
__WORDSIZE.

-- 
Joseph S. Myers
joseph@codesourcery.com

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-31 20:45   ` Joseph Myers
@ 2020-03-31 21:00     ` Vineet Gupta
  2020-03-31 21:22       ` Joseph Myers
  0 siblings, 1 reply; 15+ messages in thread
From: Vineet Gupta @ 2020-03-31 21:00 UTC (permalink / raw)
  To: Joseph Myers, Florian Weimer
  Cc: Stepan Golosunov, Vineet Gupta via Libc-alpha, linux-snps-arc,
	Alistair Francis

On 3/31/20 1:45 PM, Joseph Myers wrote:
> I'm concerned the present patch is wrong for x32, however; that has 
> __TIMESIZE == 64 && __WORDSIZE == 32 but should use the old values; the 
> patch should be using __SYSCALL_WORDSIZE when available in place of 
> __WORDSIZE.

Something like below ?

-#if __TIMESIZE == 64 && __WORDSIZE == 32

+#if TIMESIZE == 64 && (__WORDSIZE == 32 \
     && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))

Also is it ok to littler the code (multiple times, this patch and else where) with
this or should we define a new __32BIT_ARCH_NOT_X32 or some such ?
_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH] provide y2038 safe socket constants
  2020-03-31 21:00     ` Vineet Gupta
@ 2020-03-31 21:22       ` Joseph Myers
  2020-03-31 21:32         ` [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI Vineet Gupta
  0 siblings, 1 reply; 15+ messages in thread
From: Joseph Myers @ 2020-03-31 21:22 UTC (permalink / raw)
  To: Vineet Gupta
  Cc: Stepan Golosunov, linux-snps-arc, Alistair Francis,
	Florian Weimer, Vineet Gupta via Libc-alpha

On Tue, 31 Mar 2020, Vineet Gupta via Libc-alpha wrote:

> On 3/31/20 1:45 PM, Joseph Myers wrote:
> > I'm concerned the present patch is wrong for x32, however; that has 
> > __TIMESIZE == 64 && __WORDSIZE == 32 but should use the old values; the 
> > patch should be using __SYSCALL_WORDSIZE when available in place of 
> > __WORDSIZE.
> 
> Something like below ?
> 
> -#if __TIMESIZE == 64 && __WORDSIZE == 32
> 
> +#if TIMESIZE == 64 && (__WORDSIZE == 32 \
>      && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))

Yes, that sort of thing.

-- 
Joseph S. Myers
joseph@codesourcery.com

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI
  2020-03-31 21:22       ` Joseph Myers
@ 2020-03-31 21:32         ` Vineet Gupta
  2020-04-06 18:55           ` Vineet Gupta
  2020-04-17 23:20           ` Joseph Myers
  0 siblings, 2 replies; 15+ messages in thread
From: Vineet Gupta @ 2020-03-31 21:32 UTC (permalink / raw)
  To: libc-alpha
  Cc: Stepan Golosunov, Vineet Gupta, linux-snps-arc, Alistair Francis

These will be used by upcoming RV32 and ARC ports and any future ports.

Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
---
This is a straight copy of code originally written by Alistair, hence
adding his SOB as well
---
 sysdeps/unix/sysv/linux/bits/socket-constants.h | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/sysdeps/unix/sysv/linux/bits/socket-constants.h b/sysdeps/unix/sysv/linux/bits/socket-constants.h
index 9dcc19cd5380..d02e1cbc7cf1 100644
--- a/sysdeps/unix/sysv/linux/bits/socket-constants.h
+++ b/sysdeps/unix/sysv/linux/bits/socket-constants.h
@@ -20,6 +20,8 @@
 # error "Never include <bits/socket-constants.h> directly; use <sys/socket.h> instead."
 #endif
 
+#include <bits/timesize.h>
+
 #define SOL_SOCKET 1
 #define SO_ACCEPTCONN 30
 #define SO_BROADCAST 6
@@ -30,9 +32,19 @@
 #define SO_OOBINLINE 10
 #define SO_RCVBUF 8
 #define SO_RCVLOWAT 18
-#define SO_RCVTIMEO 20
+#if (__TIMESIZE == 64 && __WORDSIZE == 32 \
+     && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))
+# define SO_RCVTIMEO 66
+#else
+# define SO_RCVTIMEO 20
+#endif
 #define SO_REUSEADDR 2
 #define SO_SNDBUF 7
 #define SO_SNDLOWAT 19
-#define SO_SNDTIMEO 21
+#if (__TIMESIZE == 64 && __WORDSIZE == 32 \
+     && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))
+# define SO_SNDTIMEO 67
+#else
+# define SO_SNDTIMEO 21
+#endif
 #define SO_TYPE 3
-- 
2.20.1


_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI
  2020-03-31 21:32         ` [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI Vineet Gupta
@ 2020-04-06 18:55           ` Vineet Gupta
  2020-04-13 21:11             ` Vineet Gupta
  2020-04-17 23:20           ` Joseph Myers
  1 sibling, 1 reply; 15+ messages in thread
From: Vineet Gupta @ 2020-04-06 18:55 UTC (permalink / raw)
  To: libc-alpha; +Cc: Stepan Golosunov, linux-snps-arc, Alistair Francis

On 3/31/20 2:32 PM, Vineet Gupta via Libc-alpha wrote:
> These will be used by upcoming RV32 and ARC ports and any future ports.
> 
> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>

ping !

> ---
> This is a straight copy of code originally written by Alistair, hence
> adding his SOB as well
> ---
>  sysdeps/unix/sysv/linux/bits/socket-constants.h | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/sysdeps/unix/sysv/linux/bits/socket-constants.h b/sysdeps/unix/sysv/linux/bits/socket-constants.h
> index 9dcc19cd5380..d02e1cbc7cf1 100644
> --- a/sysdeps/unix/sysv/linux/bits/socket-constants.h
> +++ b/sysdeps/unix/sysv/linux/bits/socket-constants.h
> @@ -20,6 +20,8 @@
>  # error "Never include <bits/socket-constants.h> directly; use <sys/socket.h> instead."
>  #endif
>  
> +#include <bits/timesize.h>
> +
>  #define SOL_SOCKET 1
>  #define SO_ACCEPTCONN 30
>  #define SO_BROADCAST 6
> @@ -30,9 +32,19 @@
>  #define SO_OOBINLINE 10
>  #define SO_RCVBUF 8
>  #define SO_RCVLOWAT 18
> -#define SO_RCVTIMEO 20
> +#if (__TIMESIZE == 64 && __WORDSIZE == 32 \
> +     && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))
> +# define SO_RCVTIMEO 66
> +#else
> +# define SO_RCVTIMEO 20
> +#endif
>  #define SO_REUSEADDR 2
>  #define SO_SNDBUF 7
>  #define SO_SNDLOWAT 19
> -#define SO_SNDTIMEO 21
> +#if (__TIMESIZE == 64 && __WORDSIZE == 32 \
> +     && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))
> +# define SO_SNDTIMEO 67
> +#else
> +# define SO_SNDTIMEO 21
> +#endif
>  #define SO_TYPE 3
> 

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI
  2020-04-06 18:55           ` Vineet Gupta
@ 2020-04-13 21:11             ` Vineet Gupta
  0 siblings, 0 replies; 15+ messages in thread
From: Vineet Gupta @ 2020-04-13 21:11 UTC (permalink / raw)
  To: libc-alpha; +Cc: Stepan Golosunov, linux-snps-arc, Alistair Francis

On 4/6/20 11:55 AM, Vineet Gupta via Libc-alpha wrote:
> On 3/31/20 2:32 PM, Vineet Gupta via Libc-alpha wrote:
>> These will be used by upcoming RV32 and ARC ports and any future ports.
>>
>> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
>> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
> 
> ping !

ping ^2 !

> 
>> ---
>> This is a straight copy of code originally written by Alistair, hence
>> adding his SOB as well
>> ---
>>  sysdeps/unix/sysv/linux/bits/socket-constants.h | 16 ++++++++++++++--
>>  1 file changed, 14 insertions(+), 2 deletions(-)
>>
>> diff --git a/sysdeps/unix/sysv/linux/bits/socket-constants.h b/sysdeps/unix/sysv/linux/bits/socket-constants.h
>> index 9dcc19cd5380..d02e1cbc7cf1 100644
>> --- a/sysdeps/unix/sysv/linux/bits/socket-constants.h
>> +++ b/sysdeps/unix/sysv/linux/bits/socket-constants.h
>> @@ -20,6 +20,8 @@
>>  # error "Never include <bits/socket-constants.h> directly; use <sys/socket.h> instead."
>>  #endif
>>  
>> +#include <bits/timesize.h>
>> +
>>  #define SOL_SOCKET 1
>>  #define SO_ACCEPTCONN 30
>>  #define SO_BROADCAST 6
>> @@ -30,9 +32,19 @@
>>  #define SO_OOBINLINE 10
>>  #define SO_RCVBUF 8
>>  #define SO_RCVLOWAT 18
>> -#define SO_RCVTIMEO 20
>> +#if (__TIMESIZE == 64 && __WORDSIZE == 32 \
>> +     && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))
>> +# define SO_RCVTIMEO 66
>> +#else
>> +# define SO_RCVTIMEO 20
>> +#endif
>>  #define SO_REUSEADDR 2
>>  #define SO_SNDBUF 7
>>  #define SO_SNDLOWAT 19
>> -#define SO_SNDTIMEO 21
>> +#if (__TIMESIZE == 64 && __WORDSIZE == 32 \
>> +     && (!defined __SYSCALL_WORDSIZE || __SYSCALL_WORDSIZE == 32))
>> +# define SO_SNDTIMEO 67
>> +#else
>> +# define SO_SNDTIMEO 21
>> +#endif
>>  #define SO_TYPE 3
>>
> 

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI
  2020-03-31 21:32         ` [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI Vineet Gupta
  2020-04-06 18:55           ` Vineet Gupta
@ 2020-04-17 23:20           ` Joseph Myers
  2020-04-18  0:03             ` Vineet Gupta
  2020-04-19 20:35             ` Vineet Gupta
  1 sibling, 2 replies; 15+ messages in thread
From: Joseph Myers @ 2020-04-17 23:20 UTC (permalink / raw)
  To: Vineet Gupta
  Cc: Stepan Golosunov, Alistair Francis, linux-snps-arc, libc-alpha

This patch is OK.

-- 
Joseph S. Myers
joseph@codesourcery.com

_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI
  2020-04-17 23:20           ` Joseph Myers
@ 2020-04-18  0:03             ` Vineet Gupta
  2020-04-19 20:35             ` Vineet Gupta
  1 sibling, 0 replies; 15+ messages in thread
From: Vineet Gupta @ 2020-04-18  0:03 UTC (permalink / raw)
  To: Joseph Myers
  Cc: Stepan Golosunov, libc-alpha, linux-snps-arc, Alistair Francis

On 4/17/20 4:20 PM, Joseph Myers wrote:
> This patch is OK.

For commit now ?
_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

* Re: [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI
  2020-04-17 23:20           ` Joseph Myers
  2020-04-18  0:03             ` Vineet Gupta
@ 2020-04-19 20:35             ` Vineet Gupta
  1 sibling, 0 replies; 15+ messages in thread
From: Vineet Gupta @ 2020-04-19 20:35 UTC (permalink / raw)
  To: Joseph Myers
  Cc: Stepan Golosunov, libc-alpha, linux-snps-arc, Alistair Francis

On 4/17/20 4:20 PM, Joseph Myers wrote:
> This patch is OK.
> 

pushed !

Thx,
-vineet
_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc

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

end of thread, other threads:[~2020-04-19 20:35 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-29  4:16 [PATCH] provide y2038 safe socket constants Vineet Gupta
2020-03-31 19:24 ` Vineet Gupta
2020-03-31 19:34 ` Florian Weimer
2020-03-31 20:02   ` Vineet Gupta
2020-03-31 20:18     ` Florian Weimer
2020-03-31 20:28       ` Vineet Gupta
2020-03-31 20:45   ` Joseph Myers
2020-03-31 21:00     ` Vineet Gupta
2020-03-31 21:22       ` Joseph Myers
2020-03-31 21:32         ` [PATCH v2] provide y2038 safe socket constants for default/asm-generic ABI Vineet Gupta
2020-04-06 18:55           ` Vineet Gupta
2020-04-13 21:11             ` Vineet Gupta
2020-04-17 23:20           ` Joseph Myers
2020-04-18  0:03             ` Vineet Gupta
2020-04-19 20:35             ` Vineet Gupta

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.