Re: [PATCH v2] rxrpc/proc: size address buffers for %pISpc output
From: David Howells
Date: Wed Apr 08 2026 - 04:11:05 EST
Pengpeng Hou <pengpeng@xxxxxxxxxxx> wrote:
> - char lbuff[50], rbuff[50];
> + char lbuff[RXRPC_PROC_ADDRBUF_SIZE], rbuff[RXRPC_PROC_ADDRBUF_SIZE];
This might be saved upstream by the compiler padding the buffers out to
sizeof(long) because they're on the stack.
David