Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Shared Memory Communications
0003  *
0004  * Network namespace definitions.
0005  *
0006  * Copyright IBM Corp. 2018
0007  */
0008 
0009 #ifndef SMC_NETNS_H
0010 #define SMC_NETNS_H
0011 
0012 #include "smc_pnet.h"
0013 
0014 extern unsigned int smc_net_id;
0015 
0016 /* per-network namespace private data */
0017 struct smc_net {
0018     struct smc_pnettable pnettable;
0019     struct smc_pnetids_ndev pnetids_ndev;
0020 };
0021 #endif