[PATCH] ARM: module: Add ".ref.text" to arm unwind tables

2015-06-19 Thread Vignesh Radhakrishnan
else if (strcmp(".text.hot", secname) == 0) maps[ARM_SEC_HOT].txt_sec = s; + else if (strcmp(".ref.text", secname) == 0) + maps[ARM_SEC_REF].txt_sec = s; } for (i = 0; i < ARM_SEC_MAX; i++) -- 1.8.2.

[PATCH] ARM: module: Add ".ref.text" to arm unwind tables

2015-05-13 Thread Vignesh Radhakrishnan
x not found bf0011e0 This is because slub debug saves stack trace of allocation's and free's. Therefore, we end up seeing a flood of these messages in dmesg since its not able to locate these functions. Fix this by adding .ref.text section to arm unwind tables. Signed-off-by: Vignes