blob: 0f4f35aa43ad0e18d7ed3f614a0189b3613ae7bd [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/* Shared Memory Communications
3 *
4 * Network namespace definitions.
5 *
6 * Copyright IBM Corp. 2018
7 */
8
9#ifndef SMC_NETNS_H
10#define SMC_NETNS_H
11
12#include "smc_pnet.h"
13
14extern unsigned int smc_net_id;
15
16/* per-network namespace private data */
17struct smc_net {
18 struct smc_pnettable pnettable;
Olivier Deprez157378f2022-04-04 15:47:50 +020019 struct smc_pnetids_ndev pnetids_ndev;
David Brazdil0f672f62019-12-10 10:32:29 +000020};
21#endif