diff options
author | Damjan Marion <damarion@cisco.com> | 2016-11-02 15:51:12 +0100 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2016-11-02 16:42:58 +0000 |
commit | 3a8345f6e0b66bf165b11b767d1f6da4b35bc280 (patch) | |
tree | 659f89d0869ab69319545611f5141943134b2600 | |
parent | d7724759fdf74205107b86f8b0afb2dc32d75733 (diff) |
ethernet: fix wrong start node for ethernet tx feature path
Change-Id: I3e02588e8c05ec50eacbe7c10cd5ac185daad43b
Signed-off-by: Damjan Marion <damarion@cisco.com>
-rw-r--r-- | vnet/vnet/ethernet/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnet/vnet/ethernet/init.c b/vnet/vnet/ethernet/init.c index 21817296a54..b636c4af1a8 100644 --- a/vnet/vnet/ethernet/init.c +++ b/vnet/vnet/ethernet/init.c @@ -62,7 +62,7 @@ add_type (ethernet_main_t * em, ethernet_type_t type, char *type_name) } static char *feature_start_nodes[] = { - "adj-midchain-tx-no-count", + "adj-l2-midchain", }; /* Built-in ip4 tx feature path definition */ |