diff options
author | Juraj Sloboda <jsloboda@cisco.com> | 2018-10-01 12:42:07 +0200 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-10-02 12:21:36 +0000 |
commit | b192feba004e7a52b57ff9f68246b1c94e8b667b (patch) | |
tree | 01fc0f06005aba8e29f157a7b7d5147e2dbe73c4 /src/vnet/devices/virtio/vhost_user.h | |
parent | 83c46a2c5c97320e029b4dd154a45212530f221d (diff) |
vhost-user: Interface state updates
Fix inconsistencies between admin and link interface states
Admin down should imply link down:
link_up = admin_up && link_ready
Change-Id: I4d668d82d035b5d2ae508727f34f1722a0c3e677
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
Diffstat (limited to 'src/vnet/devices/virtio/vhost_user.h')
-rw-r--r-- | src/vnet/devices/virtio/vhost_user.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/devices/virtio/vhost_user.h b/src/vnet/devices/virtio/vhost_user.h index ff0669598c9..5bc36082a63 100644 --- a/src/vnet/devices/virtio/vhost_user.h +++ b/src/vnet/devices/virtio/vhost_user.h @@ -253,7 +253,7 @@ typedef struct typedef struct { CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); - u32 is_up; + u32 is_ready; u32 admin_up; u32 unix_server_index; u32 clib_file_index; |