On Tue, 23 Jul 2019 14:19:53 +0100
Anatoly Burakov <anatoly.bura...@intel.com> wrote:

> diff --git a/lib/librte_eal/linux/eal/eal.c b/lib/librte_eal/linux/eal/eal.c
> index 34db78753..54feb24a3 100644
> --- a/lib/librte_eal/linux/eal/eal.c
> +++ b/lib/librte_eal/linux/eal/eal.c
> @@ -83,6 +83,13 @@ static struct flock wr_lock = {
>               .l_len = sizeof(early_mem_config.memsegs),
>  };
>  
> +static struct flock rd_lock = {
> +             .l_type = F_RDLCK,
> +             .l_whence = SEEK_SET,
> +             .l_start = offsetof(struct rte_mem_config, memsegs),
> +             .l_len = sizeof(early_mem_config.memsegs),
> +};
> +

Indentation (whitespace) of both flock structures is wrong.
Should be single tab.

Reply via email to