mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
ded21b7229
Add a new object for shared test utilities Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
21 lines
403 B
C
21 lines
403 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __NET_MCTP_TEST_UTILS_H
|
|
#define __NET_MCTP_TEST_UTILS_H
|
|
|
|
#include <kunit/test.h>
|
|
|
|
#define MCTP_DEV_TEST_MTU 68
|
|
|
|
struct mctp_test_dev {
|
|
struct net_device *ndev;
|
|
struct mctp_dev *mdev;
|
|
};
|
|
|
|
struct mctp_test_dev;
|
|
|
|
struct mctp_test_dev *mctp_test_create_dev(void);
|
|
void mctp_test_destroy_dev(struct mctp_test_dev *dev);
|
|
|
|
#endif /* __NET_MCTP_TEST_UTILS_H */
|