cinder/releasenotes/notes/bug-1887908-nec-live-migration-failure-withfc-3128fff7c48e739f.yaml
Naoki Saito d77ae8785f NEC driver: fix live-migration failure with FC
The initialize_connection() in the driver sometimes returns wrong LUN
and causes a live-migration failure.
The function searches the LUN from LD sets (attached hosts) and returns
the first hit.
The function must return an LUN of the destination host, but the first
hit may be an LUN of the source host.

This patch fixes initialize_connection() to return correct LUN by
searching with WWPN of the desitination host.

Change-Id: I102ae84204e0d88814a7d2e028f7cec118ad6b60
Closes-Bug: #1887908
(cherry picked from commit 94c1d24153)
(cherry picked from commit c55e259d59)
2020-09-19 03:42:29 +00:00

7 lines
145 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
fixes:
- |
`Bug #1887908 <https://bugs.launchpad.net/cinder/+bug/1887908>`_
In NEC driver, fix live-migration failure with FC.