mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
net: netconsole: remove msg_ready variable
Variable msg_ready is useless, since it does not represent anything. Get rid of it, using buf directly instead. Signed-off-by: Breno Leitao <leitao@debian.org> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
867d13a754
commit
ab49de0f7a
|
|
@ -1075,7 +1075,6 @@ static void send_ext_msg_udp(struct netconsole_target *nt, const char *msg,
|
|||
const char *header, *body;
|
||||
int offset = 0;
|
||||
int header_len, body_len;
|
||||
const char *msg_ready = msg;
|
||||
const char *release;
|
||||
int release_len = 0;
|
||||
int userdata_len = 0;
|
||||
|
|
@ -1105,8 +1104,7 @@ static void send_ext_msg_udp(struct netconsole_target *nt, const char *msg,
|
|||
MAX_PRINT_CHUNK - msg_len,
|
||||
"%s", userdata);
|
||||
|
||||
msg_ready = buf;
|
||||
netpoll_send_udp(&nt->np, msg_ready, msg_len);
|
||||
netpoll_send_udp(&nt->np, buf, msg_len);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user