nixCraft Poll

Topics

Linux direct I/O mystery

Posted by Vivek Gite [Last updated: December 4, 2006]

Recently there was some problem with one of the quite old Dell RHEL box. Application was not working. Someone installed some old binary application. At some point application was crashing under Red Hat enterprise Linux 2.1.

After exchanging tons of email with application vendor and RedHat, problem was solved by installing latest version of Red hat enterprise Linux.

open() sys call was a problem....

The problem was the open() sys call in application. The open() system call is used to convert a pathname into a file descriptor (a small, non-negative integer for use in subsequent I/O as with read, write, etc.). When the call is successful, the file descriptor returned will be the lowest file descriptor not currently open for the process. This call creates a new open file, not shared with any other process. But shared open files may arise via the fork() system call. The new file descriptor is set to remain open across exec functions . The file offset is set to the beginning of the file. If you are a developer read man page of open for more info (man 2 open).

This kind of problems is hard to trace and debug :(

Later RedHat tech support told us that direct I/O is supported in only in Red Hat Enterprise Linux version 3 over above. Interestingly application was working fine on old version of Debian Linux.

Bottom line if application is not working just try it on latest version and it may save your a$$.

Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates. You can Email this page to a friend.

You may also be interested in other helpful articles:

Discussion on This Article:

  1. Zendog Says:

    Good point. In fact it’s quite useful to maintain several VM’s of both old and new Linux releases. Sometimes you’ll find an old tool or application is needed but won’t run or compile on a *newer* OS. I was only able to compile Tripwire using an older compiler (conveniently present on an older RedHat OS.) VM’s are cheap and having access to a variety of different OS versions can really save the day when troubleshooting app problems.

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Copyright © 2004-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.