mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Only define loff_t for __USE_MISC (bug 14553).
Bug 14553 reports that sys/types.h defines loff_t unconditionally, despite it not being part of any supported standard. This is permitted by the POSIX *_t reservation, but as a quality-of-implementation issue it's still best not to define it except for __USE_MISC. This patch conditions the definition accordingly, updating a macro in sysdeps/unix/sysv/linux/sys/quota.h to use __loff_t so it still works even if __USE_MISC is not defined. codesearch.debian.net suggests there are quite a lot of loff_t uses outside glibc, but it might well make sense to change all (few) uses of loff_t or __loff_t inside glibc to use off64_t or __off64_t instead, leaving only the definitions, treating this name as obsolescent. Tested for x86_64. [BZ #14553] * posix/sys/types.h (loff_t): Only define for [__USE_MISC]. * sysdeps/unix/sysv/linux/sys/quota.h (dqoff): Use __loff_t instead of loff_t.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2018-02-06 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
[BZ #14553]
|
||||||
|
* posix/sys/types.h (loff_t): Only define for [__USE_MISC].
|
||||||
|
* sysdeps/unix/sysv/linux/sys/quota.h (dqoff): Use __loff_t
|
||||||
|
instead of loff_t.
|
||||||
|
|
||||||
2018-02-06 Florian Weimer <fweimer@redhat.com>
|
2018-02-06 Florian Weimer <fweimer@redhat.com>
|
||||||
|
|
||||||
[BZ #18023]
|
[BZ #18023]
|
||||||
|
@ -39,9 +39,8 @@ typedef __u_quad_t u_quad_t;
|
|||||||
typedef __fsid_t fsid_t;
|
typedef __fsid_t fsid_t;
|
||||||
# define __u_char_defined
|
# define __u_char_defined
|
||||||
# endif
|
# endif
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef __loff_t loff_t;
|
typedef __loff_t loff_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef __ino_t_defined
|
#ifndef __ino_t_defined
|
||||||
# ifndef __USE_FILE_OFFSET64
|
# ifndef __USE_FILE_OFFSET64
|
||||||
|
@ -114,7 +114,7 @@ struct dqblk
|
|||||||
#define dq_btime dq_dqb.dqb_btime
|
#define dq_btime dq_dqb.dqb_btime
|
||||||
#define dq_itime dq_dqb.dqb_itime
|
#define dq_itime dq_dqb.dqb_itime
|
||||||
|
|
||||||
#define dqoff(UID) ((loff_t)((UID) * sizeof (struct dqblk)))
|
#define dqoff(UID) ((__loff_t)((UID) * sizeof (struct dqblk)))
|
||||||
|
|
||||||
/* Old name for struct if_dqinfo. */
|
/* Old name for struct if_dqinfo. */
|
||||||
struct dqinfo
|
struct dqinfo
|
||||||
|
Reference in New Issue
Block a user