Browse Source

qcacld-3.0: Enable NBUF_MEMORY_DEBUG for SLUB builds

Network buffer debugging is being featurized as a separate feature from
regular memory debugging, and being controlled via the NBUF_MEMORY_DEBUG
build config flag. Enable NBUF_MEMORY_DEBUG for SLUB DEBUG builds to
retain the existing set of build time debug features.

Change-Id: Ib2ac2823ea5231508f4cca7d718ed266acd91274
CRs-Fixed: 2216804
Dustin Brown 7 years ago
parent
commit
63ef318a90
1 changed files with 6 additions and 7 deletions
  1. 6 7
      Kbuild

+ 6 - 7
Kbuild

@@ -2012,14 +2012,13 @@ ifeq ($(CONFIG_FEATURE_UNIT_TEST_SUSPEND), 1)
 	CDEFINES += -DWLAN_SUSPEND_RESUME_TEST
 endif
 
-ifeq ($(CONFIG_SLUB_DEBUG_ON),y)
-CDEFINES += -DTIMER_MANAGER
-CDEFINES += -DMEMORY_DEBUG
-CDEFINES += -DCONFIG_HALT_KMEMLEAK
-endif
-
 ifdef CONFIG_LEAK_DETECTION
-	CDEFINES += -DCONFIG_LEAK_DETECTION
+CDEFINES += \
+	-DCONFIG_HALT_KMEMLEAK \
+	-DCONFIG_LEAK_DETECTION \
+	-DMEMORY_DEBUG \
+	-DNBUF_MEMORY_DEBUG \
+	-DTIMER_MANAGER
 endif
 
 ifeq ($(HAVE_CFG80211),1)