mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
161eba50e1
This change adds the first kunit test for the mctp subsystem, and an initial test for the fragmentation path. We're adding tests under a new net/mctp/test/ directory. Incorporates a fix for module configs: Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
19 lines
619 B
Plaintext
19 lines
619 B
Plaintext
|
|
menuconfig MCTP
|
|
depends on NET
|
|
tristate "MCTP core protocol support"
|
|
help
|
|
Management Component Transport Protocol (MCTP) is an in-system
|
|
protocol for communicating between management controllers and
|
|
their managed devices (peripherals, host processors, etc.). The
|
|
protocol is defined by DMTF specification DSP0236.
|
|
|
|
This option enables core MCTP support. For communicating with other
|
|
devices, you'll want to enable a driver for a specific hardware
|
|
channel.
|
|
|
|
config MCTP_TEST
|
|
bool "MCTP core tests" if !KUNIT_ALL_TESTS
|
|
depends on MCTP=y && KUNIT=y
|
|
default KUNIT_ALL_TESTS
|