mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
dde1a86e93
Command queue provides the provision of Mailbox command which can be used for communication between PF and VF. PF handles messages from various VFs for fetching various information like, queue, vlan, link status related etc. It also handles the request from various VFs to perform certain privileged operations. This patch adds the support of a message handler for handling such various command requests from VF. Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: lipeng <lipeng321@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
297 B
Makefile
12 lines
297 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Makefile for the HISILICON network device drivers.
|
|
#
|
|
|
|
ccflags-y := -Idrivers/net/ethernet/hisilicon/hns3
|
|
|
|
obj-$(CONFIG_HNS3_HCLGE) += hclge.o
|
|
hclge-objs = hclge_main.o hclge_cmd.o hclge_mdio.o hclge_tm.o hclge_mbx.o
|
|
|
|
hclge-$(CONFIG_HNS3_DCB) += hclge_dcb.o
|