[ovs-dev] [PATCH ovn] controller: Fix the wrong 'struct' type for 'pflow_output_data'.

Mark Michelson mmichels at redhat.com
Wed Jun 23 15:25:34 UTC 2021


Acked-by: Mark Michelson <mmichels at redhat.com>

On 6/22/21 4:10 PM, numans at ovn.org wrote:
> From: Numan Siddique <numans at ovn.org>
> 
> '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 <numans at ovn.org>
> ---
>   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);
> 



More information about the dev mailing list