* [PATCH v3 0/3] virtio: remove unnecessary host_features in ->get_features()
@ 2022-11-21 15:48 Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 1/3] target/ppc: Fix build warnings when building with 'disable-tcg' Stefan Hajnoczi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2022-11-21 15:48 UTC (permalink / raw)
To: qemu-devel
Cc: qemu-ppc, Michael S . Tsirkin, Alex Bennée, David Gibson,
Daniel Henrique Barboza, Fam Zheng, David Hildenbrand, Kevin Wolf,
Stefan Hajnoczi, qemu-block, Hanna Reitz, Laurent Vivier,
Paolo Bonzini, Greg Kurz, Amit Shah, Jason Wang,
Cédric Le Goater, Marc-André Lureau
v3:
- Use an informal comment instead of a full doc comment [Cornelia]
v2:
- Document vdv->get_features() callback [Cornelia]
The vdc->get_features() callbacks are a little inconsistent in how they use
vdev->host_features. This is because the function's behavior changed over time.
Clean things up.
Stefan Hajnoczi (2):
virtio: document ->host_features usage in vdc->get_features() callback
virtio: remove unnecessary host_features in ->get_features()
Vaibhav Jain (1):
target/ppc: Fix build warnings when building with 'disable-tcg'
include/hw/virtio/virtio.h | 7 +++++++
hw/block/virtio-blk.c | 3 ---
hw/char/virtio-serial-bus.c | 1 -
hw/net/virtio-net.c | 3 ---
hw/scsi/vhost-scsi-common.c | 3 ---
hw/scsi/virtio-scsi.c | 4 ----
hw/virtio/virtio-balloon.c | 2 --
target/ppc/cpu_init.c | 2 ++
target/ppc/excp_helper.c | 2 ++
9 files changed, 11 insertions(+), 16 deletions(-)
--
2.38.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3 1/3] target/ppc: Fix build warnings when building with 'disable-tcg'
2022-11-21 15:48 [PATCH v3 0/3] virtio: remove unnecessary host_features in ->get_features() Stefan Hajnoczi
@ 2022-11-21 15:48 ` Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 2/3] virtio: document ->host_features usage in vdc->get_features() callback Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 3/3] virtio: remove unnecessary host_features in ->get_features() Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2022-11-21 15:48 UTC (permalink / raw)
To: qemu-devel
Cc: qemu-ppc, Michael S . Tsirkin, Alex Bennée, David Gibson,
Daniel Henrique Barboza, Fam Zheng, David Hildenbrand, Kevin Wolf,
Stefan Hajnoczi, qemu-block, Hanna Reitz, Laurent Vivier,
Paolo Bonzini, Greg Kurz, Amit Shah, Jason Wang,
Cédric Le Goater, Marc-André Lureau, Vaibhav Jain,
Kowshik Jois B S, Philippe Mathieu-Daudé, Kowshik Jois B S
From: Vaibhav Jain <vaibhav@linux.ibm.com>
Kowshik reported that building qemu with GCC 12.2.1 for 'ppc64-softmmu'
target is failing due to following build warnings:
<snip>
../target/ppc/cpu_init.c:7018:13: error: 'ppc_restore_state_to_opc' defined but not used [-Werror=unused-function]
7018 | static void ppc_restore_state_to_opc(CPUState *cs,
<snip>
Fix this by wrapping these function definitions in 'ifdef CONFIG_TCG' so that
they are only defined if qemu is compiled with '--enable-tcg'
Reported-by: Kowshik Jois B S <kowsjois@linux.ibm.com>
Fixes: 61bd1d2942 ("target/ppc: Convert to tcg_ops restore_state_to_opc")
Fixes: 670f1da374 ("target/ppc: Implement hashst and hashchk")
Fixes: 53ae2aeb94 ("target/ppc: Implement hashstp and hashchkp")
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1319
Signed-off-by: Vaibhav Jain <vaibhav@linux.ibm.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Kowshik Jois B S <kowsjois@linux.vnet.ibm.com>
Message-Id: <20221116131743.658708-1-vaibhav@linux.ibm.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
---
target/ppc/cpu_init.c | 2 ++
target/ppc/excp_helper.c | 2 ++
2 files changed, 4 insertions(+)
diff --git a/target/ppc/cpu_init.c b/target/ppc/cpu_init.c
index 32e94153d1..cbf0081374 100644
--- a/target/ppc/cpu_init.c
+++ b/target/ppc/cpu_init.c
@@ -7015,6 +7015,7 @@ static vaddr ppc_cpu_get_pc(CPUState *cs)
return cpu->env.nip;
}
+#ifdef CONFIG_TCG
static void ppc_restore_state_to_opc(CPUState *cs,
const TranslationBlock *tb,
const uint64_t *data)
@@ -7023,6 +7024,7 @@ static void ppc_restore_state_to_opc(CPUState *cs,
cpu->env.nip = data[0];
}
+#endif /* CONFIG_TCG */
static bool ppc_cpu_has_work(CPUState *cs)
{
diff --git a/target/ppc/excp_helper.c b/target/ppc/excp_helper.c
index a05a2ed595..94adcb766b 100644
--- a/target/ppc/excp_helper.c
+++ b/target/ppc/excp_helper.c
@@ -2842,6 +2842,7 @@ void helper_td(CPUPPCState *env, target_ulong arg1, target_ulong arg2,
#endif
#endif
+#ifdef CONFIG_TCG
static uint32_t helper_SIMON_LIKE_32_64(uint32_t x, uint64_t key, uint32_t lane)
{
const uint16_t c = 0xfffc;
@@ -2924,6 +2925,7 @@ HELPER_HASH(HASHST, env->spr[SPR_HASHKEYR], true)
HELPER_HASH(HASHCHK, env->spr[SPR_HASHKEYR], false)
HELPER_HASH(HASHSTP, env->spr[SPR_HASHPKEYR], true)
HELPER_HASH(HASHCHKP, env->spr[SPR_HASHPKEYR], false)
+#endif /* CONFIG_TCG */
#if !defined(CONFIG_USER_ONLY)
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v3 2/3] virtio: document ->host_features usage in vdc->get_features() callback
2022-11-21 15:48 [PATCH v3 0/3] virtio: remove unnecessary host_features in ->get_features() Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 1/3] target/ppc: Fix build warnings when building with 'disable-tcg' Stefan Hajnoczi
@ 2022-11-21 15:48 ` Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 3/3] virtio: remove unnecessary host_features in ->get_features() Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2022-11-21 15:48 UTC (permalink / raw)
To: qemu-devel
Cc: qemu-ppc, Michael S . Tsirkin, Alex Bennée, David Gibson,
Daniel Henrique Barboza, Fam Zheng, David Hildenbrand, Kevin Wolf,
Stefan Hajnoczi, qemu-block, Hanna Reitz, Laurent Vivier,
Paolo Bonzini, Greg Kurz, Amit Shah, Jason Wang,
Cédric Le Goater, Marc-André Lureau, Cornelia Huck
Suggested-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
include/hw/virtio/virtio.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/include/hw/virtio/virtio.h b/include/hw/virtio/virtio.h
index a973811cbf..b6e09c6d4b 100644
--- a/include/hw/virtio/virtio.h
+++ b/include/hw/virtio/virtio.h
@@ -138,9 +138,16 @@ struct VirtioDeviceClass {
/* This is what a VirtioDevice must implement */
DeviceRealize realize;
DeviceUnrealize unrealize;
+
+ /*
+ * Called with vdev->host_features in requested_features. Returns device
+ * feature bits to be stored in vdev->host_features after factoring in
+ * device-specific feature bits.
+ */
uint64_t (*get_features)(VirtIODevice *vdev,
uint64_t requested_features,
Error **errp);
+
uint64_t (*bad_features)(VirtIODevice *vdev);
void (*set_features)(VirtIODevice *vdev, uint64_t val);
int (*validate_features)(VirtIODevice *vdev);
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v3 3/3] virtio: remove unnecessary host_features in ->get_features()
2022-11-21 15:48 [PATCH v3 0/3] virtio: remove unnecessary host_features in ->get_features() Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 1/3] target/ppc: Fix build warnings when building with 'disable-tcg' Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 2/3] virtio: document ->host_features usage in vdc->get_features() callback Stefan Hajnoczi
@ 2022-11-21 15:48 ` Stefan Hajnoczi
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2022-11-21 15:48 UTC (permalink / raw)
To: qemu-devel
Cc: qemu-ppc, Michael S . Tsirkin, Alex Bennée, David Gibson,
Daniel Henrique Barboza, Fam Zheng, David Hildenbrand, Kevin Wolf,
Stefan Hajnoczi, qemu-block, Hanna Reitz, Laurent Vivier,
Paolo Bonzini, Greg Kurz, Amit Shah, Jason Wang,
Cédric Le Goater, Marc-André Lureau, Cornelia Huck
Since at least commit 6b8f1020540c27246277377aa2c3331ad2bfb160 ("virtio:
move host_features") the ->get_features() function has been called with
host_features as an argument.
Some devices manually add host_features in ->get_features() although the
features argument already contains host_features. Make all devices
consistent by dropping the unnecessary code.
Cc: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
hw/block/virtio-blk.c | 3 ---
hw/char/virtio-serial-bus.c | 1 -
hw/net/virtio-net.c | 3 ---
hw/scsi/vhost-scsi-common.c | 3 ---
hw/scsi/virtio-scsi.c | 4 ----
hw/virtio/virtio-balloon.c | 2 --
6 files changed, 16 deletions(-)
diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
index f717550fdc..a744012fec 100644
--- a/hw/block/virtio-blk.c
+++ b/hw/block/virtio-blk.c
@@ -983,9 +983,6 @@ static uint64_t virtio_blk_get_features(VirtIODevice *vdev, uint64_t features,
{
VirtIOBlock *s = VIRTIO_BLK(vdev);
- /* Firstly sync all virtio-blk possible supported features */
- features |= s->host_features;
-
virtio_add_feature(&features, VIRTIO_BLK_F_SEG_MAX);
virtio_add_feature(&features, VIRTIO_BLK_F_GEOMETRY);
virtio_add_feature(&features, VIRTIO_BLK_F_TOPOLOGY);
diff --git a/hw/char/virtio-serial-bus.c b/hw/char/virtio-serial-bus.c
index 7d4601cb5d..1414fb85ae 100644
--- a/hw/char/virtio-serial-bus.c
+++ b/hw/char/virtio-serial-bus.c
@@ -557,7 +557,6 @@ static uint64_t get_features(VirtIODevice *vdev, uint64_t features,
vser = VIRTIO_SERIAL(vdev);
- features |= vser->host_features;
if (vser->bus.max_nr_ports > 1) {
virtio_add_feature(&features, VIRTIO_CONSOLE_F_MULTIPORT);
}
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index aba12759d5..35b45eb6e3 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -777,9 +777,6 @@ static uint64_t virtio_net_get_features(VirtIODevice *vdev, uint64_t features,
VirtIONet *n = VIRTIO_NET(vdev);
NetClientState *nc = qemu_get_queue(n->nic);
- /* Firstly sync all virtio-net possible supported features */
- features |= n->host_features;
-
virtio_add_feature(&features, VIRTIO_NET_F_MAC);
if (!peer_has_vnet_hdr(n)) {
diff --git a/hw/scsi/vhost-scsi-common.c b/hw/scsi/vhost-scsi-common.c
index 767f827e55..8b26f90aa1 100644
--- a/hw/scsi/vhost-scsi-common.c
+++ b/hw/scsi/vhost-scsi-common.c
@@ -124,9 +124,6 @@ uint64_t vhost_scsi_common_get_features(VirtIODevice *vdev, uint64_t features,
{
VHostSCSICommon *vsc = VHOST_SCSI_COMMON(vdev);
- /* Turn on predefined features supported by this device */
- features |= vsc->host_features;
-
return vhost_get_features(&vsc->dev, vsc->feature_bits, features);
}
diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c
index 6f6e2e32ba..40e10322fb 100644
--- a/hw/scsi/virtio-scsi.c
+++ b/hw/scsi/virtio-scsi.c
@@ -817,10 +817,6 @@ static uint64_t virtio_scsi_get_features(VirtIODevice *vdev,
uint64_t requested_features,
Error **errp)
{
- VirtIOSCSI *s = VIRTIO_SCSI(vdev);
-
- /* Firstly sync all virtio-scsi possible supported features */
- requested_features |= s->host_features;
return requested_features;
}
diff --git a/hw/virtio/virtio-balloon.c b/hw/virtio/virtio-balloon.c
index 73ac5eb675..0e9ca71b15 100644
--- a/hw/virtio/virtio-balloon.c
+++ b/hw/virtio/virtio-balloon.c
@@ -796,8 +796,6 @@ static void virtio_balloon_set_config(VirtIODevice *vdev,
static uint64_t virtio_balloon_get_features(VirtIODevice *vdev, uint64_t f,
Error **errp)
{
- VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
- f |= dev->host_features;
virtio_add_feature(&f, VIRTIO_BALLOON_F_STATS_VQ);
return f;
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-21 15:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-21 15:48 [PATCH v3 0/3] virtio: remove unnecessary host_features in ->get_features() Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 1/3] target/ppc: Fix build warnings when building with 'disable-tcg' Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 2/3] virtio: document ->host_features usage in vdc->get_features() callback Stefan Hajnoczi
2022-11-21 15:48 ` [PATCH v3 3/3] virtio: remove unnecessary host_features in ->get_features() Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).