Need HBA card driver


 
Thread Tools Search this Thread
Operating Systems AIX Need HBA card driver
# 1  
Old 12-10-2008
Need HBA card driver

Hi All,

SUN emulex HBA card has been installed on P520 box.
When i run the cfgmgr i am getting the following message.

lpar2#cfgmgr
cfgmgr: 0514-621 WARNING: The following device packages are required for
device support but are not currently installed.
devices.pci.SUNW.emlxs:devices.pci.df1000fc

Please help me to get the device drivers for this.

Thanks
Manu
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

HBA card faulty

Hi, How to determine if HBA card in getting faulty from linux host ? any pointers. (2 Replies)
Discussion started by: saurabh84g
2 Replies

2. Solaris

Which FC HBA card support Solaris9

I have JNI FCE-6460-N fc card , it is detected in OK prompt.....I connected Sun StorEDGE A5000 FC storage. in OK prompt, PROBE-SCSI-ALL showing A5000 fc hdds details in ok prompt..... but in OS level.....not showing the hdd, i tried in DEVFSADM command and FORMAT command not showing A5000... (3 Replies)
Discussion started by: anysystem
3 Replies

3. Solaris

Extracting HBA Card Hardware info

Hello, I am very new to solaris so please bear with me. I have 2 machines in question. For both I am trying to get the HBA Card Hardware information such as: HBA Model Name HBA Firmware version HBA Port details HBA Driver details First machine is a Solaris 10. When I execute fcinfo... (6 Replies)
Discussion started by: flagman5
6 Replies

4. Solaris

Sun Solaris HBA & Driver identification help

Gents, I am new with Solaris and working on couple of Solaris 8 and 9's. 1. ) I am having issues finding which model of HBA is connected to the host. I got a link to kb qlogic com/KanisaPlatform/Publishing/130/10441_f.html But, it is incomplete as read in many places.. Do we have updated... (5 Replies)
Discussion started by: abcd.us786
5 Replies

5. Solaris

How to enable hba port of a two port hba card

Hi, i have a two port hba card in solaris 10 system one of which is disabled. How to enable and configure the other port. ---------- Post updated at 08:17 AM ---------- Previous update was at 03:40 AM ---------- please help :( (7 Replies)
Discussion started by: rishiraaz
7 Replies

6. Solaris

After update Solaris version, HBA driver still need to install?

Hi all I had update a server from Solaris 8 to Solaris 10 is it the HBA driver still need to reinstall? since i can get the driver info as below: root@sgerpdev # fcinfo hba-port HBA Port WWN: 21000003ba9b58a3 OS Device Name: /dev/cfg/c1 Manufacturer: QLogic Corp. ... (1 Reply)
Discussion started by: SmartAntz
1 Replies

7. Red Hat

HBA Driver reset

Does anyone know how to rest the drivers on a HBA card? Tried the qlogic_lun_scan script but my system isn't seeing the sda and sdc scsi's. (1 Reply)
Discussion started by: soupbone38
1 Replies

8. UNIX for Advanced & Expert Users

Sun internal disks and HBA card

I have a V490 that has couple internal disks attached to the same dual-port HBA card that I'm planning attach to the SAN for additional storage. Would I sacrifice performance if I use the same HBA? Is it better to throw in a new HBA instead? (1 Reply)
Discussion started by: kiem
1 Replies

9. Solaris

Qlogic HBA card in E450 with errors

I have installed a qlogic HBA card in an E450 Solaris 9 with all the SUNW packages and the latest EPROM version. Configuration reboot was done. An orange light flashes to the right of where the card plugs into the fiber cable after booting, and the following error apprears at the start of the boot... (9 Replies)
Discussion started by: floydm
9 Replies

10. Solaris

HBA Card

Hello...I got a problem here. I have HBAs installed in one of the domains in E20 and I gotta find out the brand and firmware. But when I do a prtconf, I cannot see the HBA. For other servers installed with HBAs, when I do prtconf on them I can see either qlc or em. Can you guys enlighten me how to... (5 Replies)
Discussion started by: xiaochensg
5 Replies
Login or Register to Ask a Question
tran_tgt_init(9E)						Driver Entry Points						 tran_tgt_init(9E)

NAME
tran_tgt_init - request to initialize HBA resources on behalf of a particular target SYNOPSIS
#include <sys/scsi/scsi.h> void prefixtran_tgt_init(dev_info_t *hba_dip, dev_info_t *tgt_dip, scsi_hba_tran_t *hba_tran, struct scsi_device *sd); INTERFACE LEVEL
Solaris architecture specific (Solaris DDI). PARAMETERS
hba_dip Pointer to a dev_info_t structure, referring to the HBA device instance. tgt_dip Pointer to a dev_info_t structure, referring to the target device instance. hba_tran Pointer to a scsi_hba_tran(9S) structure, consisting of the HBA's transport vectors. sd Pointer to a scsi_device(9S) structure, describing the target. DESCRIPTION
The tran_tgt_init() vector in the scsi_hba_tran(9S) structure may be initialized during the HBA driver's attach(9E) to point to an HBA driver function to be called by the system when an instance of a target device is being created. The tran_tgt_init() vector, if not NULL,is called after the dev_info node structure is created for this target device instance, but before probe(9E) for this instance is called. Before receiving transport requests from the target driver instance, the HBA may perform any initialization required for this par- ticular target during the call of the tran_tgt_init() vector. Note that hba_tran will point to a cloned copy of the scsi_hba_tran_t structure allocated by the HBA driver if the SCSI_HBA_TRAN_CLONE flag was specified in the call to scsi_hba_attach(9F). In this case, the HBA driver may choose to initialize the tran_tgt_private field in the structure pointed to by hba_tran, to point to the data specific to the particular target device instance. RETURN VALUES
tran_tgt_init() must return: DDI_SUCCESS the HBA driver can support the addressed target, and was able to initialize per-target resources. DDI_FAILURE the HBA driver cannot support the addressed target, or was unable to initialize per-target resources. In this event, the initialization of this instance of the target device will not be continued, the target driver's probe(9E) will not be called, and the tgt_dip structure destroyed. SEE ALSO
attach(9E), probe(9E), tran_tgt_free(9E), tran_tgt_probe(9E), scsi_hba_attach_setup(9F), scsi_device(9S), scsi_hba_tran(9S) Writing Device Drivers SunOS 5.10 1 Nov 1993 tran_tgt_init(9E)