[lvc-project] [PATCH] fix uninit value using in tg3_setup_fiber_mii_phy()
Michael Chan
michael.chan at broadcom.com
Fri Oct 3 00:00:34 MSK 2025
On Thu, Oct 2, 2025 at 2:12 AM Alexandr Sapozhnkiov <alsp705 at gmail.com> wrote:
>
> From: Alexandr Sapozhnikov <alsp705 at gmail.com>
>
> There is a way when we go to the goto fiber_setup_done label
> and the condition current_link_up && current_duplex == DUPLEX_FULL
> is met, then the tg3_setup_flow_control() function is executed with
> undefined values of local_adv and remote_adv.
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Signed-off-by: Alexandr Sapozhnikov <alsp705 at gmail.com>
> ---
> drivers/net/ethernet/broadcom/tg3.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
> index 1589a49b876c..1fa61328c1b9 100644
> --- a/drivers/net/ethernet/broadcom/tg3.c
> +++ b/drivers/net/ethernet/broadcom/tg3.c
> @@ -5802,7 +5802,7 @@ static int tg3_setup_fiber_mii_phy(struct tg3 *tp, bool force_reset)
> u32 current_speed = SPEED_UNKNOWN;
> u8 current_duplex = DUPLEX_UNKNOWN;
> bool current_link_up = false;
> - u32 local_adv, remote_adv, sgsr;
> + u32 local_adv = 0, remote_adv = 0, sgsr;
Looks like we don't have local and remote advertisement information in
this SGMII mode, so setting them to 0 is correct.
Much further down in this function we set local_adv and remote_adv to
0 for GMII mode. Could you remove those 2 lines now that they are no
longer needed? Thanks.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 5469 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://linuxtesting.org/pipermail/lvc-project/attachments/20251002/2ed3d62a/attachment.bin>
More information about the lvc-project
mailing list