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

Commit 0491805b authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kgsl: Make the fence names more readable"

parents c9b2db6e 3c4d3868
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -339,10 +339,10 @@ int kgsl_sync_timeline_create(struct kgsl_context *context)
		return -ENOENT;

	snprintf(ktimeline_name, sizeof(ktimeline_name),
		"%s_%.15s(%d)-%.15s(%d)-%d",
		context->device->name,
		"%s_%d-%.15s(%d)-%.15s(%d)",
		context->device->name, context->id,
		current->group_leader->comm, current->group_leader->pid,
		current->comm, current->pid, context->id);
		current->comm, current->pid);

	ktimeline = kzalloc(sizeof(*ktimeline), GFP_KERNEL);
	if (ktimeline == NULL) {