qosmngr: fix port related config issue

Bug found in specifying input port as classification criteria,
fixed with this change.
This commit is contained in:
Rahul 2020-05-23 19:32:23 +05:30
parent 56273668d6
commit ef4570dd83

View file

@ -117,7 +117,11 @@ handle_ebtables_rules() {
init_broute_rule
config_get src_if "$sid" "ifname"
[ -n "$src_if" ] && broute_filter_on_src_if $src_if
if [ -n "$src_if" ]; then
src_if="$src_if+"
broute_filter_on_src_if $src_if
fi
config_get src_mac "$sid" "src_mac"
[ -n "$src_mac" ] && broute_filter_on_src_mac $src_mac
config_get dst_mac "$sid" "dst_mac"