From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24316 invoked by alias); 21 May 2015 16:23:45 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 24301 invoked by uid 89); 21 May 2015 16:23:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Date: Thu, 21 May 2015 17:39:00 -0000 From: Siddhesh Poyarekar To: Szabolcs Nagy Cc: Joseph Myers , "Carlos O'Donell" , GNU C Library , Marcus Shawcroft , Ramana Radhakrishnan Subject: Re: [PATCH][BZ 18234] struct stat is not posix conform Message-ID: <20150521162331.GY15498@spoyarek.pnq.redhat.com> References: <555CA657.2050300@arm.com> <555CB539.4090208@redhat.com> <555CCA76.2010605@arm.com> <20150521042934.GM15498@spoyarek.pnq.redhat.com> <555E04B0.1020801@arm.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8p/3hdGJBHAENZPK" Content-Disposition: inline In-Reply-To: <555E04B0.1020801@arm.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-05/txt/msg00501.txt.bz2 --8p/3hdGJBHAENZPK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-length: 6822 On Thu, May 21, 2015 at 05:15:44PM +0100, Szabolcs Nagy wrote: > On 21/05/15 05:29, Siddhesh Poyarekar wrote: > > On Wed, May 20, 2015 at 06:55:02PM +0100, Szabolcs Nagy wrote: > >> i guess it's ok for consistency if i fix struct stat64 > >> too to use __USE_XOPEN2K8. > >> > >> i will run some tests and come back with a patch > >=20 > > I also think it would be appropriate to change this code in other > > architectures (microblaze and nacl IIRC) to make all of them > > consistent. It is a mechanical enough change IMO that all arch > > maintainer acks is not necessary. > >=20 >=20 > here is the patch with consistent __USE_XOPEN2K8 >=20 > ok to commit? >=20 > 2015-05-21 Szabolcs Nagy >=20 > [BZ #18234] > * conform/data/sys/stat.h-data (struct stat): Add tests for st_atim, > st_mtim and st_ctim members. >=20 > * sysdeps/nacl/bits/stat.h (struct stat, struct stat64): Make > st_atim, st_ctim, st_mtim visible under __USE_XOPEN2K8 only. >=20 > * sysdeps/unix/sysv/linux/generic/bits/stat.h (struct stat,): > (struct stat64): Likewise. >=20 > * sysdeps/unix/sysv/linux/ia64/bits/stat.h (struct stat,): > (struct stat64): Likewise. >=20 > * sysdeps/unix/sysv/linux/microblaze/bits/stat.h (struct stat,): > (struct stat64): Likewise. The Changelog entry lines should not have the extra newlines. Looks fine to me other than that. It doesn't look like you have commit access, so I'll commit it tomorrow for you. Siddhesh > diff --git a/conform/data/sys/stat.h-data b/conform/data/sys/stat.h-data > index 631daa4..f5b17a3 100644 > --- a/conform/data/sys/stat.h-data > +++ b/conform/data/sys/stat.h-data > @@ -39,6 +39,11 @@ element {struct stat} off_t st_size > element {struct stat} time_t st_atime > element {struct stat} time_t st_mtime > element {struct stat} time_t st_ctime > +#if defined XOPEN2K8 || defined POSIX2008 > +element {struct stat} {struct timespec} st_atim > +element {struct stat} {struct timespec} st_mtim > +element {struct stat} {struct timespec} st_ctim > +#endif > #if !defined POSIX && !defined POSIX2008 > element {struct stat} blksize_t st_blksize > element {struct stat} blkcnt_t st_blocks > diff --git a/sysdeps/nacl/bits/stat.h b/sysdeps/nacl/bits/stat.h > index 0cd3500..9b89b15 100644 > --- a/sysdeps/nacl/bits/stat.h > +++ b/sysdeps/nacl/bits/stat.h > @@ -42,7 +42,7 @@ struct stat > __off_t st_size; /* Size of file, in bytes. */ > __blksize_t st_blksize; /* Optimal block size for I/O. */ > __blkcnt_t st_blocks; /* Number 512-byte blocks allocated. */ > -#if defined __USE_MISC || defined __USE_XOPEN2K8 > +#if defined __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > equivalent to 'struct timespec'. This is the type used > whenever possible but the Unix namespace rules do not allow the > @@ -81,7 +81,7 @@ struct stat64 > __off_t st_size; /* Size of file, in bytes. */ > __blksize_t st_blksize; /* Optimal block size for I/O. */ > __blkcnt_t st_blocks; /* Number 512-byte blocks allocated. */ > -# if defined __USE_MISC || defined __USE_XOPEN2K8 > +# if defined __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > equivalent to 'struct timespec'. This is the type used > whenever possible but the Unix namespace rules do not allow the > diff --git a/sysdeps/unix/sysv/linux/generic/bits/stat.h b/sysdeps/unix/s= ysv/linux/generic/bits/stat.h > index 42cb198..4c32f66 100644 > --- a/sysdeps/unix/sysv/linux/generic/bits/stat.h > +++ b/sysdeps/unix/sysv/linux/generic/bits/stat.h > @@ -66,7 +66,7 @@ struct stat > __blksize_t st_blksize; /* Optimal block size for I/O. */ > int __pad2; > __field64(__blkcnt_t, __blkcnt64_t, st_blocks); /* 512-byte blocks = */ > -#ifdef __USE_MISC > +#ifdef __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > equivalent to 'struct timespec'. This is the type used > whenever possible but the Unix namespace rules do not allow the > @@ -107,7 +107,7 @@ struct stat64 > __blksize_t st_blksize; /* Optimal block size for I/O. */ > int __pad2; > __blkcnt64_t st_blocks; /* Nr. 512-byte blocks allocated. */ > -#ifdef __USE_MISC > +#ifdef __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > equivalent to 'struct timespec'. This is the type used > whenever possible but the Unix namespace rules do not allow the > diff --git a/sysdeps/unix/sysv/linux/ia64/bits/stat.h b/sysdeps/unix/sysv= /linux/ia64/bits/stat.h > index c14cd7b..ed79676 100644 > --- a/sysdeps/unix/sysv/linux/ia64/bits/stat.h > +++ b/sysdeps/unix/sysv/linux/ia64/bits/stat.h > @@ -41,7 +41,7 @@ struct stat > int pad0; > __dev_t st_rdev; /* Device number, if device. */ > __off_t st_size; /* Size of file, in bytes. */ > -#ifdef __USE_MISC > +#ifdef __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > equivalent to 'struct timespec'. This is the type used > whenever possible but the Unix namespace rules do not allow the > @@ -80,7 +80,7 @@ struct stat64 > int pad0; > __dev_t st_rdev; /* Device number, if device. */ > __off_t st_size; /* Size of file, in bytes. */ > -#ifdef __USE_MISC > +#ifdef __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > equivalent to 'struct timespec'. This is the type used > whenever possible but the Unix namespace rules do not allow the > diff --git a/sysdeps/unix/sysv/linux/microblaze/bits/stat.h b/sysdeps/uni= x/sysv/linux/microblaze/bits/stat.h > index d45b275..df2d306 100644 > --- a/sysdeps/unix/sysv/linux/microblaze/bits/stat.h > +++ b/sysdeps/unix/sysv/linux/microblaze/bits/stat.h > @@ -50,7 +50,7 @@ struct stat > __blksize_t st_blksize; /* Optimal block size for I/O. */ > int __pad3; > __blkcnt_t st_blocks; /* Number 512-byte blocks allocated.= */ > -#ifdef __USE_MISC > +#ifdef __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > * equivalent to 'struct timespec'. This is the type used > * whenever possible but the Unix namespace rules do not allow t= he > @@ -135,7 +135,7 @@ struct stat64 > __blksize_t st_blksize; /* Optimal block size for I/= O. */ > int __pad3; > __blkcnt64_t st_blocks; /* Number 512-byte blocks al= located. */ > -#ifdef __USE_MISC > +#ifdef __USE_XOPEN2K8 > /* Nanosecond resolution timestamps are stored in a format > * equivalent to 'struct timespec'. This is the type used > * whenever possible but the Unix namespace rules do not allow t= he --8p/3hdGJBHAENZPK Content-Type: application/pgp-signature Content-length: 473 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAEBAgAGBQJVXgaDAAoJEHnEPfvxzyGHxcAH/01DbdOgPiFSivOQfncoOtoA m1oObTWtGYAATIgiHXTKbx5DbswBuSDO3hMHn1RskCQU4E0wSxesAbUew7WCdzX3 wzYR+7NxVyidwi+gm5avSLP33JC855HRBDncDC6Qw1614Yh0UF7MLK8AfAbwU7Nz K7ryNkHXM3QvxEyYTtvP0oJFAE74k2OORweshWJp3h9q3NPJ24PtRYlEukD1yAqB zAvISR+mRXPTpfIxqeSTh0RPPpYHBC7nbqW7Ovqx+vGz9ZVUxFEH3RhN7CGDSptB sMy36gvWRQGtKdQVjRV1zCfeCQ+/I8Rrt5zNY2iQvMhu5qwNuHmZg5BF+krrnnU= =tZqu -----END PGP SIGNATURE----- --8p/3hdGJBHAENZPK--