summaryrefslogtreecommitdiffstats
path: root/hw/virtio-9p-debug.c
diff options
context:
space:
mode:
authorVenkateswararao Jujjuri (JV) <jvrao@linux.vnet.ibm.com>2010-09-22 17:18:33 -0700
committerAnthony Liguori <aliguori@us.ibm.com>2010-10-20 12:10:58 -0500
commitb41e95d34877c1917ba9fca7ca8f5d4122d4c619 (patch)
tree9f6c5ed38ad9c9d467d8977ce11907babfd5b41a /hw/virtio-9p-debug.c
parent8f35400358488ffa1147e9eab9e2c9cf0efd5e4e (diff)
downloadhqemu-b41e95d34877c1917ba9fca7ca8f5d4122d4c619.zip
hqemu-b41e95d34877c1917ba9fca7ca8f5d4122d4c619.tar.gz
[virtio-9p] Introduce server side TFSYNC/RFSYNC for dotl
SYNOPSIS size[4] Tfsync tag[2] fid[4] size[4] Rfsync tag[2] DESCRIPTION The Tfsync transaction transfers ("flushes") all modified in-core data of file identified by fid to the disk device (or other permanent storage device) where that file resides. Signed-off-by: Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
Diffstat (limited to 'hw/virtio-9p-debug.c')
-rw-r--r--hw/virtio-9p-debug.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hw/virtio-9p-debug.c b/hw/virtio-9p-debug.c
index 85c9900..8f3c321 100644
--- a/hw/virtio-9p-debug.c
+++ b/hw/virtio-9p-debug.c
@@ -535,6 +535,13 @@ void pprint_pdu(V9fsPDU *pdu)
case P9_RCLUNK:
fprintf(llogfile, "RCLUNK: (");
break;
+ case P9_TFSYNC:
+ fprintf(llogfile, "TFSYNC: (");
+ pprint_int32(pdu, 0, &offset, "fid");
+ break;
+ case P9_RFSYNC:
+ fprintf(llogfile, "RFSYNC: (");
+ break;
case P9_TLINK:
fprintf(llogfile, "TLINK: (");
pprint_int32(pdu, 0, &offset, "fid");
OpenPOWER on IntegriCloud