Forráskód Böngészése

qcacld-3.0: Use link assoc req pointer to generate partner assoc request

Currently to copy the assoc request to partner link assoc request,
qdf_nbuf_clone is used. But qdf_nbuf_clone will just copy the skb
structure but not the original packet. Hence while updating link assoc
request, original assoc request is being updated. As a result ML
security connection is failing.

To resolve this, use qdf_nbuf_copy to copy assoc request to link assoc
request.

Change-Id: Id31d293300ab6471ede4b40a505ebf2495c432b5
CRs-Fixed: 3099473
Bapiraju Alla 3 éve
szülő
commit
52ce5baf65
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      core/mac/src/pe/lim/lim_mlo.c

+ 2 - 2
core/mac/src/pe/lim/lim_mlo.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 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 above
@@ -510,7 +510,7 @@ QDF_STATUS lim_mlo_proc_assoc_req_frm(struct wlan_objmgr_vdev *vdev,
 	if (!assoc_req)
 		return QDF_STATUS_E_NOMEM;
 
-	assoc_req->assoc_req_buf = qdf_nbuf_clone(buf);
+	assoc_req->assoc_req_buf = qdf_nbuf_copy(buf);
 	if (!assoc_req->assoc_req_buf) {
 		pe_err("partner link assoc request buf clone failed");
 		qdf_mem_free(assoc_req);