]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/9p: add missing Rgetattr response name
authorChristian Schoenebeck <qemu_oss@crudebyte.com>
Sun, 24 Nov 2024 14:49:55 +0000 (15:49 +0100)
committerMichael Tokarev <mjt@tls.msk.ru>
Sat, 30 Nov 2024 07:47:18 +0000 (10:47 +0300)
'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>
(cherry picked from commit 4ec984965079b51a9afce339af75edea6de973a2)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
tests/qtest/libqos/virtio-9p-client.c

index c61632fcd361e07856e3f58052423fba0ffc2011..98b77db51d7703b80a77c7bd78fe60788c396fdd 100644 (file)
@@ -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" :