diff options
author | Adrian Villin <avillin@cisco.com> | 2024-12-03 11:12:53 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-12-05 16:36:15 +0000 |
commit | 91e63915e1d00888c56b344ad544cba14f60e15d (patch) | |
tree | a284636cacea4ecbf4064b064add7ffb22a37f72 /src | |
parent | 502461af6a2f53d6c45a76ed8716025c77061d72 (diff) |
tap: update tap_flags
- added TAP_API_FLAG_CONSISTENT_QP = 256
Type: improvement
Change-Id: I57d95503395baf265c29d48a92bd69347f0a7333
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/devices/tap/tapv2.api | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/devices/tap/tapv2.api b/src/vnet/devices/tap/tapv2.api index bf53d1bc6fe..fd3cd13860e 100644 --- a/src/vnet/devices/tap/tapv2.api +++ b/src/vnet/devices/tap/tapv2.api @@ -34,6 +34,7 @@ enum tap_flags { TAP_API_FLAG_GRO_COALESCE = 32, /* enable packet coalescing on tx side, provided gso enabled */ TAP_API_FLAG_PACKED = 64 [backwards_compatible], /* enable packed ring support */ TAP_API_FLAG_IN_ORDER = 128 [backwards_compatible], /* enable in-order desc support */ + TAP_API_FLAG_CONSISTENT_QP = 256 [backwards_compatible], /* enable consistent-qp */ }; /** \brief Initialize a new tap interface with the given parameters |