diff options
| author | Thomas Huth <thuth@redhat.com> | 2025-01-15 08:38:13 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-04-23 07:51:25 +0200 |
| commit | 2abe33895868c3846cd5d50a7207ca22cc98f741 (patch) | |
| tree | f9af944adcef19eeddf0809a8e38fe84b87036a4 /include/hw/s390x/css.h | |
| parent | 2de267c330381d44862a29efd9025d64c9c0e9b4 (diff) | |
| download | focaccia-qemu-2abe33895868c3846cd5d50a7207ca22cc98f741.tar.gz focaccia-qemu-2abe33895868c3846cd5d50a7207ca22cc98f741.zip | |
hw/s390x/css: Remove the obsolete "css_migration_enabled" variable
Now that the s390-ccw-virtio-2.9 machine type has been removed, we don't need the "css_migration_enabled" variable anymore and can remove the related code. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20250115073819.15452-3-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/hw/s390x/css.h')
| -rw-r--r-- | include/hw/s390x/css.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/hw/s390x/css.h b/include/hw/s390x/css.h index cd97e2b707..dbf919bdd2 100644 --- a/include/hw/s390x/css.h +++ b/include/hw/s390x/css.h @@ -333,10 +333,4 @@ static inline int ccw_dstream_read_buf(CcwDataStream *cds, void *buff, int len) #define ccw_dstream_read(cds, v) ccw_dstream_read_buf((cds), &(v), sizeof(v)) #define ccw_dstream_write(cds, v) ccw_dstream_write_buf((cds), &(v), sizeof(v)) -/** - * true if (vmstate based) migration of the channel subsystem - * is enabled, false if it is disabled. - */ -extern bool css_migration_enabled; - #endif |