mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-28 13:34:38 +08:00
b090ef0686
This is a very simple manager for KVD linear area. Currently, the allocator will either allocate a single entry from pre-defined sub-area, or in case more than one entry is needed, it will allocate 32-entry chunk in other pre-defined sub-area. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Reviewed-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
511 B
Makefile
13 lines
511 B
Makefile
obj-$(CONFIG_MLXSW_CORE) += mlxsw_core.o
|
|
mlxsw_core-objs := core.o
|
|
mlxsw_core-$(CONFIG_MLXSW_CORE_HWMON) += core_hwmon.o
|
|
obj-$(CONFIG_MLXSW_PCI) += mlxsw_pci.o
|
|
mlxsw_pci-objs := pci.o
|
|
obj-$(CONFIG_MLXSW_SWITCHX2) += mlxsw_switchx2.o
|
|
mlxsw_switchx2-objs := switchx2.o
|
|
obj-$(CONFIG_MLXSW_SPECTRUM) += mlxsw_spectrum.o
|
|
mlxsw_spectrum-objs := spectrum.o spectrum_buffers.o \
|
|
spectrum_switchdev.o spectrum_router.o \
|
|
spectrum_kvdl.o
|
|
mlxsw_spectrum-$(CONFIG_MLXSW_SPECTRUM_DCB) += spectrum_dcb.o
|