]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: netconsole: remove msg_ready variable
authorBreno Leitao <leitao@debian.org>
Thu, 17 Oct 2024 09:50:16 +0000 (02:50 -0700)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 22 Oct 2024 13:44:24 +0000 (15:44 +0200)
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>
drivers/net/netconsole.c

index de20928f740211a55fe288cd83230a026237c8b5..a006507c92c6f74f304ebf6523f752e722515b0e 100644 (file)
@@ -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;
        }