Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions source/TR-181/middle_layer_src/ethernet_apis.c
Original file line number Diff line number Diff line change
Expand Up @@ -1075,6 +1075,11 @@ static ANSC_STATUS EthLink_CreateMarkingTable( PDML_ETHERNET pEntry, vlan_config
return ANSC_STATUS_FAILURE;
}

#ifndef FEATURE_WANMGR_L2_MARKING /* WanManager owns L2 Marking */
/* Marking table should be created dynamically based on the virtual interface marking entry from WanManager. */
/* But this is difficult, because the VlanManager's marking table is a static table. So keeping VlanManager's */
/* marking table as empty and WanManager handles the QoS egress setting */

PDML_ETHERNET p_EthLink = NULL;
int iLoopCount = 0;

Expand Down Expand Up @@ -1114,6 +1119,9 @@ static ANSC_STATUS EthLink_CreateMarkingTable( PDML_ETHERNET pEntry, vlan_config
}

CcspTraceInfo(("%s : Successfully Created EthLinkTable\n", __FUNCTION__));

#endif //FEATURE_WANMGR_L2_MARKING

return ANSC_STATUS_SUCCESS;
}

Expand Down