mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 17:55:20 +07:00
0062e7cc95
Add the IPsec offload support code. This is based off of the similar code in ixgbe, but instead of writing the SA registers, the VF asks the PF to setup the offload by sending the offload information to the PF via the standard mailbox. Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
15 lines
324 B
Makefile
15 lines
324 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright(c) 1999 - 2018 Intel Corporation.
|
|
#
|
|
# Makefile for the Intel(R) 82599 VF ethernet driver
|
|
#
|
|
|
|
obj-$(CONFIG_IXGBEVF) += ixgbevf.o
|
|
|
|
ixgbevf-objs := vf.o \
|
|
mbx.o \
|
|
ethtool.o \
|
|
ixgbevf_main.o
|
|
ixgbevf-$(CONFIG_XFRM_OFFLOAD) += ipsec.o
|
|
|