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 865BC1C5D77; Wed, 4 Feb 2026 14:45:38 +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=1770216338; cv=none; b=eh4KLkNkRxl5WBTnUghAqTIybg8M7kFBpnEgp8Zqoc3Ndq/YrkPXC+gH1eqtkxxrViUC0tG1yBxTAYqyLLGzb2+4q9NN28fSX094x0FPJVxPF+quyjv3MujJwnyqmIb2BPUu+wRRaFQQuJ9LEZvoMBRZm58a1P8okIe7wRZKCBY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770216338; c=relaxed/simple; bh=yIR65TYqZSRxKiKI5ThMrLKm1cCUpNdomoig4mL77bs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=X5jOLVL0ZTH3nrULM7eRQmss4Mb53dQS95xuPXsdEqEk7KzSuWmiUqdFRUmx+nIt4xMgx56ZkVVLavHc96pqzv4H3xZg9nqrbP9sI/dVffHxSa5wOdIiNEWHOvOlQWwlK2PlVmvHwwrBAGPNaxTouccgRThZPwIo9CqnmKatZ5s= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VldjAhrW; 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="VldjAhrW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B47ACC4CEF7; Wed, 4 Feb 2026 14:45:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770216338; bh=yIR65TYqZSRxKiKI5ThMrLKm1cCUpNdomoig4mL77bs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VldjAhrWefOMmP6KI1LPTE9rwUmuXSNRJjRTzeCvtU5xEIfgvUvSzRaPPXIM/L2lf Xg2PM9no5HVfiV3blAMmpwgEoFzYBW36tywVdnQEtfuNqm4U2ABPha6MIRxabNVTnY Yf1gY8GJDL4znh5MFWKwdzimAm2lEvC7ZrHadIkM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Stanislav Fomichev , Jakub Kicinski , Paolo Abeni , Sasha Levin Subject: [PATCH 5.10 057/161] net: fou: rename the source for linking Date: Wed, 4 Feb 2026 15:38:40 +0100 Message-ID: <20260204143853.812910442@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: Jakub Kicinski [ Upstream commit 08d323234d10eab077cbf0093eeb5991478a261a ] We'll need to link two objects together to form the fou module. This means the source can't be called fou, the build system expects fou.o to be the combined object. Acked-by: Stanislav Fomichev Signed-off-by: Jakub Kicinski Signed-off-by: Paolo Abeni Stable-dep-of: 7a9bc9e3f423 ("fou: Don't allow 0 for FOU_ATTR_IPPROTO.") Signed-off-by: Sasha Levin --- net/ipv4/Makefile | 1 + net/ipv4/{fou.c => fou_core.c} | 0 2 files changed, 1 insertion(+) rename net/ipv4/{fou.c => fou_core.c} (100%) diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile index bbdd9c44f14e3..e694a5e5b0302 100644 --- a/net/ipv4/Makefile +++ b/net/ipv4/Makefile @@ -26,6 +26,7 @@ obj-$(CONFIG_IP_MROUTE) += ipmr.o obj-$(CONFIG_IP_MROUTE_COMMON) += ipmr_base.o obj-$(CONFIG_NET_IPIP) += ipip.o gre-y := gre_demux.o +fou-y := fou_core.o obj-$(CONFIG_NET_FOU) += fou.o obj-$(CONFIG_NET_IPGRE_DEMUX) += gre.o obj-$(CONFIG_NET_IPGRE) += ip_gre.o diff --git a/net/ipv4/fou.c b/net/ipv4/fou_core.c similarity index 100% rename from net/ipv4/fou.c rename to net/ipv4/fou_core.c -- 2.51.0