vshost-util-vserver

Build script and sources for util-vserver.
git clone https://ccx.te2000.cz/git/vshost-util-vserver
Log | Files | Refs

device_cmd.h (302B)


      1 #ifndef _VX_DEVICE_CMD_H
      2 #define _VX_DEVICE_CMD_H
      3 
      4 
      5 /*  device vserver commands */
      6 
      7 #define VCMD_set_mapping	VC_CMD(DEVICE, 1, 0)
      8 #define VCMD_unset_mapping	VC_CMD(DEVICE, 2, 0)
      9 
     10 struct	vcmd_set_mapping_v0 {
     11 	const char *device;
     12 	const char *target;
     13 	uint32_t flags;
     14 };
     15 
     16 
     17 #endif	/* _VX_DEVICE_CMD_H */