Parcourir la source

qcacld-3.0: Pass the function name for control path skb allocation

Presently whenever the control path is allocating the skb it is
passing the filename rather than than the function name required
by the qdf nbuf framework which is not much useful since when the
absolute path of the filename is considered and that can be truncated
leaving with only linenumber to understand the issue.

Pass the function name so it would help in root-causing the issue.

Change-Id: I998a88a3d22354500f3d01d09c91f0367755a179
CRs-Fixed: 2659490
Arun Kumar Khandavalli il y a 5 ans
Parent
commit
c12256416b
2 fichiers modifiés avec 6 ajouts et 6 suppressions
  1. 3 3
      core/cds/inc/cds_packet.h
  2. 3 3
      core/cds/src/cds_packet.c

+ 3 - 3
core/cds/inc/cds_packet.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014-2016, 2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2014-2016, 2018, 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
@@ -70,10 +70,10 @@ QDF_STATUS cds_pkt_get_packet_length(cds_pkt_t *pPacket,
  */
 #ifdef MEMORY_DEBUG
 #define cds_packet_alloc(s, d, p)	\
-	cds_packet_alloc_debug(s, d, p, __FILE__, __LINE__)
+	cds_packet_alloc_debug(s, d, p, __func__, __LINE__)
 
 QDF_STATUS cds_packet_alloc_debug(uint16_t size, void **data, void **ppPacket,
-				  uint8_t *file_name, uint32_t line_num);
+				  const char *func_name, uint32_t line_num);
 #else
 QDF_STATUS cds_packet_alloc(uint16_t size, void **data, void **ppPacket);
 #endif

+ 3 - 3
core/cds/src/cds_packet.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014-2016, 2018-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2014-2016, 2018-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
@@ -97,7 +97,7 @@ cds_pkt_get_packet_length(cds_pkt_t *pPacket, uint16_t *pPacketSize)
       Allocate a network buffer for TX
    ---------------------------------------------------------------------------*/
 QDF_STATUS cds_packet_alloc_debug(uint16_t size, void **data, void **ppPacket,
-				  uint8_t *file_name, uint32_t line_num)
+				  const char *func_name, uint32_t line_num)
 {
 	QDF_STATUS qdf_ret_status = QDF_STATUS_E_FAILURE;
 	qdf_nbuf_t nbuf;
@@ -105,7 +105,7 @@ QDF_STATUS cds_packet_alloc_debug(uint16_t size, void **data, void **ppPacket,
 	nbuf = qdf_nbuf_alloc_debug(NULL,
 		roundup(size + TX_PKT_MIN_HEADROOM, 4),
 		TX_PKT_MIN_HEADROOM, sizeof(uint32_t), false,
-				     file_name, line_num);
+				     func_name, line_num);
 
 	if (nbuf) {
 		qdf_nbuf_put_tail(nbuf, size);