| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * IPV4 GSO/GRO offload support |
|---|
| 3 | 4 | * Linux INET implementation |
|---|
| 4 | | - * |
|---|
| 5 | | - * This program is free software; you can redistribute it and/or |
|---|
| 6 | | - * modify it under the terms of the GNU General Public License |
|---|
| 7 | | - * as published by the Free Software Foundation; either version |
|---|
| 8 | | - * 2 of the License, or (at your option) any later version. |
|---|
| 9 | 5 | * |
|---|
| 10 | 6 | * GRE GSO support |
|---|
| 11 | 7 | */ |
|---|
| .. | .. |
|---|
| 187 | 183 | if (skb_gro_checksum_simple_validate(skb)) |
|---|
| 188 | 184 | goto out_unlock; |
|---|
| 189 | 185 | |
|---|
| 190 | | - skb_gro_checksum_try_convert(skb, IPPROTO_GRE, 0, |
|---|
| 186 | + skb_gro_checksum_try_convert(skb, IPPROTO_GRE, |
|---|
| 191 | 187 | null_compute_pseudo); |
|---|
| 192 | 188 | } |
|---|
| 193 | 189 | |
|---|