mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-01 13:34:20 +01:00
This will be useful at runtime level; no need for oci or uuid to be subpkg of virtcontainers. While at it, ensure we run gofmt on the changed files. Signed-off-by: Eric Ernst <eric_ernst@apple.com>
14 lines
305 B
Go
14 lines
305 B
Go
//go:build amd64 || arm64 || s390x || !ppc64le
|
|
// +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
|