MYLEX driver


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory MYLEX driver
# 1  
Old 11-29-2002
Data MYLEX driver

Hello friends I'm experiencing difficulties to display a myles driver out from a hwconfig -hc command, I got the following message:

*** There may be an interrupt conflict on interrupt vector 10
can somebody help me please
gracias
Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Database driver

Dear Gurus, I have to install oracle gateway 11g on solaris 10.5 , can any body let me know what is the path for ODBC.ini file in solaris and does solaris provide any generic database driver for all the database or i need to download the odbc driver for particular database. I have to connect... (0 Replies)
Discussion started by: guddu_12
0 Replies

2. Hardware

Difference between platform driver,codec driver and Machine driver

In general terms what are the differences platform driver,codec driver and Machine driver? (1 Reply)
Discussion started by: rupeshkp728
1 Replies

3. UNIX for Dummies Questions & Answers

boot option Available partitions 0b00 1048575 sr0 driver:sr 0800 488386584 sda driver:sd

Help, suspect hacked via serial or electric! any ideas on error "Pid:1, comm:swapper Tainted:G W 2.6.35-22 generic #33 -unbutu device = "(null)" or unknown-blocklist(8.1) please append a correct "root"boot option Available partitions 0b00 1048575 sr0 driver:sr 0800 488386584 sda driver:sd. Thanks... (3 Replies)
Discussion started by: kryclear
3 Replies

4. SCO

SCO Unix "Mylex DA960"

Does anyone have the drivers for this RAID Controller specifically running on SCO?? (6 Replies)
Discussion started by: jedimaster
6 Replies

5. UNIX for Advanced & Expert Users

help regarding device driver

Hi All, I have a device driver that uses UARTserial port to write/read to-from a device. That device driver is working fine on FC3 machine( kernel version 2.6.12)... Now I am switching to FC9 (kernel version 2.6.25.11-97).I have changed the interrupt flag SA_INTERRUPT to IRQF_DISABLED... (0 Replies)
Discussion started by: rajuprade
0 Replies

6. UNIX for Dummies Questions & Answers

Installing a driver

Hi All, I am trying to install a driver for a CAN card of a machine running Ubuntu 8.04. It cames with three .tgz files for gcc2, gcc3, and k26. The current version of gcc is 4.2.1, which is causing me problems. I installed gcc-3.3 using sudo apt-get install gcc-3.3 But when I run the... (1 Reply)
Discussion started by: Brian-UOIT
1 Replies

7. Solaris

SUNWglmr -- rasctrl environment monitoring driver for i2c or SCSI device driver ?

I've been researching minimizeing Solaris 8 and found that on the web page http://www.sun.com/bigadmin/content/packagelist/s8u7PkgList/p2.html the package SUNWglmr is listed as "rasctrl environment monitoring driver for i2c, (Root) (32-bit)" while in the document "Solaris 8 minimize-updt1.pdf"... (1 Reply)
Discussion started by: roygoodwin
1 Replies

8. Linux

sound driver

i install fedora core 4 but it fail to detect my sound card. my sound card is sigmatel. how can i solve this problem? can i install other sound driver? thx (9 Replies)
Discussion started by: wsc
9 Replies

9. Post Here to Contact Site Administrators and Moderators

To Driver

Driver, Are you an admin? I got banned from the board two times! Is this authorized? (13 Replies)
Discussion started by: Computekwes
13 Replies

10. UNIX for Advanced & Expert Users

NIC Driver

Hi:- I am trying to install a device driver for Intel NIC card on TurboLinux, but getting following errors, cc -O -Wall -o eepro100-diag eepro100-diag.c eepro100-diag.c:72: unistd.h: No such file or directory eepro100-diag.c:73: stdio.h: No such file or directory eepro100-diag.c:74:... (1 Reply)
Discussion started by: s_aamir
1 Replies
Login or Register to Ask a Question
ddi_intr_set_nreq(9F)					   Kernel Functions for Drivers 				     ddi_intr_set_nreq(9F)

NAME
ddi_intr_set_nreq - set the number of interrupts requested for a device driver instance SYNOPSIS
#include <sys/ddi_intr.h> int ddi_intr_set_nreq(dev_info_t *dip, int nreq); INTERFACE LEVEL
Solaris DDI specific (Solaris DDI). PARAMETERS
dip Pointer to the dev_info structure. nreq Number of interrupts requested. DESCRIPTION
The ddi_intr_set_nreq() function changes the number of interrupts requested by a device driver instance. The nreq parameter is the total number of interrupt resources that this instance of the device driver would like to have available. The nreq parameter includes any interrupt resources already allocated by the driver. For example, if the driver instance already has two MSI-X vectors and it wants two more, it should call this function with an nreq parameter set to four. The nreq parameter can be any value between one and the maximum number of interrupts supported by the device hardware, as reported by a call to the ddi_intr_get_nintrs(9F) function. The driver receives a callback notifying it in cases when it must release any previously allocated interrupts, or when it is allowed to allocate more interrupts as a result of its new nreq parameter. The ddi_intr_set_nreq()function is not supported unless a driver is already consuming interrupts, and if it has a registered callback han- dler that can process actions related to changes in interrupt availability. See ddi_cb_register(9F) for an explanation on how to enable this functionality. RETURN VALUES
The ddi_intr_set_nreq() function returns: DDI_SUCCESS on success DDI_EINVAL The operation is invalid because the nreq parameter is not a legal value DDI_ENOTSUP The operation is not supported. The driver must have a registered callback, and the system must have interrupt pools imple- mented. DDI_FAILURE Implementation specific failure CONTEXT
These functions can be called from kernel, non-interrupt context. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Private | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5), attach(9E), ddi_cb_register(9F), ddi_intr_alloc(9F), ddi_intr_get_nintrs(9F) NOTES
The Interrupt Resource Management feature is limited to device driver instances that are using MSI-X interrupts (interrupt type DDI_INTR_TYPE_MSIX). Attempts to use this function for any other type of interrupts fails with DDI_ENOTSUP. The total number of interrupts requested by the driver is initially defined by the count parameter provided by the driver's first call to the ddi_intr_alloc(9F) function, specifically during the driver instance's attach(9E) routine. The ddi_intr_set_nreq() function is only used if the driver instance experiences changes in its I/O load. In response to increased I/O load, the driver may want to request addi- tional interrupt resources. In response to diminished I/O load. the driver may volunteer to return extra interrupt resources back to the system. SunOS 5.11 5 Jan 2009 ddi_intr_set_nreq(9F)