[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL for-9.2 4/7] tests/9p: add missing Rgetattr response name
From: |
Christian Schoenebeck |
Subject: |
[PULL for-9.2 4/7] tests/9p: add missing Rgetattr response name |
Date: |
Thu, 28 Nov 2024 19:53:58 +0100 |
'Tgetattr' 9p request and its 'Rgetattr' response types are already used
by test client, however this response type is yet missing in function
rmessage_name(), so add it.
Fixes: a6821b828404 ("tests/9pfs: compare QIDs in fs_walk_none() test")
Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Message-Id:
<e183da80d390cfd7d55bdbce92f0ff6e3e5cdced.1732465720.git.qemu_oss@crudebyte.com>
---
tests/qtest/libqos/virtio-9p-client.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/qtest/libqos/virtio-9p-client.c
b/tests/qtest/libqos/virtio-9p-client.c
index c61632fcd3..98b77db51d 100644
--- a/tests/qtest/libqos/virtio-9p-client.c
+++ b/tests/qtest/libqos/virtio-9p-client.c
@@ -235,6 +235,7 @@ static const char *rmessage_name(uint8_t id)
id == P9_RMKDIR ? "RMKDIR" :
id == P9_RLCREATE ? "RLCREATE" :
id == P9_RSYMLINK ? "RSYMLINK" :
+ id == P9_RGETATTR ? "RGETATTR" :
id == P9_RLINK ? "RLINK" :
id == P9_RUNLINKAT ? "RUNLINKAT" :
id == P9_RFLUSH ? "RFLUSH" :
--
2.30.2
- [PULL for-9.2 0/7] 9p queue 2024-11-28, Christian Schoenebeck, 2024/11/28
- [PULL for-9.2 4/7] tests/9p: add missing Rgetattr response name,
Christian Schoenebeck <=
- [PULL for-9.2 6/7] 9pfs: fix 'Tgetattr' after unlink, Christian Schoenebeck, 2024/11/28
- [PULL for-9.2 7/7] tests/9p: also check 'Tgetattr' in 'use-after-unlink' test, Christian Schoenebeck, 2024/11/28
- [PULL for-9.2 2/7] tests/9p: add 'use-after-unlink' test, Christian Schoenebeck, 2024/11/28
- [PULL for-9.2 3/7] tests/9p: fix Rreaddir response name, Christian Schoenebeck, 2024/11/28
- [PULL for-9.2 1/7] 9pfs: cleanup V9fsFidState, Christian Schoenebeck, 2024/11/28
- [PULL for-9.2 5/7] 9pfs: remove obsolete comment in v9fs_getattr(), Christian Schoenebeck, 2024/11/28
- Re: [PULL for-9.2 0/7] 9p queue 2024-11-28, Peter Maydell, 2024/11/29