From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25840 invoked by alias); 24 Oct 2012 20:28:10 -0000 Received: (qmail 25825 invoked by uid 22791); 24 Oct 2012 20:28:08 -0000 X-SWARE-Spam-Status: No, hits=-9.1 required=5.0 tests=AWL,BAYES_00,KHOP_PGP_SIGNED,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 24 Oct 2012 20:28:04 +0000 Received: from vapier.localnet (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 8558933D8BA; Wed, 24 Oct 2012 20:28:03 +0000 (UTC) From: Mike Frysinger To: Andreas Jaeger Subject: Re: Patch: Convert ia64 to use Date: Wed, 24 Oct 2012 20:28:00 -0000 User-Agent: KMail/1.13.7 (Linux/3.6.3; KDE/4.6.5; x86_64; ; ) Cc: "libc-ports@sourceware.org" References: <50883CBE.60805@suse.com> In-Reply-To: <50883CBE.60805@suse.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1582117.fO2Os4Jv75"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <201210241628.04405.vapier@gentoo.org> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-10/txt/msg00078.txt.bz2 --nextPart1582117.fO2Os4Jv75 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-length: 814 On Wednesday 24 October 2012 15:08:46 Andreas Jaeger wrote: > #define F_GETLK 5 /* Get record locking info. */ > #define F_SETLK 6 /* Set record locking info (non-blocking). */ > #define F_SETLKW 7 /* Set record locking info (blocking). */ pretty sure these three can get deleted too > #define F_SETLK64 6 /* Set record locking info (non-blocking). */ > #define F_SETLKW64 7 /* Set record locking info (blocking). */ for these three, i wonder if we could make bits/fcntl-linux.h smarter. like: #ifndef F_GETLK64 # if __O_LARGEFILE # else # endif #endif we'd have to tweak the logic so F_GETLK also does: #ifndef F_GETLK # if !defined __USE_FILE_OFFSET64 && __O_LARGEFILE ... the rest looks fine -mike --nextPart1582117.fO2Os4Jv75 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. Content-length: 836 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (GNU/Linux) iQIcBAABAgAGBQJQiE9UAAoJEEFjO5/oN/WBMCkQANGpqWr91cLqozoSfw3/hoTR RfjoOmZBybFa3vAWOOQ3VUJIOXCy0cVZyZNihpLGrpXMuh3aRuMZZGcZfJUoiEYf bfHxuvUVANcNSdl0/0aIqfAcXlyo0bpA8o9NUT87bmmR4kjh4rPa2QgygiH4wnLb s2CVvan+arV6T67NxGH3/6ue9A8KpJN5VgfQma3p06loz2KsJ0m7TaS+dG6Q033k MxVr6aDxemc7vZGKU8nI5A02q9Z0d12oqU8+dljzOFk3M91yIZJ9gapSRewU7w7y kr0S7mwR01RS5en+teLHmmH8lcP4/rN7xrHagiR13jpcW3WJBqVvduBQEfll1D+D +QGpqFgvGsOEf2VS1+1yvADYkfzvgAn+pZTjlSOAyOPGfF1CwJZlK98OAI8bkJJL VLy43YdW+VJQbUJ5kLsljceV4Hkw5zaBDclITvJlVN8mMUcsKWG7Ut4c7Awrkf1R scAneaoAzlzd6aZaLsWaH2HwP0qVA5aNbcTc+QhKvmP/R/dn5DBOEZDIK5fmQ45t 5AUL6KofoJ6V0npIRMzUHcW3igR2Dlb1yqmjPwACmUBrB3AAmytqemQaGb45SrAM 5df4xNGGqZDdRwmAE81ESMdPQOr4D3e9ADN7BjXIqUq3MxfGDf3aLcn9+iXqhhut yQuQT1DoWTZGzTHmj9ZJ =wEbe -----END PGP SIGNATURE----- --nextPart1582117.fO2Os4Jv75--