On 06/08/2012 11:35 AM, Brian Bunker wrote: > As far as the NAA number for different LUN's, we have the requirement that each LUN on our array has a different NAA number as you would expect. How those LUN's are presented to the host however there is no such restriction. For example, you could present the array's LUN 1 masked as LUN 10 to the initiator and then later masked that same LUN to the initiator as LUN 12 or any other number. In that case LUN 10 and later LUN 12 would have the same NAA number since they are in fact talking to the same actual LUN on the array. This is what I think multipath is having trouble with. > This is different then what I thought you were talking about first. That is the bug Hannes is talking about. As Hannes was saying we do not handle that case, and in the scsi layer you get a message like: "Warning! Received an indication that the " "LUN assignments on this target have " "changed. The Linux SCSI layer does not " "automatically remap LUN assignments.\n"); logged in /var/log/messages. This issue will definitely cause corruption if you are using the scsi devices directly. For example if /dev/sda is LUN10, you then remap it, and on the target it is now LUN11. The scsi layer just logs the message above and the OS continues to use /dev/sda like it was LUN10, but the data gets written to what is now LUN11's storage. At the multipath layer if you do not rescan at the scsi layer level after the remap, then there will be corruption because dm-0 is accessing /dev/sda which it thinks is LUN10 but is now LUN 11. Because we do not handle the sense indicating the LUNS changed, dm-0 will not change. If you rescan at the scsi layer with just sysfs or procfs and you get new paths (/dev/sdXs) for the newly remapped LUNs, I was saying that I think multipath should at least not add paths with different UUIDs to the same dm deivce. So it should kick out the old paths before adding the new ones or create a new device with the new paths, but it looks like it doesn't. So right now you should do what Hannes suggests and use 'rescan-scsi-bus.sh -r'. This will delete old mappings and setup /dev/sdXs for new ones. multipath will get events and then should do the right thing dm device assembly wise (I mean you should not end up with 4 paths where 2 have different UUIDs). -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel