public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] fcntl: define F_GETLK, F_SETLK, F_SETLKW to 64-bit versions if __OFF_T_MATCHES_OFF64_T is enabled
@ 2016-10-11 16:39 Yury Norov
  2016-10-25 21:03 ` Yury Norov
  0 siblings, 1 reply; 2+ messages in thread
From: Yury Norov @ 2016-10-11 16:39 UTC (permalink / raw)
  To: libc-alpha; +Cc: Yury Norov

If __OFF_T_MATCHES_OFF64_T is enabled, the behavior of sys_fcntl should
be the same as if __USE_FILE_OFFSET64 is enabled. This patch adds
required definitions.

Tested with aarch64/lp64 and aarch64/ilp32

	* sysdeps/unix/sysv/linux/bits/fcntl-linux.h: define F_GETLK,
	  F_SETLK, F_SETLKW to 64-bit versions depending on
	  __OFF_T_MATCHES_OFF64_T

Signed-off-by: Yury Norov <ynorov@caviumnetworks.com>
---
 sysdeps/unix/sysv/linux/bits/fcntl-linux.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/unix/sysv/linux/bits/fcntl-linux.h b/sysdeps/unix/sysv/linux/bits/fcntl-linux.h
index 7e5b0ae..2e84835 100644
--- a/sysdeps/unix/sysv/linux/bits/fcntl-linux.h
+++ b/sysdeps/unix/sysv/linux/bits/fcntl-linux.h
@@ -101,7 +101,7 @@
 #endif
 
 #ifndef F_GETLK
-# ifndef __USE_FILE_OFFSET64
+# if !defined (__USE_FILE_OFFSET64) && !defined (__OFF_T_MATCHES_OFF64_T)
 #  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).	*/
-- 
2.7.4

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

* Re: [PATCH] fcntl: define F_GETLK, F_SETLK, F_SETLKW to 64-bit versions if __OFF_T_MATCHES_OFF64_T is enabled
  2016-10-11 16:39 [PATCH] fcntl: define F_GETLK, F_SETLK, F_SETLKW to 64-bit versions if __OFF_T_MATCHES_OFF64_T is enabled Yury Norov
@ 2016-10-25 21:03 ` Yury Norov
  0 siblings, 0 replies; 2+ messages in thread
From: Yury Norov @ 2016-10-25 21:03 UTC (permalink / raw)
  To: libc-alpha

On Tue, Oct 11, 2016 at 07:39:26PM +0300, Yury Norov wrote:
> If __OFF_T_MATCHES_OFF64_T is enabled, the behavior of sys_fcntl should
> be the same as if __USE_FILE_OFFSET64 is enabled. This patch adds
> required definitions.
> 
> Tested with aarch64/lp64 and aarch64/ilp32
> 
> 	* sysdeps/unix/sysv/linux/bits/fcntl-linux.h: define F_GETLK,
> 	  F_SETLK, F_SETLKW to 64-bit versions depending on
> 	  __OFF_T_MATCHES_OFF64_T
> 
> Signed-off-by: Yury Norov <ynorov@caviumnetworks.com>
> ---

Ping?

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

end of thread, other threads:[~2016-10-25 21:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-11 16:39 [PATCH] fcntl: define F_GETLK, F_SETLK, F_SETLKW to 64-bit versions if __OFF_T_MATCHES_OFF64_T is enabled Yury Norov
2016-10-25 21:03 ` Yury Norov

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).