public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/29403] New: st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile
@ 2022-07-25  9:31 arnout at mind dot be
  2022-07-25  9:55 ` [Bug libc/29403] " arnout at mind dot be
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: arnout at mind dot be @ 2022-07-25  9:31 UTC (permalink / raw)
  To: glibc-bugs

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

            Bug ID: 29403
           Summary: st_atim, st_mtim, st_ctim stat struct members are
                    missing on microblaze with largefile
           Product: glibc
           Version: 2.36
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libc
          Assignee: unassigned at sourceware dot org
          Reporter: arnout at mind dot be
                CC: drepper.fsp at gmail dot com
  Target Milestone: ---

Created attachment 14230
  --> https://sourceware.org/bugzilla/attachment.cgi?id=14230&action=edit
Make struct stat posix conformant on microblaze with __USE_FILE_OFFSET64

Commit a06b40cdf5ba0d2ab4f9b4c77d21e45ff284fac7 updated stat.h to use
__USE_XOPEN2K8 instead of __USE_MISC to add the st_atim, st_mtim and
st_ctim members to struct stat. However, for microblaze, there are two
definitions of struct stat, depending on the __USE_FILE_OFFSET64 macro.
The second one was not updated.

Fix attached.

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

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

* [Bug libc/29403] st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile
  2022-07-25  9:31 [Bug libc/29403] New: st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile arnout at mind dot be
@ 2022-07-25  9:55 ` arnout at mind dot be
  2022-07-25  9:56 ` arnout at mind dot be
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: arnout at mind dot be @ 2022-07-25  9:55 UTC (permalink / raw)
  To: glibc-bugs

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

Arnout Vandecappelle <arnout at mind dot be> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #14230|0                           |1
        is obsolete|                            |

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

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

* [Bug libc/29403] st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile
  2022-07-25  9:31 [Bug libc/29403] New: st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile arnout at mind dot be
  2022-07-25  9:55 ` [Bug libc/29403] " arnout at mind dot be
@ 2022-07-25  9:56 ` arnout at mind dot be
  2022-07-25  9:56 ` arnout at mind dot be
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: arnout at mind dot be @ 2022-07-25  9:56 UTC (permalink / raw)
  To: glibc-bugs

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

--- Comment #1 from Arnout Vandecappelle <arnout at mind dot be> ---
Created attachment 14231
  --> https://sourceware.org/bugzilla/attachment.cgi?id=14231&action=edit
Make struct stat posix conformant on microblaze with __USE_FILE_OFFSET64

Original patch was based on an old branch - rebased it on master.

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

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

* [Bug libc/29403] st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile
  2022-07-25  9:31 [Bug libc/29403] New: st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile arnout at mind dot be
  2022-07-25  9:55 ` [Bug libc/29403] " arnout at mind dot be
  2022-07-25  9:56 ` arnout at mind dot be
@ 2022-07-25  9:56 ` arnout at mind dot be
  2022-07-25 14:05 ` adhemerval.zanella at linaro dot org
  2022-07-25 14:08 ` adhemerval.zanella at linaro dot org
  4 siblings, 0 replies; 6+ messages in thread
From: arnout at mind dot be @ 2022-07-25  9:56 UTC (permalink / raw)
  To: glibc-bugs

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

Arnout Vandecappelle <arnout at mind dot be> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |arnout at mind dot be

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

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

* [Bug libc/29403] st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile
  2022-07-25  9:31 [Bug libc/29403] New: st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile arnout at mind dot be
                   ` (2 preceding siblings ...)
  2022-07-25  9:56 ` arnout at mind dot be
@ 2022-07-25 14:05 ` adhemerval.zanella at linaro dot org
  2022-07-25 14:08 ` adhemerval.zanella at linaro dot org
  4 siblings, 0 replies; 6+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-07-25 14:05 UTC (permalink / raw)
  To: glibc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
                 CC|                            |adhemerval.zanella at linaro dot o
                   |                            |rg
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2022-07-25

--- Comment #2 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
Thanks for cathing it, I will install it.

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

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

* [Bug libc/29403] st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile
  2022-07-25  9:31 [Bug libc/29403] New: st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile arnout at mind dot be
                   ` (3 preceding siblings ...)
  2022-07-25 14:05 ` adhemerval.zanella at linaro dot org
@ 2022-07-25 14:08 ` adhemerval.zanella at linaro dot org
  4 siblings, 0 replies; 6+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-07-25 14:08 UTC (permalink / raw)
  To: glibc-bugs

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

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

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

--- Comment #3 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] 6+ messages in thread

end of thread, other threads:[~2022-07-25 14:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-25  9:31 [Bug libc/29403] New: st_atim, st_mtim, st_ctim stat struct members are missing on microblaze with largefile arnout at mind dot be
2022-07-25  9:55 ` [Bug libc/29403] " arnout at mind dot be
2022-07-25  9:56 ` arnout at mind dot be
2022-07-25  9:56 ` arnout at mind dot be
2022-07-25 14:05 ` adhemerval.zanella at linaro dot org
2022-07-25 14:08 ` 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).