Files
kata-containers/src/runtime/virtcontainers/utils/utils_linux_generic.go
Peng Tao a02a8bda66 runtime: move all code to src/runtime
To prepare for merging into kata-containers repository.

Signed-off-by: Peng Tao <bergwolf@hyper.sh>
2020-04-27 19:39:25 -07:00

17 lines
340 B
Go

// +build amd64 arm64 s390x !ppc64le
// Copyright (c) 2019 IBM
//
// SPDX-License-Identifier: Apache-2.0
//
package utils
// from <linux/vhost.h>
// VHOST_VSOCK_SET_GUEST_CID = _IOW(VHOST_VIRTIO, 0x60, __u64)
const ioctlVhostVsockSetGuestCid = 0x4008AF60
func getIoctlVhostVsockGuestCid() uintptr {
return ioctlVhostVsockSetGuestCid
}