[Qemu-devel] [PULL 24/35] qemu/queue.h: do not access tqe_prev directly

Paolo Bonzini posted 35 patches 5 years, 6 months ago
There is a newer version of this series
[Qemu-devel] [PULL 24/35] qemu/queue.h: do not access tqe_prev directly
Posted by Paolo Bonzini 5 years, 6 months ago
Use the QTAILQ_IN_USE macro instead, it does the same thing but the next
patch will change it to a different definition.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 blockdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/blockdev.c b/blockdev.c
index e6c8349409..20a5aa56b2 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -4254,7 +4254,7 @@ void qmp_blockdev_del(const char *node_name, Error **errp)
         goto out;
     }
 
-    if (!bs->monitor_list.tqe_prev) {
+    if (!QTAILQ_IN_USE(bs, monitor_list)) {
         error_setg(errp, "Node %s is not owned by the monitor",
                    bs->node_name);
         goto out;
-- 
2.20.1