qcacmn: Add dest mac addr in MSCS lookup API

Add dest mac address MSCS prioroty lookup API

Change-Id: If7f65af1821d6e7c37441521dc46789c9b4f9069
This commit is contained in:
Mainak Sen
2021-05-13 11:25:05 +05:30
committed by Madan Koyyalamudi
parent 9738504384
commit 162fb50fec
2 changed files with 8 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2020 The Linux Foundation. All rights reserved. * Copyright (c) 2020-2021 The Linux Foundation. All rights reserved.
* *
* Permission to use, copy, modify, and/or distribute this software for * Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the * any purpose with or without fee is hereby granted, provided that the
@@ -31,13 +31,14 @@
* This function checks if there is a peer for this mac adress with MSCS * This function checks if there is a peer for this mac adress with MSCS
* enabled flag set and nbuf priority is valid from user priority bitmap. * enabled flag set and nbuf priority is valid from user priority bitmap.
* *
* @param peer_mac - mac address of peer * @param src_mac - source mac address of peer
* @param dst_mac - destination mac address of peer
* @param nbuf - nbuf pointer * @param nbuf - nbuf pointer
* @return - 0 for non error case, 1 for failure * @return - 0 for non error case, 1 for failure
*/ */
static inline int static inline int
cdp_mscs_peer_lookup_n_get_priority(ol_txrx_soc_handle soc, cdp_mscs_peer_lookup_n_get_priority(ol_txrx_soc_handle soc,
uint8_t *peer_mac, uint8_t *src_mac, uint8_t *dst_mac,
qdf_nbuf_t nbuf) qdf_nbuf_t nbuf)
{ {
if (!soc || !soc->ops || !soc->ops->mscs_ops) { if (!soc || !soc->ops || !soc->ops->mscs_ops) {
@@ -48,7 +49,7 @@ cdp_mscs_peer_lookup_n_get_priority(ol_txrx_soc_handle soc,
if (soc->ops->mscs_ops->mscs_peer_lookup_n_get_priority) if (soc->ops->mscs_ops->mscs_peer_lookup_n_get_priority)
return soc->ops->mscs_ops->mscs_peer_lookup_n_get_priority(soc, return soc->ops->mscs_ops->mscs_peer_lookup_n_get_priority(soc,
peer_mac, nbuf); src_mac, dst_mac, nbuf);
return 0; return 0;
} }
#endif #endif

View File

@@ -1720,8 +1720,9 @@ struct cdp_cfr_ops {
*/ */
struct cdp_mscs_ops { struct cdp_mscs_ops {
int (*mscs_peer_lookup_n_get_priority)(struct cdp_soc_t *soc, int (*mscs_peer_lookup_n_get_priority)(struct cdp_soc_t *soc,
uint8_t *peer_mac, uint8_t *src_mac,
qdf_nbuf_t nbuf); uint8_t *dst_mac,
qdf_nbuf_t nbuf);
}; };
#endif #endif