Re: [PATCH v2 16/17] IB/mlx4: Add spaces for better code readability

From: Joe Perches
Date: Fri Apr 21 2017 - 15:28:45 EST


On Fri, 2017-04-21 at 20:54 +0200, SF Markus Elfring wrote:

> Use space characters at some source code places according to
> the Linux coding style convention.

[]

> diff --git a/drivers/infiniband/hw/mlx4/qp.c b/drivers/infiniband/hw/mlx4/qp.c
[]
> @@ -2599,7 +2599,7 @@ static int build_mlx_header(struct mlx4_ib_sqp *sqp, struct ib_ud_wr *wr,
> u16 ether_type;
> u16 pcp = (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 29) << 13;
>
> - ether_type = (!is_udp) ? ETH_P_IBOE:
> + ether_type = (!is_udp) ? ETH_P_IBOE :
> (ip_version == 4 ? ETH_P_IP : ETH_P_IPV6);

Please refrain from tool generated mechanical changes.

Do try to make the code human readable and correct when
you are also making actual object code differences.

If this is to be modified at all then also please use
consistent ?: condition testing parentheses or perhaps
don't use parentheses at all.

Maybe even align the ETH_P_ uses like:

ether_type = !is_udp ? ETH_P_IBOE :
ip_version == 4 ? ETH_P_IP :
ETH_P_IPV6;