diff options
author | Tariq Toukan <tariqt@mellanox.com> | 2017-06-05 11:17:20 +0300 |
---|---|---|
committer | Saeed Mahameed <saeedm@mellanox.com> | 2017-09-03 06:34:09 +0300 |
commit | 604acb193b8383a3774673c324e576e4c6b4ffcd (patch) | |
tree | c507d2649bea4ebeedb4932e8531d778144be257 /include | |
parent | 4b7dfc9925143eb4a55bbb97c033d6da03b29bff (diff) | |
download | linux-stable-604acb193b8383a3774673c324e576e4c6b4ffcd.tar.gz linux-stable-604acb193b8383a3774673c324e576e4c6b4ffcd.tar.bz2 linux-stable-604acb193b8383a3774673c324e576e4c6b4ffcd.zip |
net/mlx5e: Refactor data-path lro header function
Refactor function mlx5e_lro_update_hdr() to reduce number of
branches.
Signed-off-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mlx5/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mlx5/device.h b/include/linux/mlx5/device.h index 3c7442b56460..7031d655ec32 100644 --- a/include/linux/mlx5/device.h +++ b/include/linux/mlx5/device.h @@ -709,7 +709,7 @@ static inline int mlx5_get_cqe_format(struct mlx5_cqe64 *cqe) return (cqe->op_own >> 2) & 0x3; } -static inline int get_cqe_lro_tcppsh(struct mlx5_cqe64 *cqe) +static inline u8 get_cqe_lro_tcppsh(struct mlx5_cqe64 *cqe) { return (cqe->lro_tcppsh_abort_dupack >> 6) & 1; } |