summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/fdbased/endpoint_unsafe.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-03-16 15:07:29 +0000
committergVisor bot <gvisor-bot@google.com>2020-03-16 15:07:29 +0000
commit92305e29a3911a29e94a1bc70d488a6f67011660 (patch)
treef15418e1a670466ac78c524d1c2577e304e75349 /pkg/tcpip/link/fdbased/endpoint_unsafe.go
parent3284a59fc468000cbb05d8b0e262323f5152d813 (diff)
parent52758e16e0d1e67b3cdd56e04abfce663607ac42 (diff)
Merge release-20200219.0-179-g52758e1 (automated)
Diffstat (limited to 'pkg/tcpip/link/fdbased/endpoint_unsafe.go')
-rw-r--r--pkg/tcpip/link/fdbased/endpoint_unsafe.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkg/tcpip/link/fdbased/endpoint_unsafe.go b/pkg/tcpip/link/fdbased/endpoint_unsafe.go
index 97a477b61..d81858353 100644
--- a/pkg/tcpip/link/fdbased/endpoint_unsafe.go
+++ b/pkg/tcpip/link/fdbased/endpoint_unsafe.go
@@ -24,9 +24,10 @@ import (
const virtioNetHdrSize = int(unsafe.Sizeof(virtioNetHdr{}))
func vnetHdrToByteSlice(hdr *virtioNetHdr) (slice []byte) {
- sh := (*reflect.SliceHeader)(unsafe.Pointer(&slice))
- sh.Data = uintptr(unsafe.Pointer(hdr))
- sh.Len = virtioNetHdrSize
- sh.Cap = virtioNetHdrSize
+ *(*reflect.SliceHeader)(unsafe.Pointer(&slice)) = reflect.SliceHeader{
+ Data: uintptr((unsafe.Pointer(hdr))),
+ Len: virtioNetHdrSize,
+ Cap: virtioNetHdrSize,
+ }
return
}