From patchwork Tue Jun 22 20:10:30 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Numan Siddique X-Patchwork-Id: 1495836 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.166.133; helo=smtp2.osuosl.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4G8cwG6BRVz9sVp for ; Wed, 23 Jun 2021 06:10:53 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id CB856403A5; Tue, 22 Jun 2021 20:10:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tltsBiru2key; Tue, 22 Jun 2021 20:10:50 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [IPv6:2605:bc80:3010:104::8cd3:938]) by smtp2.osuosl.org (Postfix) with ESMTPS id 28904401DB; Tue, 22 Jun 2021 20:10:49 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id ECBF0C0010; Tue, 22 Jun 2021 20:10:48 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from smtp4.osuosl.org (smtp4.osuosl.org [IPv6:2605:bc80:3010::137]) by lists.linuxfoundation.org (Postfix) with ESMTP id 794ACC000E for ; Tue, 22 Jun 2021 20:10:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id 52DE240293 for ; Tue, 22 Jun 2021 20:10:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7BP7jl3goqf0 for ; Tue, 22 Jun 2021 20:10:46 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.8.0 Received: from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net [217.70.183.201]) by smtp4.osuosl.org (Postfix) with ESMTPS id 0B00640289 for ; Tue, 22 Jun 2021 20:10:45 +0000 (UTC) Received: (Authenticated sender: numans@ovn.org) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 5DDED1BF207; Tue, 22 Jun 2021 20:10:41 +0000 (UTC) From: numans@ovn.org To: dev@openvswitch.org Date: Tue, 22 Jun 2021 16:10:30 -0400 Message-Id: <20210622201030.1243621-1-numans@ovn.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Subject: [ovs-dev] [PATCH ovn] controller: Fix the wrong 'struct' type for 'pflow_output_data'. X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev" From: Numan Siddique 'pflow_output_data' should be of type 'struct ed_type_pflow_output' and not 'struct ed_type_lflow_output'. Fixes: e07e397b7ae("ovn-controller: Split logical flow and physical flow processing.") Signed-off-by: Numan Siddique Acked-by: Mark Michelson --- controller/ovn-controller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/ovn-controller.c b/controller/ovn-controller.c index 1cfe4b713..3968ef059 100644 --- a/controller/ovn-controller.c +++ b/controller/ovn-controller.c @@ -2980,7 +2980,7 @@ main(int argc, char *argv[]) struct ed_type_lflow_output *lflow_output_data = engine_get_internal_data(&en_lflow_output); - struct ed_type_lflow_output *pflow_output_data = + struct ed_type_pflow_output *pflow_output_data = engine_get_internal_data(&en_pflow_output); struct ed_type_ct_zones *ct_zones_data = engine_get_internal_data(&en_ct_zones);