| 2915 | } |
| 2916 | |
| 2917 | static int |
| 2918 | send_vhost_message(struct virtio_net *dev, int sockfd, struct vhu_msg_context *ctx) |
| 2919 | { |
| 2920 | if (!ctx) |
| 2921 | return 0; |
| 2922 | |
| 2923 | return send_fd_message(dev->ifname, sockfd, (char *)&ctx->msg, |
| 2924 | VHOST_USER_HDR_SIZE + ctx->msg.size, ctx->fds, ctx->fd_num); |
| 2925 | } |
| 2926 | |
| 2927 | static int |
| 2928 | send_vhost_reply(struct virtio_net *dev, int sockfd, struct vhu_msg_context *ctx) |
no test coverage detected