mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-11 17:10:13 +00:00
Compiler reports potential uses of uninitialized variables in
mptcp_connect.c when xerror() is called from failure paths.
mptcp_connect.c:1262:11: warning: variable 'raw_addr' is used
uninitialized whenever 'if' condition is false
[-Wsometimes-uninitialized]
xerror() terminates execution by calling exit(), but it is not visible
to the compiler & assumes control flow may continue past the call.
Annotate xerror() with __noreturn so the compiler can correctly reason
about control flow and avoid false-positive uninitialized variable
warnings.
Signed-off-by: Ankit Khushwaha <ankitkhushwaha.linux@gmail.com>
Link: https://patch.msgid.link/20260101172840.90186-1-ankitkhushwaha.linux@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
39 lines
719 B
Makefile
39 lines
719 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
top_srcdir = ../../../../..
|
|
|
|
CFLAGS += -Wall -Wl,--no-as-needed -O2 -g -I$(top_srcdir)/usr/include $(KHDR_INCLUDES)
|
|
CFLAGS += -I$(top_srcdir)/tools/include
|
|
|
|
TEST_PROGS := \
|
|
diag.sh \
|
|
mptcp_connect.sh \
|
|
mptcp_connect_checksum.sh \
|
|
mptcp_connect_mmap.sh \
|
|
mptcp_connect_sendfile.sh \
|
|
mptcp_join.sh \
|
|
mptcp_sockopt.sh \
|
|
pm_netlink.sh \
|
|
simult_flows.sh \
|
|
userspace_pm.sh \
|
|
# end of TEST_PROGS
|
|
|
|
TEST_GEN_FILES := \
|
|
mptcp_connect \
|
|
mptcp_diag \
|
|
mptcp_inq \
|
|
mptcp_sockopt \
|
|
pm_nl_ctl \
|
|
# end of TEST_GEN_FILES
|
|
|
|
TEST_FILES := \
|
|
mptcp_lib.sh \
|
|
settings \
|
|
# end of TEST_FILES
|
|
|
|
TEST_INCLUDES := ../lib.sh $(wildcard ../lib/sh/*.sh)
|
|
|
|
EXTRA_CLEAN := *.pcap
|
|
|
|
include ../../lib.mk
|