All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/5] scsi: persistent reservation live migration
@ 2026-01-26 19:47 Stefan Hajnoczi
  2026-01-26 19:47 ` [PATCH v2 1/5] scsi: generalize scsi_SG_IO_FROM_DEV() to scsi_SG_IO() Stefan Hajnoczi
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Stefan Hajnoczi @ 2026-01-26 19:47 UTC (permalink / raw)
  To: qemu-devel
  Cc: pkrempa, Paolo Bonzini, Alberto Faria, Hannes Reinecke, Zhao Liu,
	Kevin Wolf, qemu-block, Fam Zheng, Philippe Mathieu-Daudé,
	Eduardo Habkost, Qing Wang, Yanan Wang, Marcel Apfelbaum,
	Stefan Hajnoczi

v2:
- Add user documentation [Paolo]
- Send PREEMPT on the source if migration fails. This rollback operation
  ensures the source regains access to the LUN even if migration fails after
  the destination issues its own PREEMPT.

Live migration does not work for SCSI Persistent Reservations acquired on
scsi-block devices. This patch series migrates the reservation key and
reservation type so that the destination QEMU can take over the persistent
reservation with the PREEMPT service action upon live migration.

The approach involves snooping PERSISTENT RESERVE OUT replies and tracking the
scsi-block device's current reservation key and reservation type. In most cases
this involves no additional SCSI commands. This approach isn't perfect: if
another machine modifies the reservation on the physical LUN, then QEMU's state
becomes stale. Persistent reservations are inherently cooperative, so this is
acceptable as long as real applications don't run into problems.

I am also working on a test suite called pr-tests that runs sg_persist(8)
commands across multiple machines in order to exercise various scenarios:
https://gitlab.com/stefanha/pr-tests

Stefan Hajnoczi (5):
  scsi: generalize scsi_SG_IO_FROM_DEV() to scsi_SG_IO()
  scsi: add error reporting to scsi_SG_IO()
  scsi: track SCSI reservation state for live migration
  scsi: save/load SCSI reservation state
  docs: add SCSI migrate-pr documentation

 docs/system/device-emulation.rst        |   1 +
 docs/system/devices/scsi/index.rst      |  10 +
 docs/system/devices/scsi/migrate-pr.rst |  54 +++++
 include/hw/scsi/scsi.h                  |  15 +-
 include/scsi/constants.h                |  21 ++
 hw/core/machine.c                       |   4 +-
 hw/scsi/scsi-bus.c                      |   3 +
 hw/scsi/scsi-disk.c                     |  85 ++++++-
 hw/scsi/scsi-generic.c                  | 285 +++++++++++++++++++++++-
 hw/scsi/trace-events                    |   2 +
 10 files changed, 465 insertions(+), 15 deletions(-)
 create mode 100644 docs/system/devices/scsi/index.rst
 create mode 100644 docs/system/devices/scsi/migrate-pr.rst

-- 
2.52.0



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2026-01-27 14:49 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-26 19:47 [PATCH v2 0/5] scsi: persistent reservation live migration Stefan Hajnoczi
2026-01-26 19:47 ` [PATCH v2 1/5] scsi: generalize scsi_SG_IO_FROM_DEV() to scsi_SG_IO() Stefan Hajnoczi
2026-01-26 19:47 ` [PATCH v2 2/5] scsi: add error reporting " Stefan Hajnoczi
2026-01-26 19:47 ` [PATCH v2 3/5] scsi: track SCSI reservation state for live migration Stefan Hajnoczi
2026-01-26 19:47 ` [PATCH v2 4/5] scsi: save/load SCSI reservation state Stefan Hajnoczi
2026-01-26 19:59   ` Daniel P. Berrangé
2026-01-26 22:13     ` Stefan Hajnoczi
2026-01-27  8:54       ` Daniel P. Berrangé
2026-01-27 14:41         ` Stefan Hajnoczi
2026-01-27 14:47           ` Daniel P. Berrangé
2026-01-26 19:47 ` [PATCH v2 5/5] docs: add SCSI migrate-pr documentation Stefan Hajnoczi
2026-01-26 21:55 ` [PATCH v2 0/5] scsi: persistent reservation live migration Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.