summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-10-26 18:56:40 +0000
committergVisor bot <gvisor-bot@google.com>2021-10-26 18:56:40 +0000
commited29acdbd826b3250f757ed11ee8b1b355b2f724 (patch)
treea1de3ec98370ab5112ad12d7a486e1a338176b25
parent8a1bad323a7ab74559d7bd9b2699dc5f3c94a6a3 (diff)
parent8b2e8caad400fd3e7d3e4e235d26dd2d556bf65c (diff)
Merge release-20211019.0-39-g8b2e8caad (automated)
-rw-r--r--pkg/abi/linux/ioctl.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkg/abi/linux/ioctl.go b/pkg/abi/linux/ioctl.go
index 4526d3f95..006b5a525 100644
--- a/pkg/abi/linux/ioctl.go
+++ b/pkg/abi/linux/ioctl.go
@@ -170,22 +170,3 @@ const (
KCOV_MODE_TRACE_PC = 2
KCOV_MODE_TRACE_CMP = 3
)
-
-// Attestation ioctls.
-var (
- SIGN_ATTESTATION_REPORT = IOC(_IOC_READ, 's', 1, 65)
-)
-
-// SizeOfQuoteInputData is the number of bytes in the input data of ioctl call
-// to get quote.
-const SizeOfQuoteInputData = 64
-
-// SignReport is a struct that gets signed quote from input data. The
-// serialized quote is copied to buf.
-// size is an input that specifies the size of buf. When returned, it's updated
-// to the size of quote.
-type SignReport struct {
- data [64]byte
- size uint32
- buf []byte
-}