|
@@ -1,5 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2021 Qualcomm Innovation Center, Inc. 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
|
|
@@ -551,6 +552,7 @@ static QDF_STATUS nan_handle_confirm(struct nan_datapath_confirm_event *confirm)
|
|
|
struct wlan_objmgr_psoc *psoc;
|
|
|
struct nan_psoc_priv_obj *psoc_nan_obj;
|
|
|
struct nan_vdev_priv_obj *vdev_nan_obj;
|
|
|
+ struct wlan_objmgr_peer *peer;
|
|
|
|
|
|
vdev_id = wlan_vdev_get_id(confirm->vdev);
|
|
|
psoc = wlan_vdev_get_psoc(confirm->vdev);
|
|
@@ -559,6 +561,15 @@ static QDF_STATUS nan_handle_confirm(struct nan_datapath_confirm_event *confirm)
|
|
|
return QDF_STATUS_E_NULL_VALUE;
|
|
|
}
|
|
|
|
|
|
+ peer = wlan_objmgr_get_peer_by_mac(psoc,
|
|
|
+ confirm->peer_ndi_mac_addr.bytes,
|
|
|
+ WLAN_NAN_ID);
|
|
|
+ if (!peer) {
|
|
|
+ nan_debug("Drop NDP confirm as peer isn't available");
|
|
|
+ return QDF_STATUS_E_NULL_VALUE;
|
|
|
+ }
|
|
|
+ wlan_objmgr_peer_release_ref(peer, WLAN_NAN_ID);
|
|
|
+
|
|
|
psoc_nan_obj = nan_get_psoc_priv_obj(psoc);
|
|
|
if (!psoc_nan_obj) {
|
|
|
nan_err("psoc_nan_obj is null");
|