mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-05 05:15:02 +08:00
889b7da23a
Add a simple routing table, and a couple of route output handlers, and the mctp packet_type & handler. Includes changes from Matt Johnston <matt@codeconstruct.com.au>. Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
285 B
C
17 lines
285 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* MCTP per-net structures
|
|
*/
|
|
|
|
#ifndef __NETNS_MCTP_H__
|
|
#define __NETNS_MCTP_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct netns_mctp {
|
|
/* Only updated under RTNL, entries freed via RCU */
|
|
struct list_head routes;
|
|
};
|
|
|
|
#endif /* __NETNS_MCTP_H__ */
|