[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 1/8] qemu/queue.h: do not access tqe_prev directly
From: |
Paolo Bonzini |
Subject: |
[Qemu-devel] [PATCH 1/8] qemu/queue.h: do not access tqe_prev directly |
Date: |
Mon, 10 Dec 2018 19:28:09 +0100 |
Use the QTAILQ_IN_USE macro instead, it does the same thing but in a
few patches its definition will change.
Signed-off-by: Paolo Bonzini <address@hidden>
---
blockdev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blockdev.c b/blockdev.c
index 81f95d920b..7604b2183b 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -4259,7 +4259,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.19.2
- [Qemu-devel] [PATCH for-4.0 v2 0/8] qemu/queue.h usage cleanup, improved QTAILQ API, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 1/8] qemu/queue.h: do not access tqe_prev directly,
Paolo Bonzini <=
- [Qemu-devel] [PATCH 2/8] vfio: make vfio_address_spaces static, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 3/8] qemu/queue.h: leave head structs anonymous unless necessary, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 5/8] qemu/queue.h: remove Q_TAILQ_{HEAD, ENTRY}, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 4/8] qemu/queue.h: typedef QTAILQ heads, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 6/8] qemu/queue.h: reimplement QTAILQ without pointer-to-pointers, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 8/8] checkpatch: warn about qemu/queue.h head structs that are not typedef-ed, Paolo Bonzini, 2018/12/10
- [Qemu-devel] [PATCH 7/8] qemu/queue.h: simplify reverse access to QTAILQ, Paolo Bonzini, 2018/12/10