From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 C0C3C3C9893; Mon, 17 Aug 2026 13:52:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786974778; cv=none; b=Zmm+/dZKXkvQj2pJYNtouTqtTHQWwGp02MA05+ibZYr3vANhue5bDoxMlVVFZXAg/My0HadYjvk47JHlsf/8wX6+51dLTeod2M9g/UAis62k/YFscn1NGImgWUJqLwzZ3ikVZv1kvkkcZh6akKXraxQKndrfzlfju5mL6NaexAk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786974778; c=relaxed/simple; bh=kGnHsouTsyBy+VJM/8Jm77CiTQV2LssmBkKPEAGcSiw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Rqx/DvTHREwW9YEPcPbY7PjGRNWVIY50CeW2Elfj5jjKF91HCwyBxZY94frfS4LxyQbe4zn6bSCJELbg7NV+ZVks8dgkESBiQ/6lEUINQBC8AMy1C7yFaAs/d0lXhZyCJKiBlWYSAzCxLS6XgElYiXr+ugoVgbqzZCQ8c9lz2ig= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hUIM48Kk; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="hUIM48Kk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6CCC61F000E9; Mon, 17 Aug 2026 13:52:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786974770; bh=JZrYln9A5qCCCGglBY3F/wPq4RITeQ6aEHQ0Olw6us4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=hUIM48KkDCvsVBeTt8UEOnMG16gEc7IpaMaACBPz+YYQAeYAByiiRPNZFwHr77pfZ A6W6FG5m7e+NP3aF0WUWFWMvlipUv7vmimbnFxW2Xef3ati6aOQd3/ymcDqbuUPBBW hl1OxXVgchI50sDo3RSxYFrd3e52ijO7Z2/jVV48= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jiawen Liu <1298662399@qq.com>, Jakub Kicinski , Sasha Levin Subject: [PATCH 6.18 048/250] net: hisilicon: hix5hd2_gmac: remove redundant NAPI delete Date: Mon, 17 Aug 2026 15:30:09 +0200 Message-ID: <20260817132538.417415281@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132536.466235697@linuxfoundation.org> References: <20260817132536.466235697@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jiawen Liu <1298662399@qq.com> [ Upstream commit f307a7dc32097c11413178fca437a10d20890bc2 ] hix5hd2_dev_remove() calls netif_napi_del() before unregister_netdev(). This is not needed because free_netdev() deletes all NAPI instances attached to the net_device. Remove the redundant call and let the networking core tear down the NAPI instance during unregister_netdev(). The probe error path still keeps its explicit netif_napi_del(), because the device has not been registered there. Fixes: 57c5bc9ad7d7 ("net: hisilicon: add hix5hd2 mac driver") Signed-off-by: Jiawen Liu <1298662399@qq.com> Link: https://patch.msgid.link/tencent_5FFD37A252B4FEA6A80AD25B17C8E904F005@qq.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/hisilicon/hix5hd2_gmac.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c b/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c index e3e7f2270560c..02282dc86faf4 100644 --- a/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c +++ b/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c @@ -1282,7 +1282,6 @@ static void hix5hd2_dev_remove(struct platform_device *pdev) struct net_device *ndev = platform_get_drvdata(pdev); struct hix5hd2_priv *priv = netdev_priv(ndev); - netif_napi_del(&priv->napi); unregister_netdev(ndev); mdiobus_unregister(priv->bus); mdiobus_free(priv->bus); -- 2.53.0