[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20140821.163320.476216950054835385.davem@davemloft.net>
Date: Thu, 21 Aug 2014 16:33:20 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: mkubecek@...e.cz
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH net] net: fix checksum features handling in
netif_skb_features()
From: Michal Kubecek <mkubecek@...e.cz>
Date: Fri, 15 Aug 2014 11:56:17 +0200 (CEST)
> @@ -2587,13 +2587,18 @@ netdev_features_t netif_skb_features(struct sk_buff *skb)
> return harmonize_features(skb, features);
> }
>
> - features &= (skb->dev->vlan_features | NETIF_F_HW_VLAN_CTAG_TX |
> - NETIF_F_HW_VLAN_STAG_TX);
> + features = netdev_intersect_features(features, skb->dev->vlan_features |
> + NETIF_F_HW_VLAN_CTAG_TX |
> + NETIF_F_HW_VLAN_STAG_TX);
This is not indented properly.
The second and subsequent lines of the function call should start precisely
at the first column after the openning parenthesis on the first line. You
should use the appropriate number of TAB and SPACE characters necessary
to do so.
Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists