https://github.com/torvalds/linux
Raw File
Tip revision: 4d856f72c10ecb060868ed10ff1b1453943fc6c8 authored by Linus Torvalds on 15 September 2019, 21:19:32 UTC
Linux 5.3
Tip revision: 4d856f7
smc_netns.h
/* SPDX-License-Identifier: GPL-2.0 */
/* Shared Memory Communications
 *
 * Network namespace definitions.
 *
 * Copyright IBM Corp. 2018
 */

#ifndef SMC_NETNS_H
#define SMC_NETNS_H

#include "smc_pnet.h"

extern unsigned int smc_net_id;

/* per-network namespace private data */
struct smc_net {
	struct smc_pnettable pnettable;
};
#endif
back to top