Adding new luns to mpxio config - showing up twice in format.


 
Thread Tools Search this Thread
Operating Systems Solaris Adding new luns to mpxio config - showing up twice in format.
# 1  
Old 06-05-2012
Adding new luns to mpxio config - showing up twice in format.

Hi,

I have a sun 440, it already has LUN's configured with MPXIO.

I just had more LUNS added, I did devfsadm and cfgadm -al, and they're showing up twice in "Format". Smilie


There are no new fiber cables or HBA's involved, same physical setup, just adding LUNS.

Aren't they supposed to get imported into MPXIO? Do I have to actually reboot for this? Or is there a command I'm missing?

Thanks for any help in advance!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Adding a blank line in between two O/Ps in tabular format which gets received over email

Hi Guys, I am stuck in between and seeking help here. Requirement: A script that will run every morning which will connect to Mysql database and run the query to inform us about the holidays (it will also check if there were any holidays during last 2 business days). So the three queries are... (11 Replies)
Discussion started by: Sambit Sahu
11 Replies

2. Solaris

Drive is showing offline in the /var/adm/messages and shows "drive type unknown" in the format outpu

Hi, I am facing issue with one of the drive is solaris 10. it is showing offline in the messages file scsi: WARNING: /pci@2,600000/QLGC,qlc@0/fp@0,0/ssd@w5006016746e00b1b,0 (ssd0): drive offline genunix: WARNING: Page83 data not standards compliant DGC LUNZ 0430 ... (1 Reply)
Discussion started by: Prasanth T K
1 Replies

3. HP-UX

After adding new iscsi target port, still the session state of that target port is showing offline

Hi, I wanted to configure new iscsi port on HPUX system, i added the target port address and configured it, once done, went to array side and searched for that host iqn number , but was nt able to find the same, came to host, then when i ran "iscsiutil -pVS" command it gave me below result ... (0 Replies)
Discussion started by: Vinay Kumar D
0 Replies

4. Solaris

Mpathadm showing no paths to 1 lun, others luns are fine

Hi, I've noticed that mpathadm states that one of our luns has no active paths: /dev/rdsk/c6t60000970000298700009533031324333d0s2 Total Path Count: 4 Operational Path Count: 4 /dev/rdsk/c6t60000970000298700009533031333037d0s2 ... (3 Replies)
Discussion started by: badoshi
3 Replies

5. UNIX for Dummies Questions & Answers

Des/awk for change format and adding integers in a column of data?

Greetings! I need a quick way to change the format in a table of data Here is an example of the input: 10 72 Value=177 VDB=0.0245 Value4=0,0,171,0 10 274 Value=238 VDB=0.0433 Value4=29,0,205,0 10 312 Value=222 VDB=0.0384 Value4=8,0,190,19 10 540 Value=405 VDB=0.0391 Value4=13,30,153,195... (3 Replies)
Discussion started by: Twinklefingers
3 Replies

6. Red Hat

Adding LUNs to system

Hi guys I have been asked for the following: SMI Oracle database PTP10 Oracle 10g RAC on usdfslprac4 and usdfslprac5 Linux boxes is reaching its space limit. It is just 20 GB away from being completely out of disk space. And then database will stop working and SMI system hence will be impacted.... (0 Replies)
Discussion started by: 300zxmuro
0 Replies

7. Solaris

MPXIO

Hi Kudo, I wanna to know that how can I do mpxio device name to os native name mapping without using stmsboot -L I tried everything still not able to got the solution till I able to get these o/p here is native disk info as well physical wat is the logical OS name of the disk ... (1 Reply)
Discussion started by: tarunn.dubeyy
1 Replies

8. Filesystems, Disks and Memory

vxdisk list output showing extra LUNs

hi fren i am facing this problem i have sun 6140 storage 30 volumes bt my vxdisk list output is showing 37 disk which shd nt b there has neone faced this proble earlier vxdiks list output is like this SUN6140-2_0 auto - - online c4t201700A0B84853C0d2s2 SUN6140-2_1 auto - - online... (13 Replies)
Discussion started by: bond_ankur
13 Replies

9. Shell Programming and Scripting

converting config file to csv format

Hello, For 2 days now i've been searching for a solution to this. I am now beginning to doubt this is even possible. It's even harder when you don't know how to search for it. (which keywords generate enough relevancy etc..) I need to parse a config file to generate a CSV file in return. It... (7 Replies)
Discussion started by: zer0dvide
7 Replies
Login or Register to Ask a Question
MPXIO(5)							File Formats Manual							  MPXIO(5)

NAME
mpxio - multiplexed i/o SYNOPSIS
#include <sys/mx.h> #include <sgtty.h> DESCRIPTION
Data transfers on mpx files (see mpx(2)) are multiplexed by imposing a record structure on the io stream. Each record represents data from/to a particular channel or a control or status message associated with a particular channel. The prototypical data record read from an mpx file is as follows struct input_record { short index; short count; short ccount; char data[]; }; where index identifies the channel, and count specifies the number of characters in data. If count is zero, ccount gives the size of data, and the record is a control or status message. Although count or ccount might be odd, the operating system aligns records on short (i.e. 16-bit) boundaries by skipping bytes when necessary. Data written to an mpx file must be formatted as an array of record structures defined as follows struct output_record { short index; short count; short ccount; char *data; }; where the data portion of the record is referred to indirectly and the other cells have the same interpretation as in input_record. The control messages listed below may be read from a multiplexed file descriptor. They are presented as two 16-bit integers: the first number is the message code (defined in <sys/mx.h>), the second is an optional parameter meaningful only with M_WATCH and M_BLK. M_WATCH - a process `wants to attach' on this channel. The second parameter is the 16-bit user-id of the process that executed the open. M_CLOSE - the channel is closed. This message is generated when the last file descriptor referencing a channel is closed. The detach command (see mpx(2) should be used in response to this message. M_EOT - indicates logical end of file on a channel. If the channel is joined to a typewriter, EOT (control-d) will cause the M_EOT message under the conditions specified in tty(4) for end of file. If the channel is attached to a process, M_EOT will be gener- ated whenever the process writes zero bytes on the channel. M_BLK - if non-blocking mode has been enabled on an mpx file descriptor xd by executing ioctl(xd, MXNBLK, 0), write operations on the file are truncated in the kernel when internal queues become full. This is done on a per-channel basis: the parameter is a count of the number of characters not transferred to the channel on which M_BLK is received. M_UBLK - is generated for a channel after M_BLK when the internal queues have drained below a threshold. Two other messages may be generated by the kernel. As with other messages, the first 16-bit quantity is the message code. M_OPEN - is generated in conjunction with `listener' mode (see mpx(2)). The uid of the calling process follows the message code as with M_WATCH. This is followed by a null-terminated string which is the name of the file being opened. M_IOCTL - is generated for a channel connected to a process when that process executes the ioctl(fd, cmd, &vec) call on the channel file descriptor. The M_IOCTL code is followed by the cmd argument given to ioctl followed by the contents of the structure vec. It is assumed, not needing a better compromise at this time, that the length of vec is determined by sizeof (struct sgttyb) as declared in <sgtty.h>. Two control messages are understood by the operating system. M_EOT may be sent through an mpx file to a channel. It is equivalent to propagating a zero-length record through the channel; i.e. the channel is allowed to drain and the process or device at the other end receives a zero-length transfer before data starts flowing through the channel again. M_IOCTL can also be sent through a channel. The format is identical to that described above. MPXIO(5)