|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -652,6 +652,24 @@ struct pe_session *pe_find_session_by_bssid(struct mac_context *mac, uint8_t *bs
|
|
|
struct pe_session *pe_find_session_by_vdev_id(struct mac_context *mac,
|
|
|
uint8_t vdev_id);
|
|
|
|
|
|
+/**
|
|
|
+ * pe_find_session_by_vdev_id_and_state() - Find PE session by vdev_id and
|
|
|
+ * mlm state.
|
|
|
+ * @mac: pointer to global adapter context
|
|
|
+ * @vdev_id: vdev id the session
|
|
|
+ * @vdev_id: vdev id the session
|
|
|
+ *
|
|
|
+ * During LFR2 roaming, new pe session is created before old pe session
|
|
|
+ * deleted, the 2 pe sessions have different pe session id, but same vdev id,
|
|
|
+ * can't get correct pe session by vdev id at this time.
|
|
|
+ *
|
|
|
+ * Return: pointer to the session context or NULL if session is not found.
|
|
|
+ */
|
|
|
+struct pe_session
|
|
|
+*pe_find_session_by_vdev_id_and_state(struct mac_context *mac,
|
|
|
+ uint8_t vdev_id,
|
|
|
+ enum eLimMlmStates lim_state);
|
|
|
+
|
|
|
/**
|
|
|
* pe_find_session_by_peer_sta() - looks up the PE session given the Peer
|
|
|
* Station Address.
|