Commit 899385b0 authored by Carlos Llamas's avatar Carlos Llamas Committed by Greg Kroah-Hartman
Browse files

binder: fix reversed pid/tid in log



The "pid:tid" format is used consistently throughout the driver's logs
with the exception of this one place where the arguments are reversed.
Let's fix that. Also, collapse a multi-line comment into a single line.

Cc: Steven Moreland <smoreland@google.com>
Signed-off-by: default avatarCarlos Llamas <cmllamas@google.com>
Reviewed-by: default avatarAlice Ryhl <aliceryhl@google.com>
Link: https://lore.kernel.org/r/20250605141930.1069438-1-cmllamas@google.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0ef1fe4b
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -3144,10 +3144,8 @@ static void binder_transaction(struct binder_proc *proc,
		}
		if (!target_node) {
			binder_txn_error("%d:%d cannot find target node\n",
				thread->pid, proc->pid);
			/*
			 * return_error is set above
			 */
					 proc->pid, thread->pid);
			/* return_error is set above */
			return_error_param = -EINVAL;
			return_error_line = __LINE__;
			goto err_dead_binder;