bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature request: O_DIRECTIO could be used on Tru64


From: Lemley James - jlemle
Subject: feature request: O_DIRECTIO could be used on Tru64
Date: Tue, 7 Feb 2006 16:16:32 -0600

Hi coreutils fans, while attempting to use direct I/O with dd on Tru64
5.1B, I discovered that Tru64 doesn't define O_DIRECT as coreutils 5.93
is expecting, but does define O_DIRECTIO which seems to act as I expect
direct I/O to act. 

The open(2) man page states:  O_DIRECTIO [Tru64 UNIX]
      Enables direct I/O on a file.

Making this change to src/system.h allows the flag "direct" to be used
with dd on Tru64, and also appears to affect how the coreutil "shred"
opens a file.

Simple change follows; you may wish to implement differently.  
------------------

--- system.h.orig    Wed Sep 28 17:11:06 2005
+++ system.h        Tue Feb  7 16:04:32 2006
@@ -157,7 +157,12 @@
 #endif
 
 #if !defined O_DIRECT
+/* Tru64 has this defined as O_DIRECTIO */
+#if !defined O_DIRECTIO
 # define O_DIRECT 0
+#else 
+# define O_DIRECT O_DIRECTIO
+#endif
 #endif
 
 #if !defined O_DSYNC

------------------
Thanks, 
James Lemley
***************************************************************************
The information contained in this communication is confidential, is
intended only for the use of the recipient named above, and may be legally
privileged.

If the reader of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or copying of this
communication is strictly prohibited.

If you have received this communication in error, please resend this
communication to the sender and delete the original message or any copy
of it from your computer system.

Thank You.
****************************************************************************




reply via email to

[Prev in Thread] Current Thread [Next in Thread]