From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 757C818859B; Thu, 30 Oct 2025 01:00:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761786036; cv=none; b=YiId91nui1ExsU3o2oZluLW4RCCrX5+1Vxy/W6hDMWy5lioP5DR/Q7mxkDpRzaVbMdGz/n1p+LDOkkq6G6ZAWoJ7tTJJc5Mk46qhjJG7ohMPLFN8g8z4bWKd3brJd3DZnXbo41rnhSAG8mBaf79gvCjxaySwicsd1k2/DlGljGY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761786036; c=relaxed/simple; bh=9CpQD46gVkqEhgWniJBg3R6m/D/ettVhiiDDMTrdbhs=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=D2tYcGWVHWf54XC4YTt1s0Uvd8ObqTIqSiXKYohZvjIpiIDvfBjIVOcBvKN9LrztdUcnNV0BtaS+SecPqZfUmRlTNaW4F5Uvzx5V0dmm+OdyWqadLov3oRHBYtKhB0g3DixIGfqoOPDbTb30hEnCh7Mu55EjCCWQM/Rv3Td8Dbc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=s03gnIFy; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="s03gnIFy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0468CC4CEF7; Thu, 30 Oct 2025 01:00:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1761786036; bh=9CpQD46gVkqEhgWniJBg3R6m/D/ettVhiiDDMTrdbhs=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=s03gnIFye+GODHHou3jNIhpFV9EkCbyo1DIXnawbmmGYFYLCVcdG5Tmxf0SnvGOi/ g2O/JAG+VPXywz+Uw9Iy9AEpWhEtkFcWv5dg5bXiZcvw7aRx2U+bC9eybcMAkEi8gM ycMnG+3LyO94A3BxYcPa/4JlLetDWAl9kJf/ftJGD972cr26TZ3Oh1odGTAOCagEz3 JLXy42IsUgIumpaQ2yjESYShq2cJxDwlpvlXbZ22IpkEgLaYwtLFmhpsfi4ibLrcse 5qhSES3fITGwE+FcvuEDsWodywbpVYb+fgkieqYDtdfu1zsygJdt2g6+gawX0riZ3F JGXwpTapW3Ujg== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id 33DFC3A55EC7; Thu, 30 Oct 2025 01:00:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH v2] net: usb: asix_devices: Check return value of usbnet_get_endpoints From: patchwork-bot+netdevbpf@kernel.org Message-Id: <176178601301.3269431.1195749424522419303.git-patchwork-notify@kernel.org> Date: Thu, 30 Oct 2025 01:00:13 +0000 References: <20251026164318.57624-1-linmq006@gmail.com> In-Reply-To: <20251026164318.57624-1-linmq006@gmail.com> To: Miaoqian Lin Cc: andrew+netdev@lunn.ch, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, o.rempel@pengutronix.de, xu.yang_2@nxp.com, yuichtsu@amazon.com, max.schulze@online.de, khalasa@piap.pl, dhollis@davehollis.com, gregkh@suse.de, david-b@pacbell.net, linux-usb@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Mon, 27 Oct 2025 00:43:16 +0800 you wrote: > The code did not check the return value of usbnet_get_endpoints. > Add checks and return the error if it fails to transfer the error. > > Found via static anlaysis and this is similar to > commit 07161b2416f7 ("sr9800: Add check for usbnet_get_endpoints"). > > Fixes: 933a27d39e0e ("USB: asix - Add AX88178 support and many other changes") > Fixes: 2e55cc7210fe ("[PATCH] USB: usbnet (3/9) module for ASIX Ethernet adapters") > Cc: stable@vger.kernel.org > Signed-off-by: Miaoqian Lin > > [...] Here is the summary with links: - [v2] net: usb: asix_devices: Check return value of usbnet_get_endpoints https://git.kernel.org/netdev/net/c/dc89548c6926 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html