Merge tag 'v4.9.127' into odroidn2-4.9.y

This is the 4.9.127 stable release
This commit is contained in:
Mauro (mdrjr) Ribeiro
2018-11-28 18:25:24 +09:00
82 changed files with 378 additions and 194 deletions

View File

@@ -293,13 +293,14 @@ static void debug_object_is_on_stack(void *addr, int onstack)
return;
limit++;
if (is_on_stack) {
pr_warn("object %p is on stack %p, but NOT annotated\n", addr,
task_stack_page(current));
} else {
pr_warn("object %p is NOT on stack %p, but annotated\n", addr,
task_stack_page(current));
}
if (is_on_stack)
pr_warn("object %p is on stack %p, but NOT annotated.\n", addr,
task_stack_page(current));
else
pr_warn("object %p is NOT on stack %p, but annotated.\n", addr,
task_stack_page(current));
WARN_ON(1);
}