diff options
author | Fahad Naeem <fahadnaeemkhan@gmail.com> | 2022-04-04 10:31:04 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-05-04 15:18:18 +0000 |
commit | 08183d790401a978b1af61f9b072d5a0526fde73 (patch) | |
tree | c70e95dfa668b1d67b4723c33a46b833411fcf43 /src/vnet | |
parent | 98ca76ab87c63a43b9bba6366ee5ca405709b6bc (diff) |
vhost: use_custom_mac set in create_vhost_user_if_v2
Type: fix
set use_custom_mac for args in create_vhost_user_if_v2 API
Add testcase for custom mac-address
Signed-off-by: Fahad Naeem <fahadnaeemkhan@gmail.com>
Change-Id: Iac64d818e0f1e6d36187fe769ee33d202aaafd05
Signed-off-by: Fahad Naeem <fahadnaeemkhan@gmail.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/devices/virtio/vhost_user_api.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/devices/virtio/vhost_user_api.c b/src/vnet/devices/virtio/vhost_user_api.c index df6768d4cde..6dd9da08a23 100644 --- a/src/vnet/devices/virtio/vhost_user_api.c +++ b/src/vnet/devices/virtio/vhost_user_api.c @@ -168,6 +168,7 @@ vl_api_create_vhost_user_if_v2_t_handler (vl_api_create_vhost_user_if_v2_t * if (mp->use_custom_mac) mac_address_decode (mp->mac_address, (mac_address_t *) args.hwaddr); + args.use_custom_mac = mp->use_custom_mac; args.is_server = mp->is_server; args.sock_filename = (char *) mp->sock_filename; args.renumber = mp->renumber; |