The patch titled Subject: debugobjects: correct the usage of fixup call results has been removed from the -mm tree. Its filename was debugobjects-correct-the-usage-of-fixup-call-results.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: "Du, Changbin" <changbin.du@xxxxxxxxx> Subject: debugobjects: correct the usage of fixup call results If debug_object_fixup() return non-zero when problem has been fixed. But the code got it backwards, it taks 0 as fixup successfully. So fix it. Signed-off-by: Du, Changbin <changbin.du@xxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Cc: Josh Triplett <josh@xxxxxxxxxx> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Cc: Christian Borntraeger <borntraeger@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/debugobjects.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/debugobjects.c~debugobjects-correct-the-usage-of-fixup-call-results lib/debugobjects.c --- a/lib/debugobjects.c~debugobjects-correct-the-usage-of-fixup-call-results +++ a/lib/debugobjects.c @@ -415,7 +415,7 @@ int debug_object_activate(void *addr, st state = obj->state; raw_spin_unlock_irqrestore(&db->lock, flags); ret = debug_object_fixup(descr->fixup_activate, addr, state); - return ret ? -EINVAL : 0; + return ret ? 0 : -EINVAL; case ODEBUG_STATE_DESTROYED: debug_print_object(obj, "activate"); _ Patches currently in -mm which might be from changbin.du@xxxxxxxxx are checkpatch-add-support-to-check-already-applied-git-commits.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html