- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- async device driver
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2002 12:20 PM
12-03-2002 12:20 PM
Oracle 9i
Async IO on raw devices (Clariion 600)
What is the best minor number for the /dev/async-device?
0x000000 default
0x000001 IR
Kind regards
Claus
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2002 01:20 PM
12-03-2002 01:20 PM
Re: async device driver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2002 01:21 PM
12-03-2002 01:21 PM
Re: async device driver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2002 01:24 PM
12-03-2002 01:24 PM
Re: async device driver
Good luck,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2002 02:56 PM
12-03-2002 02:56 PM
Re: async device driver
# mknod /dev/async c 101 4
Mkae sure that you change the owner and group if required. e.g. If your using sybase, then sybase should be the owner.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 08:51 AM
12-05-2002 08:51 AM
Re: async device driver
---------------
If using HP hardware/OS redundancy or mirroring, create the async device as follows:
/usr/sbin/mknod /dev/async c 101 0
Otherwise, if using IBM Informix mirroring or no hardware/OS mirroring, or no mirroring at all, create the async device as follows:
/usr/sbin/mknod /dev/async c 101 4
chmod 0666 /dev/async
Donald
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 11:39 PM
12-05-2002 11:39 PM
Re: async device driver
I have read somewhere in this forum, that Oracle crashes with a minor number of 0x000004.
Claus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 02:12 AM
12-06-2002 02:12 AM
SolutionThe 0x000004 bit is indeed an important one. It controls if also retryable IO errors should be passed to the upper layer (i.e. the application).
If you use software mirroring in the application then you need to get the errors conditions passed up... the the application needs to be able to recover from the situation using e.g. its own mirrors. The bit in fact instructs the kernel to pass such errors to the application.
If you use no software mirroring in the application then this flag MUST NOT be set! Otherwise LVM may NOT able to use e.g. PVLinks and mirroring features to hide error conditions from the application!
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 02:07 AM
12-09-2002 02:07 AM
Re: async device driver
as we will use Oracle on this filesystems, we must not use the 04 minorcode for /dev/async. Do you know the exact explanation of minorcode 02 "flush the CPU cache after reads".
Kind regards
Claus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2002 02:51 AM
12-09-2002 02:51 AM
Re: async device driver
I found this info about the 0x2 bit of asyncdsk. Interesting is, that the meaning is just the opposite. :-) The flushing is disabled by setting the bit.
Please note, that only the application vendor can tell for sure, what options should be used with his application! So don't take this comment as a recommendation to set this bit, please.
0x2)
If set, the CPU cache will not be flushed after a read request. This extra cache flush is only needed if the application touches data buffers while they are being read from a device. Setting this bit can improve performance slightly.
Best regards...
Dietmar.