aboutsummaryrefslogtreecommitdiff
path: root/lib/tran_sock.c
diff options
context:
space:
mode:
authorJohn Levon <john.levon@nutanix.com>2021-05-11 11:25:39 +0100
committerGitHub <noreply@github.com>2021-05-11 11:25:39 +0100
commit71f8b30557d3635336aec06c084188370ed5e248 (patch)
treeb8b6dc50ed36a64c4dc5b043d821f1925673e00d /lib/tran_sock.c
parent4a9df7bea8a96c6c415077cca4f2e90fc22de3f0 (diff)
downloadlibvfio-user-71f8b30557d3635336aec06c084188370ed5e248.zip
libvfio-user-71f8b30557d3635336aec06c084188370ed5e248.tar.gz
libvfio-user-71f8b30557d3635336aec06c084188370ed5e248.tar.bz2
some specification updates (#465)
Make a few specification updates after review by Stefan Hajnoczi. Signed-off-by: John Levon <john.levon@nutanix.com> Reviewed-by: Thanos Makatos <thanos.makatos@nutanix.com>
Diffstat (limited to 'lib/tran_sock.c')
-rw-r--r--lib/tran_sock.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/tran_sock.c b/lib/tran_sock.c
index 391859c..8de24bb 100644
--- a/lib/tran_sock.c
+++ b/lib/tran_sock.c
@@ -467,7 +467,7 @@ tran_sock_get_poll_fd(vfu_ctx_t *vfu_ctx)
*
* {
* "capabilities": {
- * "max_fds": 32,
+ * "max_msg_fds": 32,
* "migration": {
* "pgsize": 4096
* }
@@ -499,7 +499,7 @@ tran_parse_version_json(const char *json_str,
goto out;
}
- if (json_object_object_get_ex(jo_caps, "max_fds", &jo)) {
+ if (json_object_object_get_ex(jo_caps, "max_msg_fds", &jo)) {
if (json_object_get_type(jo) != json_type_int) {
goto out;
}
@@ -625,8 +625,8 @@ recv_version(vfu_ctx_t *vfu_ctx, int sock, uint16_t *msg_idp,
// FIXME: is the code resilient against ->client_max_fds == 0?
if (vfu_ctx->client_max_fds < 0 ||
- vfu_ctx->client_max_fds > VFIO_USER_CLIENT_MAX_FDS_LIMIT) {
- vfu_log(vfu_ctx, LOG_ERR, "refusing client max_fds of %d",
+ vfu_ctx->client_max_fds > VFIO_USER_CLIENT_MAX_MSG_FDS_LIMIT) {
+ vfu_log(vfu_ctx, LOG_ERR, "refusing client max_msg_fds of %d",
vfu_ctx->client_max_fds);
ret = EINVAL;
goto out;
@@ -659,7 +659,7 @@ send_version(vfu_ctx_t *vfu_ctx, int sock, uint16_t msg_id,
slen = snprintf(server_caps, sizeof(server_caps),
"{"
"\"capabilities\":{"
- "\"max_fds\":%u,"
+ "\"max_msg_fds\":%u,"
"\"max_msg_size\":%u"
"}"
"}", SERVER_MAX_FDS, SERVER_MAX_MSG_SIZE);
@@ -667,7 +667,7 @@ send_version(vfu_ctx_t *vfu_ctx, int sock, uint16_t msg_id,
slen = snprintf(server_caps, sizeof(server_caps),
"{"
"\"capabilities\":{"
- "\"max_fds\":%u,"
+ "\"max_msg_fds\":%u,"
"\"max_msg_size\":%u,"
"\"migration\":{"
"\"pgsize\":%zu"