diff options
| author | Rajeev Kumar <rajekuma@codeaurora.org> | 2017-04-07 20:38:49 -0700 |
|---|---|---|
| committer | Sandeep Puligilla <spuligil@codeaurora.org> | 2017-04-10 16:36:35 -0700 |
| commit | ed2db0cee8d4337286e76c4734eb6b4196359d05 (patch) | |
| tree | f17597b1f24c810965459c60f1d2d375cf3aa262 | |
| parent | 4f4baccfc1f095141d6cc0d3d16f39d18be7ddbd (diff) | |
qcacmn: Enable kernel panic on memory leak
Enable kernel panic on memory leak such that all basic memory
leak issues are reported every time and gets fixed on priority.
Change-Id: Ie990fa5bc4435ab717277578fa3a2ea71925e6d1
CRs-Fixed: 2030988
| -rw-r--r-- | qdf/linux/src/qdf_mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qdf/linux/src/qdf_mem.c b/qdf/linux/src/qdf_mem.c index da7a2f7bfe41..203cb76d5af0 100644 --- a/qdf/linux/src/qdf_mem.c +++ b/qdf/linux/src/qdf_mem.c @@ -848,7 +848,7 @@ void qdf_mem_clean(void) prev_mleak_line_num, prev_mleak_sz); } #ifdef CONFIG_HALT_KMEMLEAK - BUG_ON(0); + BUG_ON(1); #endif } } |
