search for: y2038

Displaying 20 results from an estimated 24 matches for "y2038".

Did you mean: 2038
2015 May 18
0
[Y2038] kernel/libc uapi changes for y2038
fup2p, this is offtopic for most lists Arnd Bergmann dixit: >It's hard because we don't even know what ioctls are affected at this point, >and I was hoping to get this part merged as a stepping stone in the process >of finding out. Oh okay. >e) ioctls that pass a time value as a 'long' or '__u32' instead of > 'time_t'. Fixing them requires
2015 May 18
2
[Y2038] kernel/libc uapi changes for y2038
On Monday 18 May 2015 12:16:48 Thorsten Glaser wrote: > Arnd Bergmann dixit: > > >In the patch series I posted recently [1], I introduce new system calls to deal > >with modified data structures, but left the question open on how these should > >be best accessed from libc. The patches introduce a new __kernel_time64_t type > > Can we please have ioctls fixed for
2023 Apr 25
0
[PATCH] support for wtmpdb (Y2038 safe wtmp replacement)
Hi, On Linux, glibc is using a 32bit time_t for wtmp and similar structs even on a 64bit system: https://www.thkukuk.de/blog/Y2038_glibc_utmp_64bit/ https://www.thkukuk.de/blog/Y2038_glibc_wtmp_64bit/ Since the glibc developers stated that they don't plan to solve the problem in glibc, but think that this interfaces are legacy and should be removed from glibc (like musl libc, which does not have them), I implemented with...
2015 May 18
0
kernel/libc uapi changes for y2038
Arnd Bergmann dixit: >In the patch series I posted recently [1], I introduce new system calls to deal >with modified data structures, but left the question open on how these should >be best accessed from libc. The patches introduce a new __kernel_time64_t type Can we please have ioctls fixed for mixed 32/64-bit systems such as MIPS (o32/n32/n64) and x86 (i386/x32/amd64) first, before
2015 May 27
0
kernel/libc uapi changes for y2038
On 05/18/2015 02:53 AM, Arnd Bergmann wrote: > In the patch series I posted recently [1], I introduce new system calls to deal > with modified data structures, but left the question open on how these should > be best accessed from libc. The patches introduce a new __kernel_time64_t type > and based on that five new data structured: struct __kernel_timespec, > struct
2015 May 18
5
kernel/libc uapi changes for y2038
..._KERNEL_TIME_BITS == 64: struct __old_kernel_timespec based on 32-bit __kernel_time_t struct timespec based on 64-bit __kernel_time64_t Would this work for everyone? Any alternative suggestions? Arnd [1] http://git.kernel.org/cgit/linux/kernel/git/arnd/playground.git/log/?h=y2038-syscalls https://lwn.net/Articles/643407/ diff --git a/include/uapi/asm-generic/bitsperlong.h b/include/uapi/asm-generic/bitsperlong.h index 23e6c416b85f..ecdaf4f77f35 100644 --- a/include/uapi/asm-generic/bitsperlong.h +++ b/include/uapi/asm-generic/bitsperlong.h @@ -12,4 +12,13 @@ #define _...
2006 May 09
9
Working around the year 2038 bug in Ruby''s Time class?
I would have never imagined that I''d be bitten by the Y2038 bug someday... but it just happened and, trust me, it hurts! I have to deal with a database containing datetime fields with dates up to 2050 and more. ActiveRecord raises an exception because Ruby''s Time class implementation. Besides running Ruby on a 64-bit platform, what can be done t...
2024 Apr 26
0
[Bug 3684] New: regress/key-options.sh: update future key expiry date to far in the future
...rsion: -current Hardware: All OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: Regression tests Assignee: unassigned-bugs at mindrot.org Reporter: alex.kanavin at gmail.com This allows testing Y2038 with system time set to after that (i.e.2040), so that actual Y2038 issues can be exposed, and not masked by key expiry time errors. Proposed patch: https://github.com/openssh/openssh-portable/pull/425 -- You are receiving this mail because: You are watching the assignee of the bug.
2020 Jun 30
0
opusfile 0.12 release
...e streams. - Fix possible divide-by-zero. - Fix issues with seeking in the win32 backend. - Fix an issue where the seek algorithm could be confused by stream data changing between reads. - Clean up compiler and scan-build warnings. - Avoid use of the deprecated ftime() function which has Y2038 problems. - Remove undefined behaviour memcpy(NULL) in op_read_native(). - Visual Studio project files updated for libogg 1.3.4 library name change. - Various build systems updates. - Various integration and testing environment improvements. This release is backward-compatible with the previou...
2004 Dec 14
1
[LLVMdev] __time_t type instead of __time64_t inwin32/TimeValue.cpp
Replace __time_t with time_t in my question. I've compiled function: std::string TimeValue::toString() const { // Alas, asctime is not re-entrant on Windows... //hb: __time64_t ourTime = this->toEpochTime(); time_t ourTime = this->toEpochTime(); //hb: char* buffer = ::asctime(::_localtime64(&ourTime)); char* buffer = ::asctime(::localtime(&ourTime)); std::string
1999 Mar 30
2
Y2K compliance of R
Hi, I was thinking to ask the University computing Labs here to install R and I was told they need a statement that the software (R) is Y2K compliant. Which I cannot find in CRAN. (in addition to the licensing info). Is it a big issue to put such a statement in R? or this has legal implications that R do not want as a "free" software? If possible I would like to see the statement on
2024 Jan 29
1
[Announce] Samba 4.20.0rc1 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Jan 29
1
[Announce] Samba 4.20.0rc1 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Feb 12
0
[Announce] Samba 4.20.0rc2 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Feb 12
0
[Announce] Samba 4.20.0rc2 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Feb 26
0
[Announce] Samba 4.20.0rc3 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Feb 26
0
[Announce] Samba 4.20.0rc3 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Mar 11
0
[Announce] Samba 4.20.0rc4 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Mar 11
0
[Announce] Samba 4.20.0rc4 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? smb3 unix extensions??????????????...
2024 Mar 27
0
[Announce] Samba 4.20.0 Available for Download
...======== Get locally logged on users from utmp ------------------------------------- The Workstation Service Remote Protocol [MS-WKST] calls NetWkstaGetInfo level 102 and NetWkstaEnumUsers level 0 and 1 return the list of locally logged on users. Samba was getting the list from utmp, which is not Y2038 safe. This feature has been completely removed and Samba will always return an empty list. smb.conf changes ================ ? Parameter Name????????????????????????? Description???? Default ? --------------????????????????????????? -----------???? ------- ? acl claims evaluation?????????????...