summaryrefslogtreecommitdiff
path: root/include/net/netns/mctp.h
blob: 2f5ebeeb320ee23f266b0f57434f7c8bb2354acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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;

	/* neighbour table */
	struct mutex neigh_lock;
	struct list_head neighbours;
};

#endif /* __NETNS_MCTP_H__ */