Documentation/.renames.txt: warning: ignored by one of the .gitignore files Documentation/.renames.txt: warning: ignored by one of the .gitignore files ../net/xdp/xsk.c:183:6: warning: variable 'err' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] 183 | if (xskq_prod_nb_free(xs->rx, num_desc) < num_desc) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../net/xdp/xsk.c:201:9: note: uninitialized use occurs here 201 | return err; | ^~~ ../net/xdp/xsk.c:183:2: note: remove the 'if' if its condition is always false 183 | if (xskq_prod_nb_free(xs->rx, num_desc) < num_desc) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 184 | xs->rx_queue_full++; | ~~~~~~~~~~~~~~~~~~~~ 185 | goto err; | ~~~~~~~~~ 186 | } | ~ ../net/xdp/xsk.c:171:9: note: initialize the variable 'err' to silence this warning 171 | int err; | ^ | = 0 1 warning generated. New errors added --- /tmp/tmp.3OwxxN0AW6 2026-02-16 20:47:40.686166332 -0500 +++ /tmp/tmp.0ByH9CqxOJ 2026-02-16 20:48:32.395650067 -0500 @@ -1,0 +2,20 @@ +../net/xdp/xsk.c:183:6: warning: variable 'err' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] + 183 | if (xskq_prod_nb_free(xs->rx, num_desc) < num_desc) { + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../net/xdp/xsk.c:201:9: note: uninitialized use occurs here + 201 | return err; + | ^~~ +../net/xdp/xsk.c:183:2: note: remove the 'if' if its condition is always false + 183 | if (xskq_prod_nb_free(xs->rx, num_desc) < num_desc) { + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 184 | xs->rx_queue_full++; + | ~~~~~~~~~~~~~~~~~~~~ + 185 | goto err; + | ~~~~~~~~~ + 186 | } + | ~ +../net/xdp/xsk.c:171:9: note: initialize the variable 'err' to silence this warning + 171 | int err; + | ^ + | = 0 +1 warning generated. Per-file breakdown --- /tmp/tmp.35OaALP9n2 2026-02-16 20:49:18.011194645 -0500 +++ /tmp/tmp.aQ1BJsytqa 2026-02-16 20:49:18.013423292 -0500 @@ -0,0 +1 @@ + 2 ../net/xdp/xsk.c