1 #include <linux/ioctl.h>
3 #define IOCTL_VM_SOCKETS_GET_LOCAL_CID _IO(7, 0xb9)
8 static const struct ioctl vsock_ioctls
[] = {
9 IOCTL(IOCTL_VM_SOCKETS_GET_LOCAL_CID
),
12 static const char *const vsock_devs
[] = {
16 static const struct ioctl_group vsock_grp
= {
19 .devs_cnt
= ARRAY_SIZE(vsock_devs
),
20 .sanitise
= pick_random_ioctl
,
21 .ioctls
= vsock_ioctls
,
22 .ioctls_cnt
= ARRAY_SIZE(vsock_ioctls
),
25 REG_IOCTL_GROUP(vsock_grp
)