aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Henderson <william.henderson@nutanix.com>2023-08-24 08:49:28 +0000
committerJohn Levon <john.levon@nutanix.com>2023-09-15 13:06:41 +0100
commitaf49c4b40ce8d545b076a465de899781043676a0 (patch)
tree15d2d1fea3294d40fb596766e4f3303b2439cae3
parente746e82b82d5d281ba449162401ea11efd2954e0 (diff)
downloadlibvfio-user-af49c4b40ce8d545b076a465de899781043676a0.zip
libvfio-user-af49c4b40ce8d545b076a465de899781043676a0.tar.gz
libvfio-user-af49c4b40ce8d545b076a465de899781043676a0.tar.bz2
fix: argsz semantics in the spec
Signed-off-by: William Henderson <william.henderson@nutanix.com>
-rw-r--r--docs/vfio-user.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/vfio-user.rst b/docs/vfio-user.rst
index 047569a..f67ce86 100644
--- a/docs/vfio-user.rst
+++ b/docs/vfio-user.rst
@@ -1488,7 +1488,7 @@ The request payload for this message is a structure of the following format.
| data | 8 | variable |
+-------+--------+--------------------------------+
-* *argsz* is the size of the above structure.
+* *argsz* is the maximum size of the reply payload.
* *flags* defines the action to be performed by the server and upon which
feature:
@@ -1787,7 +1787,7 @@ The request payload for this message is a structure of the following format.
| size | 4 | 4 |
+-------+--------+------+
-* *argsz* is the size of the above structure.
+* *argsz* is the maximum size of the reply payload.
* *size* is the size of the migration data to read.
@@ -1806,7 +1806,7 @@ The reply payload for this message is a structure of the following format.
| data | 8 | variable |
+-------+--------+----------+
-* *argsz* is the size of the above structure.
+* *argsz* is the size of the above structure, including the size of the data.
* *size* indicates the size of returned migration data. If this is less than the
requested size, there is no more migration data to read.
@@ -1837,7 +1837,7 @@ The request payload for this message is a structure of the following format.
| data | 8 | variable |
+-------+--------+----------+
-* *argsz* is the size of the above structure.
+* *argsz* is the maximum size of the reply payload.
* *size* is the size of the migration data to be written.