projects
/
util-vserver.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Rather than listing the unsafe capabilities, assume they're all unsafe unless
[util-vserver.git]
/
kernel
/
device_cmd.h
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 */