From f90bcee0944064fbe99571b772eef4baba32152e Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Mon, 4 Mar 2019 01:37:43 -0800 Subject: GBP: fix UT after multi-arch change Change-Id: I09c400d71b3c973341fd79fe9b6709592d96822c Signed-off-by: Neale Ranns --- src/plugins/gbp/gbp_sclass.h | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'src/plugins/gbp/gbp_sclass.h') diff --git a/src/plugins/gbp/gbp_sclass.h b/src/plugins/gbp/gbp_sclass.h index 07c5fffcc96..75e35c36bdf 100644 --- a/src/plugins/gbp/gbp_sclass.h +++ b/src/plugins/gbp/gbp_sclass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Cisco and/or its affiliates. + * Copyright (c) 2018 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: @@ -18,10 +18,24 @@ #include -extern void gbp_sclass_enable_ip (u32 sw_if_index); +/** + * Grouping of global data for the GBP source EPG classification feature + */ +typedef struct gbp_sclass_main_t_ +{ + /** + * Next nodes for L2 output features + */ + u32 gel_l2_input_feat_next[32]; + u32 gel_l2_output_feat_next[32]; +} gbp_sclass_main_t; + +extern gbp_sclass_main_t gbp_sclass_main; + extern void gbp_sclass_enable_l2 (u32 sw_if_index); -extern void gbp_sclass_disable_ip (u32 sw_if_index); extern void gbp_sclass_disable_l2 (u32 sw_if_index); +extern void gbp_sclass_enable_ip (u32 sw_if_index); +extern void gbp_sclass_disable_ip (u32 sw_if_index); #endif -- cgit 1.2.3-korg