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 0CB072E92BC; Wed, 4 Feb 2026 14:51:50 +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=1770216710; cv=none; b=CgVLLua9fIA8s7QktP1G0IdMIO37EVHpiy7IAEthAipIZlqEQ/8PMXD0al6a6btGP66C1MIFYvef5ch/f9qboDANuf9V6u20j75WBDkw1+oPISpYQd8WYHfchUvqeRq8KfbZxtxmkVzF8INN83wl9o8+dZ58kNH+Tf4P/vgMNDA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770216710; c=relaxed/simple; bh=qDIRZX9oX0sANq4IsTX1ZGHQQ8apeVJbOPFCbr4aBtM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MPm/HhQ7l1hpfMP2jK6uN323vPMnkzZH6ojGqv3JOszlrJn2uZqjgepmG857NsBU3FnyD0iaPdtkA5DIyfP3IecaVV+d9Bk6R2j/I2tTNa2N5TxuY01moO7MM83BQNoQIwup+LjMVEgGnVshGYf9eSzTTFFTfBp9QgIoKCzjwuk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=uDDyKeG3; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="uDDyKeG3" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 734E9C4CEF7; Wed, 4 Feb 2026 14:51:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770216709; bh=qDIRZX9oX0sANq4IsTX1ZGHQQ8apeVJbOPFCbr4aBtM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uDDyKeG3zzsEPsqRx17OGZgIx8TMKfJ7qFBT7TrL6As/0ZeAiQRQTeujgrYzQUQy7 tWrAQTkeprvDrdWQhXWcbJ/98TSLgc+xY+sBO1IR9gGkCGe9aR6AVIAYgQV50uj9Rr OVsOGnAB8w2oE+F1hYKTlcUMAa2Ag0SCwdJjA8bY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Christoph Hellwig , Sagi Grimberg , Hannes Reinecke , Daniel Wagner , Keith Busch , Sasha Levin Subject: [PATCH 5.10 134/161] nvme-fc: rename free_ctrl callback to match name pattern Date: Wed, 4 Feb 2026 15:39:57 +0100 Message-ID: <20260204143856.562412785@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143851.755002596@linuxfoundation.org> References: <20260204143851.755002596@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Daniel Wagner [ Upstream commit 205fb5fa6fde1b5b426015eb1ff69f2ff25ef5bb ] Rename nvme_fc_nvme_ctrl_freed to nvme_fc_free_ctrl to match the name pattern for the callback. Reviewed-by: Christoph Hellwig Reviewed-by: Sagi Grimberg Reviewed-by: Hannes Reinecke Signed-off-by: Daniel Wagner Signed-off-by: Keith Busch Stable-dep-of: 0edb475ac0a7 ("nvme: fix PCIe subsystem reset controller state transition") Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/nvme/host/fc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/nvme/host/fc.c +++ b/drivers/nvme/host/fc.c @@ -2409,7 +2409,7 @@ nvme_fc_ctrl_get(struct nvme_fc_ctrl *ct * controller. Called after last nvme_put_ctrl() call */ static void -nvme_fc_nvme_ctrl_freed(struct nvme_ctrl *nctrl) +nvme_fc_free_ctrl(struct nvme_ctrl *nctrl) { struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl); @@ -3350,7 +3350,7 @@ static const struct nvme_ctrl_ops nvme_f .reg_read32 = nvmf_reg_read32, .reg_read64 = nvmf_reg_read64, .reg_write32 = nvmf_reg_write32, - .free_ctrl = nvme_fc_nvme_ctrl_freed, + .free_ctrl = nvme_fc_free_ctrl, .submit_async_event = nvme_fc_submit_async_event, .delete_ctrl = nvme_fc_delete_ctrl, .get_address = nvmf_get_address,