Skip to content

Commit 1ebb87c

Browse files
Jiapeng Chongdavem330
authored andcommitted
gro: Fix inconsistent indenting
Eliminate the follow smatch warning: net/ipv6/ip6_offload.c:249 ipv6_gro_receive() warn: inconsistent indenting. Reported-by: Abaci Robot <[email protected]> Signed-off-by: Jiapeng Chong <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent a05431b commit 1ebb87c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

net/ipv6/ip6_offload.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ INDIRECT_CALLABLE_SCOPE struct sk_buff *ipv6_gro_receive(struct list_head *head,
248248
* memcmp() alone below is sufficient, right?
249249
*/
250250
if ((first_word & htonl(0xF00FFFFF)) ||
251-
!ipv6_addr_equal(&iph->saddr, &iph2->saddr) ||
252-
!ipv6_addr_equal(&iph->daddr, &iph2->daddr) ||
253-
*(u16 *)&iph->nexthdr != *(u16 *)&iph2->nexthdr) {
251+
!ipv6_addr_equal(&iph->saddr, &iph2->saddr) ||
252+
!ipv6_addr_equal(&iph->daddr, &iph2->daddr) ||
253+
*(u16 *)&iph->nexthdr != *(u16 *)&iph2->nexthdr) {
254254
not_same_flow:
255255
NAPI_GRO_CB(p)->same_flow = 0;
256256
continue;

0 commit comments

Comments
 (0)