Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d67f1ec6 authored by Jordan Crouse's avatar Jordan Crouse Committed by Gerrit - the friendly Code Review server
Browse files

sync: Only print details for active fences



Only call the pt_log callback for active fences.

CRs-Fixed: 744197
Change-Id: Ic0dedbadf0f5979fc155cdef332fedda9047f440
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent bdbe9b16
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -620,7 +620,8 @@ static void sync_pt_log(struct sync_pt *pt)

	pr_cont("\n");

	if (pt->parent->ops->pt_log)
	/* Show additional details for active fences */
	if (pt->status == 0 && pt->parent->ops->pt_log)
		pt->parent->ops->pt_log(pt);
}