Searched refs:tx_info (Results 1 – 3 of 3) sorted by relevance
162 const struct br_cfm_cc_ccm_tx_info *const tx_info) in ccm_frame_build() argument198 ether_addr_copy(eth_hdr->h_dest, tx_info->dmac.addr); in ccm_frame_build()212 if (tx_info->seq_no_update) { in ccm_frame_build()236 if (tx_info->port_tlv) { in ccm_frame_build()240 (tx_info->port_tlv_value & 0xFF)); in ccm_frame_build()244 if (tx_info->if_tlv) { in ccm_frame_build()248 (tx_info->if_tlv_value & 0xFF)); in ccm_frame_build()763 const struct br_cfm_cc_ccm_tx_info *const tx_info, in br_cfm_cc_ccm_tx() argument777 if (memcmp(tx_info, &mep->cc_ccm_tx_info, sizeof(*tx_info)) == 0) { in br_cfm_cc_ccm_tx()785 usecs_to_jiffies(tx_info->period * 1000000); in br_cfm_cc_ccm_tx()[all …]
321 struct br_cfm_cc_ccm_tx_info tx_info; in br_cc_ccm_tx_parse() local363 memset(&tx_info, 0, sizeof(tx_info)); in br_cc_ccm_tx_parse()366 nla_memcpy(&tx_info.dmac.addr, in br_cc_ccm_tx_parse()368 sizeof(tx_info.dmac.addr)); in br_cc_ccm_tx_parse()369 tx_info.seq_no_update = nla_get_u32(tb[IFLA_BRIDGE_CFM_CC_CCM_TX_SEQ_NO_UPDATE]); in br_cc_ccm_tx_parse()370 tx_info.period = nla_get_u32(tb[IFLA_BRIDGE_CFM_CC_CCM_TX_PERIOD]); in br_cc_ccm_tx_parse()371 tx_info.if_tlv = nla_get_u32(tb[IFLA_BRIDGE_CFM_CC_CCM_TX_IF_TLV]); in br_cc_ccm_tx_parse()372 tx_info.if_tlv_value = nla_get_u8(tb[IFLA_BRIDGE_CFM_CC_CCM_TX_IF_TLV_VALUE]); in br_cc_ccm_tx_parse()373 tx_info.port_tlv = nla_get_u32(tb[IFLA_BRIDGE_CFM_CC_CCM_TX_PORT_TLV]); in br_cc_ccm_tx_parse()374 tx_info.port_tlv_value = nla_get_u8(tb[IFLA_BRIDGE_CFM_CC_CCM_TX_PORT_TLV_VALUE]); in br_cc_ccm_tx_parse()[all …]
89 const struct br_cfm_cc_ccm_tx_info *const tx_info,