From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.us.es ([193.147.175.20]:56262 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932852AbeCLR7q (ORCPT ); Mon, 12 Mar 2018 13:59:46 -0400 Received: from antivirus1-rhel7.int (unknown [192.168.2.11]) by mail.us.es (Postfix) with ESMTP id 234EB5B7FF for ; Mon, 12 Mar 2018 18:59:42 +0100 (CET) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 137E1DA78D for ; Mon, 12 Mar 2018 18:59:42 +0100 (CET) From: Pablo Neira Ayuso To: netfilter-devel@vger.kernel.org Cc: davem@davemloft.net, netdev@vger.kernel.org Subject: [PATCH 24/30] netfilter: nf_flow_table: rename nf_flow_table.c to nf_flow_table_core.c Date: Mon, 12 Mar 2018 18:59:14 +0100 Message-Id: <20180312175920.9022-25-pablo@netfilter.org> In-Reply-To: <20180312175920.9022-1-pablo@netfilter.org> References: <20180312175920.9022-1-pablo@netfilter.org> Sender: netdev-owner@vger.kernel.org List-ID: From: Felix Fietkau Preparation for adding more code to the same module Signed-off-by: Felix Fietkau Signed-off-by: Pablo Neira Ayuso --- net/netfilter/Makefile | 2 ++ net/netfilter/{nf_flow_table.c => nf_flow_table_core.c} | 0 2 files changed, 2 insertions(+) rename net/netfilter/{nf_flow_table.c => nf_flow_table_core.c} (100%) diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile index 5d9b8b959e58..138db16d59ed 100644 --- a/net/netfilter/Makefile +++ b/net/netfilter/Makefile @@ -112,6 +112,8 @@ obj-$(CONFIG_NFT_FWD_NETDEV) += nft_fwd_netdev.o # flow table infrastructure obj-$(CONFIG_NF_FLOW_TABLE) += nf_flow_table.o +nf_flow_table-objs := nf_flow_table_core.o + obj-$(CONFIG_NF_FLOW_TABLE_INET) += nf_flow_table_inet.o # generic X tables diff --git a/net/netfilter/nf_flow_table.c b/net/netfilter/nf_flow_table_core.c similarity index 100% rename from net/netfilter/nf_flow_table.c rename to net/netfilter/nf_flow_table_core.c -- 2.11.0