mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-11 10:24:22 +01:00
We have starting to use golang 1.19, some features are not supported later, so run `go fix` to fix them. Fixes: #5750 Signed-off-by: Bin Liu <bin@hyper.sh>
13 lines
268 B
Go
13 lines
268 B
Go
//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
|