public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/29208] New: fpathconf(_PC_ASYNC_IO) is not y2038 aware
@ 2022-05-31 15:21 adhemerval.zanella at linaro dot org
  2022-05-31 15:25 ` [Bug libc/29208] " adhemerval.zanella at linaro dot org
  2022-06-01 16:27 ` adhemerval.zanella at linaro dot org
  0 siblings, 2 replies; 3+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-05-31 15:21 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29208

            Bug ID: 29208
           Summary: fpathconf(_PC_ASYNC_IO) is not y2038 aware
           Product: glibc
           Version: 2.34
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
          Assignee: unassigned at sourceware dot org
          Reporter: adhemerval.zanella at linaro dot org
                CC: drepper.fsp at gmail dot com
  Target Milestone: ---

It still uses non-y2038 internal interfaces:

130     case _PC_ASYNC_IO:
131 #ifdef  _POSIX_ASYNC_IO
132       {
133         /* AIO is only allowed on regular files and block devices.  */
134         struct stat64 st;
135 
136         if (__fstat64 (fd, &st) < 0
137             || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
138           return -1;
139         else
140           return 1;
141       }
142 #else
143       return -1;

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug libc/29208] fpathconf(_PC_ASYNC_IO) is not y2038 aware
  2022-05-31 15:21 [Bug libc/29208] New: fpathconf(_PC_ASYNC_IO) is not y2038 aware adhemerval.zanella at linaro dot org
@ 2022-05-31 15:25 ` adhemerval.zanella at linaro dot org
  2022-06-01 16:27 ` adhemerval.zanella at linaro dot org
  1 sibling, 0 replies; 3+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-05-31 15:25 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29208

Adhemerval Zanella <adhemerval.zanella at linaro dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at sourceware dot org   |adhemerval.zanella at linaro dot o
                   |                            |rg

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug libc/29208] fpathconf(_PC_ASYNC_IO) is not y2038 aware
  2022-05-31 15:21 [Bug libc/29208] New: fpathconf(_PC_ASYNC_IO) is not y2038 aware adhemerval.zanella at linaro dot org
  2022-05-31 15:25 ` [Bug libc/29208] " adhemerval.zanella at linaro dot org
@ 2022-06-01 16:27 ` adhemerval.zanella at linaro dot org
  1 sibling, 0 replies; 3+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-06-01 16:27 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29208

Adhemerval Zanella <adhemerval.zanella at linaro dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |2.36
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
Fixed on 2.36.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

end of thread, other threads:[~2022-06-01 16:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-31 15:21 [Bug libc/29208] New: fpathconf(_PC_ASYNC_IO) is not y2038 aware adhemerval.zanella at linaro dot org
2022-05-31 15:25 ` [Bug libc/29208] " adhemerval.zanella at linaro dot org
2022-06-01 16:27 ` adhemerval.zanella at linaro dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).