|
@@ -143,4 +143,28 @@ static inline uint8_t qdf_nbuf_is_rx_ipa_smmu_map(qdf_nbuf_t buf)
|
|
|
{
|
|
|
return QDF_NBUF_CB_RX_PACKET_IPA_SMMU_MAP(buf);
|
|
|
}
|
|
|
+
|
|
|
+/**
|
|
|
+ * qdf_nbuf_set_rx_reo_dest_ind() - set reo destination indication
|
|
|
+ * @buf: Network buffer
|
|
|
+ * @value: reo destination indication value to set
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+static inline void qdf_nbuf_set_rx_reo_dest_ind(qdf_nbuf_t buf,
|
|
|
+ uint8_t value)
|
|
|
+{
|
|
|
+ QDF_NBUF_CB_RX_PACKET_REO_DEST_IND(buf) = value;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * qdf_nbuf_get_rx_reo_dest_ind() - get reo destination indication
|
|
|
+ * @buf: Network buffer
|
|
|
+ *
|
|
|
+ * Return reo destination indication value (0 ~ 31)
|
|
|
+ */
|
|
|
+static inline uint8_t qdf_nbuf_get_rx_reo_dest_ind(qdf_nbuf_t buf)
|
|
|
+{
|
|
|
+ return QDF_NBUF_CB_RX_PACKET_REO_DEST_IND(buf);
|
|
|
+}
|
|
|
#endif /* _QDF_NBUF_M_H */
|