forked from lug/matterbridge
		
	Compare commits
	
		
			3 Commits
		
	
	
		
			dependabot
			...
			updatexmpp
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| bab3681ac2 | |||
| 
						
						
							
						
						b74b884793
	
				 | 
					
					
						|||
| 
						 | 
					996e4a7fcf | 
@@ -14,6 +14,7 @@ import (
 | 
			
		||||
	"github.com/42wim/matterbridge/bridge"
 | 
			
		||||
	"github.com/42wim/matterbridge/bridge/config"
 | 
			
		||||
	"github.com/42wim/matterbridge/bridge/helper"
 | 
			
		||||
	lru "github.com/hashicorp/golang-lru"
 | 
			
		||||
	"github.com/jpillora/backoff"
 | 
			
		||||
	"github.com/matterbridge/go-xmpp"
 | 
			
		||||
	"github.com/rs/xid"
 | 
			
		||||
@@ -28,13 +29,20 @@ type Bxmpp struct {
 | 
			
		||||
	connected bool
 | 
			
		||||
	sync.RWMutex
 | 
			
		||||
 | 
			
		||||
	StanzaIDs          *lru.Cache
 | 
			
		||||
	OriginIDs          *lru.Cache
 | 
			
		||||
 | 
			
		||||
	avatarAvailability map[string]bool
 | 
			
		||||
	avatarMap          map[string]string
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func New(cfg *bridge.Config) bridge.Bridger {
 | 
			
		||||
	stanzaIDs, _ := lru.New(5000)
 | 
			
		||||
	originIDs, _ := lru.New(5000)
 | 
			
		||||
	return &Bxmpp{
 | 
			
		||||
		Config:             cfg,
 | 
			
		||||
		StanzaIDs:          stanzaIDs,
 | 
			
		||||
		OriginIDs:          originIDs,
 | 
			
		||||
		xmppMap:            make(map[string]string),
 | 
			
		||||
		avatarAvailability: make(map[string]bool),
 | 
			
		||||
		avatarMap:          make(map[string]string),
 | 
			
		||||
@@ -124,12 +132,20 @@ func (b *Bxmpp) Send(msg config.Message) (string, error) {
 | 
			
		||||
		return "", nil
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if msg.ParentNotFound() {
 | 
			
		||||
		msg.ParentID = ""
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Post normal message.
 | 
			
		||||
	var msgReplaceID string
 | 
			
		||||
	msgID := xid.New().String()
 | 
			
		||||
	if msg.ID != "" {
 | 
			
		||||
		msgReplaceID = msg.ID
 | 
			
		||||
	}
 | 
			
		||||
	var replyID string
 | 
			
		||||
	if res, ok := b.StanzaIDs.Get(msg.ParentID); ok {
 | 
			
		||||
		replyID, _ = res.(string)
 | 
			
		||||
	}
 | 
			
		||||
	b.Log.Debugf("=> Sending message %#v", msg)
 | 
			
		||||
	if _, err := b.xc.Send(xmpp.Chat{
 | 
			
		||||
		Type:      "groupchat",
 | 
			
		||||
@@ -137,6 +153,7 @@ func (b *Bxmpp) Send(msg config.Message) (string, error) {
 | 
			
		||||
		Text:      msg.Username + msg.Text,
 | 
			
		||||
		ID:        msgID,
 | 
			
		||||
		ReplaceID: msgReplaceID,
 | 
			
		||||
		ReplyID:   replyID,
 | 
			
		||||
	}); err != nil {
 | 
			
		||||
		return "", err
 | 
			
		||||
	}
 | 
			
		||||
@@ -297,6 +314,11 @@ func (b *Bxmpp) handleXMPP() error {
 | 
			
		||||
			if v.Type == "groupchat" {
 | 
			
		||||
				b.Log.Debugf("== Receiving %#v", v)
 | 
			
		||||
 | 
			
		||||
				if v.ID != "" && v.StanzaID != "" {
 | 
			
		||||
					b.StanzaIDs.Add(v.ID, v.StanzaID)
 | 
			
		||||
					b.OriginIDs.Add(v.StanzaID, v.ID)
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
				// Skip invalid messages.
 | 
			
		||||
				if b.skipMessage(v) {
 | 
			
		||||
					continue
 | 
			
		||||
@@ -321,6 +343,12 @@ func (b *Bxmpp) handleXMPP() error {
 | 
			
		||||
				if v.ReplaceID != "" {
 | 
			
		||||
					msgID = v.ReplaceID
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
				var parentID string
 | 
			
		||||
				if res, ok := b.OriginIDs.Get(v.ReplyID); ok {
 | 
			
		||||
					parentID, _ = res.(string)
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
				rmsg := config.Message{
 | 
			
		||||
					Username: b.parseNick(v.Remote),
 | 
			
		||||
					Text:     v.Text,
 | 
			
		||||
@@ -328,6 +356,7 @@ func (b *Bxmpp) handleXMPP() error {
 | 
			
		||||
					Account:  b.Account,
 | 
			
		||||
					Avatar:   avatar,
 | 
			
		||||
					UserID:   v.Remote,
 | 
			
		||||
					ParentID: parentID,
 | 
			
		||||
					ID:       msgID,
 | 
			
		||||
					Event:    event,
 | 
			
		||||
				}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										8
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								go.mod
									
									
									
									
									
								
							@@ -49,7 +49,7 @@ require (
 | 
			
		||||
	go.mau.fi/whatsmeow v0.0.0-20240821142752-3d63c6fcc1a7
 | 
			
		||||
	golang.org/x/image v0.19.0
 | 
			
		||||
	golang.org/x/oauth2 v0.22.0
 | 
			
		||||
	golang.org/x/text v0.21.0
 | 
			
		||||
	golang.org/x/text v0.17.0
 | 
			
		||||
	gomod.garykim.dev/nc-talk v0.3.0
 | 
			
		||||
	google.golang.org/protobuf v1.34.2
 | 
			
		||||
	layeh.com/gumble v0.0.0-20221205141517-d1df60a3cc14
 | 
			
		||||
@@ -127,11 +127,11 @@ require (
 | 
			
		||||
	go.mau.fi/libsignal v0.1.1 // indirect
 | 
			
		||||
	go.mau.fi/util v0.6.0 // indirect
 | 
			
		||||
	go.uber.org/multierr v1.11.0 // indirect
 | 
			
		||||
	golang.org/x/crypto v0.31.0 // indirect
 | 
			
		||||
	golang.org/x/crypto v0.25.0 // indirect
 | 
			
		||||
	golang.org/x/exp v0.0.0-20240707233637-46b078467d37 // indirect
 | 
			
		||||
	golang.org/x/net v0.27.0 // indirect
 | 
			
		||||
	golang.org/x/sys v0.28.0 // indirect
 | 
			
		||||
	golang.org/x/term v0.27.0 // indirect
 | 
			
		||||
	golang.org/x/sys v0.22.0 // indirect
 | 
			
		||||
	golang.org/x/term v0.22.0 // indirect
 | 
			
		||||
	golang.org/x/time v0.5.0 // indirect
 | 
			
		||||
	google.golang.org/genproto/googleapis/rpc v0.0.0-20240722135656-d784300faade // indirect
 | 
			
		||||
	google.golang.org/grpc v1.65.0 // indirect
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										20
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								go.sum
									
									
									
									
									
								
							@@ -447,8 +447,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
 | 
			
		||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
 | 
			
		||||
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
 | 
			
		||||
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
 | 
			
		||||
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
 | 
			
		||||
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
 | 
			
		||||
golang.org/x/crypto v0.25.0 h1:ypSNr+bnYL2YhwoMt2zPxHFmbAN1KZs/njMG3hxUp30=
 | 
			
		||||
golang.org/x/crypto v0.25.0/go.mod h1:T+wALwcMOSE0kXgUAnPAHqTLW+XHgcELELW8VaDgm/M=
 | 
			
		||||
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
 | 
			
		||||
golang.org/x/exp v0.0.0-20240707233637-46b078467d37 h1:uLDX+AfeFCct3a2C7uIWBKMJIR3CJMhcgfrUAqjRK6w=
 | 
			
		||||
golang.org/x/exp v0.0.0-20240707233637-46b078467d37/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY=
 | 
			
		||||
@@ -495,8 +495,8 @@ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJ
 | 
			
		||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 | 
			
		||||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 | 
			
		||||
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 | 
			
		||||
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
 | 
			
		||||
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
 | 
			
		||||
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
 | 
			
		||||
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
 | 
			
		||||
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 | 
			
		||||
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 | 
			
		||||
golang.org/x/sys v0.0.0-20181029174526-d69651ed3497/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 | 
			
		||||
@@ -519,20 +519,20 @@ golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBc
 | 
			
		||||
golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
			
		||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
			
		||||
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
			
		||||
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
 | 
			
		||||
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
 | 
			
		||||
golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=
 | 
			
		||||
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
 | 
			
		||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
 | 
			
		||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
 | 
			
		||||
golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q=
 | 
			
		||||
golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM=
 | 
			
		||||
golang.org/x/term v0.22.0 h1:BbsgPEJULsl2fV/AT3v15Mjva5yXKQDyKf+TbDz7QJk=
 | 
			
		||||
golang.org/x/term v0.22.0/go.mod h1:F3qCibpT5AMpCRfhfT53vVJwhLtIVHhB9XDjfFvnMI4=
 | 
			
		||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
 | 
			
		||||
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
 | 
			
		||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
 | 
			
		||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
 | 
			
		||||
golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
 | 
			
		||||
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
 | 
			
		||||
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
 | 
			
		||||
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
 | 
			
		||||
golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc=
 | 
			
		||||
golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
 | 
			
		||||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
 | 
			
		||||
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
 | 
			
		||||
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								vendor/golang.org/x/crypto/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/golang.org/x/crypto/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,4 +1,4 @@
 | 
			
		||||
Copyright 2009 The Go Authors.
 | 
			
		||||
Copyright (c) 2009 The Go Authors. All rights reserved.
 | 
			
		||||
 | 
			
		||||
Redistribution and use in source and binary forms, with or without
 | 
			
		||||
modification, are permitted provided that the following conditions are
 | 
			
		||||
@@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer.
 | 
			
		||||
copyright notice, this list of conditions and the following disclaimer
 | 
			
		||||
in the documentation and/or other materials provided with the
 | 
			
		||||
distribution.
 | 
			
		||||
   * Neither the name of Google LLC nor the names of its
 | 
			
		||||
   * Neither the name of Google Inc. nor the names of its
 | 
			
		||||
contributors may be used to endorse or promote products derived from
 | 
			
		||||
this software without specific prior written permission.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/crypto/chacha20/chacha_noasm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/crypto/chacha20/chacha_noasm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -2,7 +2,7 @@
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (!arm64 && !s390x && !ppc64 && !ppc64le) || !gc || purego
 | 
			
		||||
//go:build (!arm64 && !s390x && !ppc64le) || !gc || purego
 | 
			
		||||
 | 
			
		||||
package chacha20
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc && !purego && (ppc64 || ppc64le)
 | 
			
		||||
//go:build gc && !purego
 | 
			
		||||
 | 
			
		||||
package chacha20
 | 
			
		||||
 | 
			
		||||
@@ -19,7 +19,7 @@
 | 
			
		||||
// The differences in this and the original implementation are
 | 
			
		||||
// due to the calling conventions and initialization of constants.
 | 
			
		||||
 | 
			
		||||
//go:build gc && !purego && (ppc64 || ppc64le)
 | 
			
		||||
//go:build gc && !purego
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
@@ -36,68 +36,32 @@
 | 
			
		||||
// for VPERMXOR
 | 
			
		||||
#define MASK  R18
 | 
			
		||||
 | 
			
		||||
DATA consts<>+0x00(SB)/4, $0x61707865
 | 
			
		||||
DATA consts<>+0x04(SB)/4, $0x3320646e
 | 
			
		||||
DATA consts<>+0x08(SB)/4, $0x79622d32
 | 
			
		||||
DATA consts<>+0x0c(SB)/4, $0x6b206574
 | 
			
		||||
DATA consts<>+0x10(SB)/4, $0x00000001
 | 
			
		||||
DATA consts<>+0x14(SB)/4, $0x00000000
 | 
			
		||||
DATA consts<>+0x18(SB)/4, $0x00000000
 | 
			
		||||
DATA consts<>+0x1c(SB)/4, $0x00000000
 | 
			
		||||
DATA consts<>+0x20(SB)/4, $0x00000004
 | 
			
		||||
DATA consts<>+0x24(SB)/4, $0x00000000
 | 
			
		||||
DATA consts<>+0x28(SB)/4, $0x00000000
 | 
			
		||||
DATA consts<>+0x2c(SB)/4, $0x00000000
 | 
			
		||||
DATA consts<>+0x30(SB)/4, $0x0e0f0c0d
 | 
			
		||||
DATA consts<>+0x34(SB)/4, $0x0a0b0809
 | 
			
		||||
DATA consts<>+0x38(SB)/4, $0x06070405
 | 
			
		||||
DATA consts<>+0x3c(SB)/4, $0x02030001
 | 
			
		||||
DATA consts<>+0x40(SB)/4, $0x0d0e0f0c
 | 
			
		||||
DATA consts<>+0x44(SB)/4, $0x090a0b08
 | 
			
		||||
DATA consts<>+0x48(SB)/4, $0x05060704
 | 
			
		||||
DATA consts<>+0x4c(SB)/4, $0x01020300
 | 
			
		||||
DATA consts<>+0x50(SB)/4, $0x61707865
 | 
			
		||||
DATA consts<>+0x54(SB)/4, $0x61707865
 | 
			
		||||
DATA consts<>+0x58(SB)/4, $0x61707865
 | 
			
		||||
DATA consts<>+0x5c(SB)/4, $0x61707865
 | 
			
		||||
DATA consts<>+0x60(SB)/4, $0x3320646e
 | 
			
		||||
DATA consts<>+0x64(SB)/4, $0x3320646e
 | 
			
		||||
DATA consts<>+0x68(SB)/4, $0x3320646e
 | 
			
		||||
DATA consts<>+0x6c(SB)/4, $0x3320646e
 | 
			
		||||
DATA consts<>+0x70(SB)/4, $0x79622d32
 | 
			
		||||
DATA consts<>+0x74(SB)/4, $0x79622d32
 | 
			
		||||
DATA consts<>+0x78(SB)/4, $0x79622d32
 | 
			
		||||
DATA consts<>+0x7c(SB)/4, $0x79622d32
 | 
			
		||||
DATA consts<>+0x80(SB)/4, $0x6b206574
 | 
			
		||||
DATA consts<>+0x84(SB)/4, $0x6b206574
 | 
			
		||||
DATA consts<>+0x88(SB)/4, $0x6b206574
 | 
			
		||||
DATA consts<>+0x8c(SB)/4, $0x6b206574
 | 
			
		||||
DATA consts<>+0x90(SB)/4, $0x00000000
 | 
			
		||||
DATA consts<>+0x94(SB)/4, $0x00000001
 | 
			
		||||
DATA consts<>+0x98(SB)/4, $0x00000002
 | 
			
		||||
DATA consts<>+0x9c(SB)/4, $0x00000003
 | 
			
		||||
DATA consts<>+0xa0(SB)/4, $0x11223300
 | 
			
		||||
DATA consts<>+0xa4(SB)/4, $0x55667744
 | 
			
		||||
DATA consts<>+0xa8(SB)/4, $0x99aabb88
 | 
			
		||||
DATA consts<>+0xac(SB)/4, $0xddeeffcc
 | 
			
		||||
DATA consts<>+0xb0(SB)/4, $0x22330011
 | 
			
		||||
DATA consts<>+0xb4(SB)/4, $0x66774455
 | 
			
		||||
DATA consts<>+0xb8(SB)/4, $0xaabb8899
 | 
			
		||||
DATA consts<>+0xbc(SB)/4, $0xeeffccdd
 | 
			
		||||
DATA consts<>+0x00(SB)/8, $0x3320646e61707865
 | 
			
		||||
DATA consts<>+0x08(SB)/8, $0x6b20657479622d32
 | 
			
		||||
DATA consts<>+0x10(SB)/8, $0x0000000000000001
 | 
			
		||||
DATA consts<>+0x18(SB)/8, $0x0000000000000000
 | 
			
		||||
DATA consts<>+0x20(SB)/8, $0x0000000000000004
 | 
			
		||||
DATA consts<>+0x28(SB)/8, $0x0000000000000000
 | 
			
		||||
DATA consts<>+0x30(SB)/8, $0x0a0b08090e0f0c0d
 | 
			
		||||
DATA consts<>+0x38(SB)/8, $0x0203000106070405
 | 
			
		||||
DATA consts<>+0x40(SB)/8, $0x090a0b080d0e0f0c
 | 
			
		||||
DATA consts<>+0x48(SB)/8, $0x0102030005060704
 | 
			
		||||
DATA consts<>+0x50(SB)/8, $0x6170786561707865
 | 
			
		||||
DATA consts<>+0x58(SB)/8, $0x6170786561707865
 | 
			
		||||
DATA consts<>+0x60(SB)/8, $0x3320646e3320646e
 | 
			
		||||
DATA consts<>+0x68(SB)/8, $0x3320646e3320646e
 | 
			
		||||
DATA consts<>+0x70(SB)/8, $0x79622d3279622d32
 | 
			
		||||
DATA consts<>+0x78(SB)/8, $0x79622d3279622d32
 | 
			
		||||
DATA consts<>+0x80(SB)/8, $0x6b2065746b206574
 | 
			
		||||
DATA consts<>+0x88(SB)/8, $0x6b2065746b206574
 | 
			
		||||
DATA consts<>+0x90(SB)/8, $0x0000000100000000
 | 
			
		||||
DATA consts<>+0x98(SB)/8, $0x0000000300000002
 | 
			
		||||
DATA consts<>+0xa0(SB)/8, $0x5566774411223300
 | 
			
		||||
DATA consts<>+0xa8(SB)/8, $0xddeeffcc99aabb88
 | 
			
		||||
DATA consts<>+0xb0(SB)/8, $0x6677445522330011
 | 
			
		||||
DATA consts<>+0xb8(SB)/8, $0xeeffccddaabb8899
 | 
			
		||||
GLOBL consts<>(SB), RODATA, $0xc0
 | 
			
		||||
 | 
			
		||||
#ifdef GOARCH_ppc64
 | 
			
		||||
#define BE_XXBRW_INIT() \
 | 
			
		||||
		LVSL (R0)(R0), V24 \
 | 
			
		||||
		VSPLTISB $3, V25   \
 | 
			
		||||
		VXOR V24, V25, V24 \
 | 
			
		||||
 | 
			
		||||
#define BE_XXBRW(vr) VPERM vr, vr, V24, vr
 | 
			
		||||
#else
 | 
			
		||||
#define BE_XXBRW_INIT()
 | 
			
		||||
#define BE_XXBRW(vr)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//func chaCha20_ctr32_vsx(out, inp *byte, len int, key *[8]uint32, counter *uint32)
 | 
			
		||||
TEXT ·chaCha20_ctr32_vsx(SB),NOSPLIT,$64-40
 | 
			
		||||
	MOVD out+0(FP), OUT
 | 
			
		||||
@@ -130,8 +94,6 @@ TEXT ·chaCha20_ctr32_vsx(SB),NOSPLIT,$64-40
 | 
			
		||||
	// Clear V27
 | 
			
		||||
	VXOR V27, V27, V27
 | 
			
		||||
 | 
			
		||||
	BE_XXBRW_INIT()
 | 
			
		||||
 | 
			
		||||
	// V28
 | 
			
		||||
	LXVW4X (CONSTBASE)(R11), VS60
 | 
			
		||||
 | 
			
		||||
@@ -337,11 +299,6 @@ loop_vsx:
 | 
			
		||||
	VADDUWM V8, V18, V8
 | 
			
		||||
	VADDUWM V12, V19, V12
 | 
			
		||||
 | 
			
		||||
	BE_XXBRW(V0)
 | 
			
		||||
	BE_XXBRW(V4)
 | 
			
		||||
	BE_XXBRW(V8)
 | 
			
		||||
	BE_XXBRW(V12)
 | 
			
		||||
 | 
			
		||||
	CMPU LEN, $64
 | 
			
		||||
	BLT tail_vsx
 | 
			
		||||
 | 
			
		||||
@@ -370,11 +327,6 @@ loop_vsx:
 | 
			
		||||
	VADDUWM V9, V18, V8
 | 
			
		||||
	VADDUWM V13, V19, V12
 | 
			
		||||
 | 
			
		||||
	BE_XXBRW(V0)
 | 
			
		||||
	BE_XXBRW(V4)
 | 
			
		||||
	BE_XXBRW(V8)
 | 
			
		||||
	BE_XXBRW(V12)
 | 
			
		||||
 | 
			
		||||
	CMPU  LEN, $64
 | 
			
		||||
	BLT   tail_vsx
 | 
			
		||||
 | 
			
		||||
@@ -382,8 +334,8 @@ loop_vsx:
 | 
			
		||||
	LXVW4X (INP)(R8), VS60
 | 
			
		||||
	LXVW4X (INP)(R9), VS61
 | 
			
		||||
	LXVW4X (INP)(R10), VS62
 | 
			
		||||
	VXOR   V27, V0, V27
 | 
			
		||||
 | 
			
		||||
	VXOR V27, V0, V27
 | 
			
		||||
	VXOR V28, V4, V28
 | 
			
		||||
	VXOR V29, V8, V29
 | 
			
		||||
	VXOR V30, V12, V30
 | 
			
		||||
@@ -402,11 +354,6 @@ loop_vsx:
 | 
			
		||||
	VADDUWM V10, V18, V8
 | 
			
		||||
	VADDUWM V14, V19, V12
 | 
			
		||||
 | 
			
		||||
	BE_XXBRW(V0)
 | 
			
		||||
	BE_XXBRW(V4)
 | 
			
		||||
	BE_XXBRW(V8)
 | 
			
		||||
	BE_XXBRW(V12)
 | 
			
		||||
 | 
			
		||||
	CMPU LEN, $64
 | 
			
		||||
	BLT  tail_vsx
 | 
			
		||||
 | 
			
		||||
@@ -434,11 +381,6 @@ loop_vsx:
 | 
			
		||||
	VADDUWM V11, V18, V8
 | 
			
		||||
	VADDUWM V15, V19, V12
 | 
			
		||||
 | 
			
		||||
	BE_XXBRW(V0)
 | 
			
		||||
	BE_XXBRW(V4)
 | 
			
		||||
	BE_XXBRW(V8)
 | 
			
		||||
	BE_XXBRW(V12)
 | 
			
		||||
 | 
			
		||||
	CMPU  LEN, $64
 | 
			
		||||
	BLT   tail_vsx
 | 
			
		||||
 | 
			
		||||
@@ -466,9 +408,9 @@ loop_vsx:
 | 
			
		||||
 | 
			
		||||
done_vsx:
 | 
			
		||||
	// Increment counter by number of 64 byte blocks
 | 
			
		||||
	MOVWZ (CNT), R14
 | 
			
		||||
	MOVD (CNT), R14
 | 
			
		||||
	ADD  BLOCKS, R14
 | 
			
		||||
	MOVWZ R14, (CNT)
 | 
			
		||||
	MOVD R14, (CNT)
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
tail_vsx:
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -2,7 +2,7 @@
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build (!amd64 && !ppc64le && !ppc64 && !s390x) || !gc || purego
 | 
			
		||||
//go:build (!amd64 && !ppc64le && !s390x) || !gc || purego
 | 
			
		||||
 | 
			
		||||
package poly1305
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										133
									
								
								vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										133
									
								
								vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,93 +1,108 @@
 | 
			
		||||
// Code generated by command: go run sum_amd64_asm.go -out ../sum_amd64.s -pkg poly1305. DO NOT EDIT.
 | 
			
		||||
// Copyright 2012 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc && !purego
 | 
			
		||||
 | 
			
		||||
// func update(state *macState, msg []byte)
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
#define POLY1305_ADD(msg, h0, h1, h2) \
 | 
			
		||||
	ADDQ 0(msg), h0;  \
 | 
			
		||||
	ADCQ 8(msg), h1;  \
 | 
			
		||||
	ADCQ $1, h2;      \
 | 
			
		||||
	LEAQ 16(msg), msg
 | 
			
		||||
 | 
			
		||||
#define POLY1305_MUL(h0, h1, h2, r0, r1, t0, t1, t2, t3) \
 | 
			
		||||
	MOVQ  r0, AX;                  \
 | 
			
		||||
	MULQ  h0;                      \
 | 
			
		||||
	MOVQ  AX, t0;                  \
 | 
			
		||||
	MOVQ  DX, t1;                  \
 | 
			
		||||
	MOVQ  r0, AX;                  \
 | 
			
		||||
	MULQ  h1;                      \
 | 
			
		||||
	ADDQ  AX, t1;                  \
 | 
			
		||||
	ADCQ  $0, DX;                  \
 | 
			
		||||
	MOVQ  r0, t2;                  \
 | 
			
		||||
	IMULQ h2, t2;                  \
 | 
			
		||||
	ADDQ  DX, t2;                  \
 | 
			
		||||
	                               \
 | 
			
		||||
	MOVQ  r1, AX;                  \
 | 
			
		||||
	MULQ  h0;                      \
 | 
			
		||||
	ADDQ  AX, t1;                  \
 | 
			
		||||
	ADCQ  $0, DX;                  \
 | 
			
		||||
	MOVQ  DX, h0;                  \
 | 
			
		||||
	MOVQ  r1, t3;                  \
 | 
			
		||||
	IMULQ h2, t3;                  \
 | 
			
		||||
	MOVQ  r1, AX;                  \
 | 
			
		||||
	MULQ  h1;                      \
 | 
			
		||||
	ADDQ  AX, t2;                  \
 | 
			
		||||
	ADCQ  DX, t3;                  \
 | 
			
		||||
	ADDQ  h0, t2;                  \
 | 
			
		||||
	ADCQ  $0, t3;                  \
 | 
			
		||||
	                               \
 | 
			
		||||
	MOVQ  t0, h0;                  \
 | 
			
		||||
	MOVQ  t1, h1;                  \
 | 
			
		||||
	MOVQ  t2, h2;                  \
 | 
			
		||||
	ANDQ  $3, h2;                  \
 | 
			
		||||
	MOVQ  t2, t0;                  \
 | 
			
		||||
	ANDQ  $0xFFFFFFFFFFFFFFFC, t0; \
 | 
			
		||||
	ADDQ  t0, h0;                  \
 | 
			
		||||
	ADCQ  t3, h1;                  \
 | 
			
		||||
	ADCQ  $0, h2;                  \
 | 
			
		||||
	SHRQ  $2, t3, t2;              \
 | 
			
		||||
	SHRQ  $2, t3;                  \
 | 
			
		||||
	ADDQ  t2, h0;                  \
 | 
			
		||||
	ADCQ  t3, h1;                  \
 | 
			
		||||
	ADCQ  $0, h2
 | 
			
		||||
 | 
			
		||||
// func update(state *[7]uint64, msg []byte)
 | 
			
		||||
TEXT ·update(SB), $0-32
 | 
			
		||||
	MOVQ state+0(FP), DI
 | 
			
		||||
	MOVQ msg_base+8(FP), SI
 | 
			
		||||
	MOVQ msg_len+16(FP), R15
 | 
			
		||||
	MOVQ (DI), R8
 | 
			
		||||
	MOVQ 8(DI), R9
 | 
			
		||||
	MOVQ 16(DI), R10
 | 
			
		||||
	MOVQ 24(DI), R11
 | 
			
		||||
	MOVQ 32(DI), R12
 | 
			
		||||
	CMPQ R15, $0x10
 | 
			
		||||
 | 
			
		||||
	MOVQ 0(DI), R8   // h0
 | 
			
		||||
	MOVQ 8(DI), R9   // h1
 | 
			
		||||
	MOVQ 16(DI), R10 // h2
 | 
			
		||||
	MOVQ 24(DI), R11 // r0
 | 
			
		||||
	MOVQ 32(DI), R12 // r1
 | 
			
		||||
 | 
			
		||||
	CMPQ R15, $16
 | 
			
		||||
	JB   bytes_between_0_and_15
 | 
			
		||||
 | 
			
		||||
loop:
 | 
			
		||||
	ADDQ (SI), R8
 | 
			
		||||
	ADCQ 8(SI), R9
 | 
			
		||||
	ADCQ $0x01, R10
 | 
			
		||||
	LEAQ 16(SI), SI
 | 
			
		||||
	POLY1305_ADD(SI, R8, R9, R10)
 | 
			
		||||
 | 
			
		||||
multiply:
 | 
			
		||||
	MOVQ  R11, AX
 | 
			
		||||
	MULQ  R8
 | 
			
		||||
	MOVQ  AX, BX
 | 
			
		||||
	MOVQ  DX, CX
 | 
			
		||||
	MOVQ  R11, AX
 | 
			
		||||
	MULQ  R9
 | 
			
		||||
	ADDQ  AX, CX
 | 
			
		||||
	ADCQ  $0x00, DX
 | 
			
		||||
	MOVQ  R11, R13
 | 
			
		||||
	IMULQ R10, R13
 | 
			
		||||
	ADDQ  DX, R13
 | 
			
		||||
	MOVQ  R12, AX
 | 
			
		||||
	MULQ  R8
 | 
			
		||||
	ADDQ  AX, CX
 | 
			
		||||
	ADCQ  $0x00, DX
 | 
			
		||||
	MOVQ  DX, R8
 | 
			
		||||
	MOVQ  R12, R14
 | 
			
		||||
	IMULQ R10, R14
 | 
			
		||||
	MOVQ  R12, AX
 | 
			
		||||
	MULQ  R9
 | 
			
		||||
	ADDQ  AX, R13
 | 
			
		||||
	ADCQ  DX, R14
 | 
			
		||||
	ADDQ  R8, R13
 | 
			
		||||
	ADCQ  $0x00, R14
 | 
			
		||||
	MOVQ  BX, R8
 | 
			
		||||
	MOVQ  CX, R9
 | 
			
		||||
	MOVQ  R13, R10
 | 
			
		||||
	ANDQ  $0x03, R10
 | 
			
		||||
	MOVQ  R13, BX
 | 
			
		||||
	ANDQ  $-4, BX
 | 
			
		||||
	ADDQ  BX, R8
 | 
			
		||||
	ADCQ  R14, R9
 | 
			
		||||
	ADCQ  $0x00, R10
 | 
			
		||||
	SHRQ  $0x02, R14, R13
 | 
			
		||||
	SHRQ  $0x02, R14
 | 
			
		||||
	ADDQ  R13, R8
 | 
			
		||||
	ADCQ  R14, R9
 | 
			
		||||
	ADCQ  $0x00, R10
 | 
			
		||||
	SUBQ  $0x10, R15
 | 
			
		||||
	CMPQ  R15, $0x10
 | 
			
		||||
	JAE   loop
 | 
			
		||||
	POLY1305_MUL(R8, R9, R10, R11, R12, BX, CX, R13, R14)
 | 
			
		||||
	SUBQ $16, R15
 | 
			
		||||
	CMPQ R15, $16
 | 
			
		||||
	JAE  loop
 | 
			
		||||
 | 
			
		||||
bytes_between_0_and_15:
 | 
			
		||||
	TESTQ R15, R15
 | 
			
		||||
	JZ    done
 | 
			
		||||
	MOVQ  $0x00000001, BX
 | 
			
		||||
	MOVQ  $1, BX
 | 
			
		||||
	XORQ  CX, CX
 | 
			
		||||
	XORQ  R13, R13
 | 
			
		||||
	ADDQ  R15, SI
 | 
			
		||||
 | 
			
		||||
flush_buffer:
 | 
			
		||||
	SHLQ $0x08, BX, CX
 | 
			
		||||
	SHLQ $0x08, BX
 | 
			
		||||
	SHLQ $8, BX, CX
 | 
			
		||||
	SHLQ $8, BX
 | 
			
		||||
	MOVB -1(SI), R13
 | 
			
		||||
	XORQ R13, BX
 | 
			
		||||
	DECQ SI
 | 
			
		||||
	DECQ R15
 | 
			
		||||
	JNZ  flush_buffer
 | 
			
		||||
 | 
			
		||||
	ADDQ BX, R8
 | 
			
		||||
	ADCQ CX, R9
 | 
			
		||||
	ADCQ $0x00, R10
 | 
			
		||||
	MOVQ $0x00000010, R15
 | 
			
		||||
	ADCQ $0, R10
 | 
			
		||||
	MOVQ $16, R15
 | 
			
		||||
	JMP  multiply
 | 
			
		||||
 | 
			
		||||
done:
 | 
			
		||||
	MOVQ R8, (DI)
 | 
			
		||||
	MOVQ R8, 0(DI)
 | 
			
		||||
	MOVQ R9, 8(DI)
 | 
			
		||||
	MOVQ R10, 16(DI)
 | 
			
		||||
	RET
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc && !purego && (ppc64 || ppc64le)
 | 
			
		||||
//go:build gc && !purego
 | 
			
		||||
 | 
			
		||||
package poly1305
 | 
			
		||||
 | 
			
		||||
@@ -2,25 +2,15 @@
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build gc && !purego && (ppc64 || ppc64le)
 | 
			
		||||
//go:build gc && !purego
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
// This was ported from the amd64 implementation.
 | 
			
		||||
 | 
			
		||||
#ifdef GOARCH_ppc64le
 | 
			
		||||
#define LE_MOVD MOVD
 | 
			
		||||
#define LE_MOVWZ MOVWZ
 | 
			
		||||
#define LE_MOVHZ MOVHZ
 | 
			
		||||
#else
 | 
			
		||||
#define LE_MOVD MOVDBR
 | 
			
		||||
#define LE_MOVWZ MOVWBR
 | 
			
		||||
#define LE_MOVHZ MOVHBR
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define POLY1305_ADD(msg, h0, h1, h2, t0, t1, t2) \
 | 
			
		||||
	LE_MOVD (msg)( R0), t0; \
 | 
			
		||||
	LE_MOVD (msg)(R24), t1; \
 | 
			
		||||
	MOVD (msg), t0;  \
 | 
			
		||||
	MOVD 8(msg), t1; \
 | 
			
		||||
	MOVD $1, t2;     \
 | 
			
		||||
	ADDC t0, h0, h0; \
 | 
			
		||||
	ADDE t1, h1, h1; \
 | 
			
		||||
@@ -60,6 +50,10 @@
 | 
			
		||||
	ADDE   t3, h1, h1;  \
 | 
			
		||||
	ADDZE  h2
 | 
			
		||||
 | 
			
		||||
DATA ·poly1305Mask<>+0x00(SB)/8, $0x0FFFFFFC0FFFFFFF
 | 
			
		||||
DATA ·poly1305Mask<>+0x08(SB)/8, $0x0FFFFFFC0FFFFFFC
 | 
			
		||||
GLOBL ·poly1305Mask<>(SB), RODATA, $16
 | 
			
		||||
 | 
			
		||||
// func update(state *[7]uint64, msg []byte)
 | 
			
		||||
TEXT ·update(SB), $0-32
 | 
			
		||||
	MOVD state+0(FP), R3
 | 
			
		||||
@@ -72,8 +66,6 @@ TEXT ·update(SB), $0-32
 | 
			
		||||
	MOVD 24(R3), R11 // r0
 | 
			
		||||
	MOVD 32(R3), R12 // r1
 | 
			
		||||
 | 
			
		||||
	MOVD $8, R24
 | 
			
		||||
 | 
			
		||||
	CMP R5, $16
 | 
			
		||||
	BLT bytes_between_0_and_15
 | 
			
		||||
 | 
			
		||||
@@ -102,7 +94,7 @@ flush_buffer:
 | 
			
		||||
 | 
			
		||||
	// Greater than 8 -- load the rightmost remaining bytes in msg
 | 
			
		||||
	// and put into R17 (h1)
 | 
			
		||||
	LE_MOVD (R4)(R21), R17
 | 
			
		||||
	MOVD (R4)(R21), R17
 | 
			
		||||
	MOVD $16, R22
 | 
			
		||||
 | 
			
		||||
	// Find the offset to those bytes
 | 
			
		||||
@@ -126,7 +118,7 @@ just1:
 | 
			
		||||
	BLT less8
 | 
			
		||||
 | 
			
		||||
	// Exactly 8
 | 
			
		||||
	LE_MOVD (R4), R16
 | 
			
		||||
	MOVD (R4), R16
 | 
			
		||||
 | 
			
		||||
	CMP R17, $0
 | 
			
		||||
 | 
			
		||||
@@ -141,7 +133,7 @@ less8:
 | 
			
		||||
	MOVD  $0, R22   // shift count
 | 
			
		||||
	CMP   R5, $4
 | 
			
		||||
	BLT   less4
 | 
			
		||||
	LE_MOVWZ (R4), R16
 | 
			
		||||
	MOVWZ (R4), R16
 | 
			
		||||
	ADD   $4, R4
 | 
			
		||||
	ADD   $-4, R5
 | 
			
		||||
	MOVD  $32, R22
 | 
			
		||||
@@ -149,7 +141,7 @@ less8:
 | 
			
		||||
less4:
 | 
			
		||||
	CMP   R5, $2
 | 
			
		||||
	BLT   less2
 | 
			
		||||
	LE_MOVHZ (R4), R21
 | 
			
		||||
	MOVHZ (R4), R21
 | 
			
		||||
	SLD   R22, R21, R21
 | 
			
		||||
	OR    R16, R21, R16
 | 
			
		||||
	ADD   $16, R22
 | 
			
		||||
							
								
								
									
										1742
									
								
								vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1742
									
								
								vendor/golang.org/x/crypto/salsa20/salsa/salsa20_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										5
									
								
								vendor/golang.org/x/crypto/ssh/client_auth.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/crypto/ssh/client_auth.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -555,7 +555,6 @@ func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packe
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	gotMsgExtInfo := false
 | 
			
		||||
	gotUserAuthInfoRequest := false
 | 
			
		||||
	for {
 | 
			
		||||
		packet, err := c.readPacket()
 | 
			
		||||
		if err != nil {
 | 
			
		||||
@@ -586,9 +585,6 @@ func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packe
 | 
			
		||||
			if msg.PartialSuccess {
 | 
			
		||||
				return authPartialSuccess, msg.Methods, nil
 | 
			
		||||
			}
 | 
			
		||||
			if !gotUserAuthInfoRequest {
 | 
			
		||||
				return authFailure, msg.Methods, unexpectedMessageError(msgUserAuthInfoRequest, packet[0])
 | 
			
		||||
			}
 | 
			
		||||
			return authFailure, msg.Methods, nil
 | 
			
		||||
		case msgUserAuthSuccess:
 | 
			
		||||
			return authSuccess, nil, nil
 | 
			
		||||
@@ -600,7 +596,6 @@ func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packe
 | 
			
		||||
		if err := Unmarshal(packet, &msg); err != nil {
 | 
			
		||||
			return authFailure, nil, err
 | 
			
		||||
		}
 | 
			
		||||
		gotUserAuthInfoRequest = true
 | 
			
		||||
 | 
			
		||||
		// Manually unpack the prompt/echo pairs.
 | 
			
		||||
		rest := msg.Prompts
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										44
									
								
								vendor/golang.org/x/crypto/ssh/keys.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										44
									
								
								vendor/golang.org/x/crypto/ssh/keys.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -488,49 +488,7 @@ func (r *rsaPublicKey) Verify(data []byte, sig *Signature) error {
 | 
			
		||||
	h := hash.New()
 | 
			
		||||
	h.Write(data)
 | 
			
		||||
	digest := h.Sum(nil)
 | 
			
		||||
 | 
			
		||||
	// Signatures in PKCS1v15 must match the key's modulus in
 | 
			
		||||
	// length. However with SSH, some signers provide RSA
 | 
			
		||||
	// signatures which are missing the MSB 0's of the bignum
 | 
			
		||||
	// represented. With ssh-rsa signatures, this is encouraged by
 | 
			
		||||
	// the spec (even though e.g. OpenSSH will give the full
 | 
			
		||||
	// length unconditionally). With rsa-sha2-* signatures, the
 | 
			
		||||
	// verifier is allowed to support these, even though they are
 | 
			
		||||
	// out of spec. See RFC 4253 Section 6.6 for ssh-rsa and RFC
 | 
			
		||||
	// 8332 Section 3 for rsa-sha2-* details.
 | 
			
		||||
	//
 | 
			
		||||
	// In practice:
 | 
			
		||||
	// * OpenSSH always allows "short" signatures:
 | 
			
		||||
	//   https://github.com/openssh/openssh-portable/blob/V_9_8_P1/ssh-rsa.c#L526
 | 
			
		||||
	//   but always generates padded signatures:
 | 
			
		||||
	//   https://github.com/openssh/openssh-portable/blob/V_9_8_P1/ssh-rsa.c#L439
 | 
			
		||||
	//
 | 
			
		||||
	// * PuTTY versions 0.81 and earlier will generate short
 | 
			
		||||
	//   signatures for all RSA signature variants. Note that
 | 
			
		||||
	//   PuTTY is embedded in other software, such as WinSCP and
 | 
			
		||||
	//   FileZilla. At the time of writing, a patch has been
 | 
			
		||||
	//   applied to PuTTY to generate padded signatures for
 | 
			
		||||
	//   rsa-sha2-*, but not yet released:
 | 
			
		||||
	//   https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=a5bcf3d384e1bf15a51a6923c3724cbbee022d8e
 | 
			
		||||
	//
 | 
			
		||||
	// * SSH.NET versions 2024.0.0 and earlier will generate short
 | 
			
		||||
	//   signatures for all RSA signature variants, fixed in 2024.1.0:
 | 
			
		||||
	//   https://github.com/sshnet/SSH.NET/releases/tag/2024.1.0
 | 
			
		||||
	//
 | 
			
		||||
	// As a result, we pad these up to the key size by inserting
 | 
			
		||||
	// leading 0's.
 | 
			
		||||
	//
 | 
			
		||||
	// Note that support for short signatures with rsa-sha2-* may
 | 
			
		||||
	// be removed in the future due to such signatures not being
 | 
			
		||||
	// allowed by the spec.
 | 
			
		||||
	blob := sig.Blob
 | 
			
		||||
	keySize := (*rsa.PublicKey)(r).Size()
 | 
			
		||||
	if len(blob) < keySize {
 | 
			
		||||
		padded := make([]byte, keySize)
 | 
			
		||||
		copy(padded[keySize-len(blob):], blob)
 | 
			
		||||
		blob = padded
 | 
			
		||||
	}
 | 
			
		||||
	return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), hash, digest, blob)
 | 
			
		||||
	return rsa.VerifyPKCS1v15((*rsa.PublicKey)(r), hash, digest, sig.Blob)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (r *rsaPublicKey) CryptoPublicKey() crypto.PublicKey {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										19
									
								
								vendor/golang.org/x/crypto/ssh/server.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										19
									
								
								vendor/golang.org/x/crypto/ssh/server.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -149,7 +149,7 @@ func (s *ServerConfig) AddHostKey(key Signer) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// cachedPubKey contains the results of querying whether a public key is
 | 
			
		||||
// acceptable for a user. This is a FIFO cache.
 | 
			
		||||
// acceptable for a user.
 | 
			
		||||
type cachedPubKey struct {
 | 
			
		||||
	user       string
 | 
			
		||||
	pubKeyData []byte
 | 
			
		||||
@@ -157,13 +157,7 @@ type cachedPubKey struct {
 | 
			
		||||
	perms      *Permissions
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// maxCachedPubKeys is the number of cache entries we store.
 | 
			
		||||
//
 | 
			
		||||
// Due to consistent misuse of the PublicKeyCallback API, we have reduced this
 | 
			
		||||
// to 1, such that the only key in the cache is the most recently seen one. This
 | 
			
		||||
// forces the behavior that the last call to PublicKeyCallback will always be
 | 
			
		||||
// with the key that is used for authentication.
 | 
			
		||||
const maxCachedPubKeys = 1
 | 
			
		||||
const maxCachedPubKeys = 16
 | 
			
		||||
 | 
			
		||||
// pubKeyCache caches tests for public keys.  Since SSH clients
 | 
			
		||||
// will query whether a public key is acceptable before attempting to
 | 
			
		||||
@@ -185,10 +179,9 @@ func (c *pubKeyCache) get(user string, pubKeyData []byte) (cachedPubKey, bool) {
 | 
			
		||||
 | 
			
		||||
// add adds the given tuple to the cache.
 | 
			
		||||
func (c *pubKeyCache) add(candidate cachedPubKey) {
 | 
			
		||||
	if len(c.keys) >= maxCachedPubKeys {
 | 
			
		||||
		c.keys = c.keys[1:]
 | 
			
		||||
	if len(c.keys) < maxCachedPubKeys {
 | 
			
		||||
		c.keys = append(c.keys, candidate)
 | 
			
		||||
	}
 | 
			
		||||
	c.keys = append(c.keys, candidate)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ServerConn is an authenticated SSH connection, as seen from the
 | 
			
		||||
@@ -517,8 +510,8 @@ userAuthLoop:
 | 
			
		||||
			if err := s.transport.writePacket(Marshal(discMsg)); err != nil {
 | 
			
		||||
				return nil, err
 | 
			
		||||
			}
 | 
			
		||||
			authErrs = append(authErrs, discMsg)
 | 
			
		||||
			return nil, &ServerAuthError{Errors: authErrs}
 | 
			
		||||
 | 
			
		||||
			return nil, discMsg
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		var userAuthReq userAuthRequestMsg
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								vendor/golang.org/x/sys/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/golang.org/x/sys/LICENSE
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,4 +1,4 @@
 | 
			
		||||
Copyright 2009 The Go Authors.
 | 
			
		||||
Copyright (c) 2009 The Go Authors. All rights reserved.
 | 
			
		||||
 | 
			
		||||
Redistribution and use in source and binary forms, with or without
 | 
			
		||||
modification, are permitted provided that the following conditions are
 | 
			
		||||
@@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer.
 | 
			
		||||
copyright notice, this list of conditions and the following disclaimer
 | 
			
		||||
in the documentation and/or other materials provided with the
 | 
			
		||||
distribution.
 | 
			
		||||
   * Neither the name of Google LLC nor the names of its
 | 
			
		||||
   * Neither the name of Google Inc. nor the names of its
 | 
			
		||||
contributors may be used to endorse or promote products derived from
 | 
			
		||||
this software without specific prior written permission.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										17
									
								
								vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										17
									
								
								vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,17 +0,0 @@
 | 
			
		||||
// Copyright 2024 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build darwin && amd64 && gc
 | 
			
		||||
 | 
			
		||||
#include "textflag.h"
 | 
			
		||||
 | 
			
		||||
TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_sysctl(SB)
 | 
			
		||||
GLOBL	·libc_sysctl_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_sysctl_trampoline_addr(SB)/8, $libc_sysctl_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_sysctlbyname_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_sysctlbyname(SB)
 | 
			
		||||
GLOBL	·libc_sysctlbyname_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_sysctlbyname_trampoline_addr(SB)/8, $libc_sysctlbyname_trampoline<>(SB)
 | 
			
		||||
							
								
								
									
										21
									
								
								vendor/golang.org/x/sys/cpu/cpu.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										21
									
								
								vendor/golang.org/x/sys/cpu/cpu.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -105,8 +105,6 @@ var ARM64 struct {
 | 
			
		||||
	HasSVE      bool // Scalable Vector Extensions
 | 
			
		||||
	HasSVE2     bool // Scalable Vector Extensions 2
 | 
			
		||||
	HasASIMDFHM bool // Advanced SIMD multiplication FP16 to FP32
 | 
			
		||||
	HasDIT      bool // Data Independent Timing support
 | 
			
		||||
	HasI8MM     bool // Advanced SIMD Int8 matrix multiplication instructions
 | 
			
		||||
	_           CacheLinePad
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -201,25 +199,6 @@ var S390X struct {
 | 
			
		||||
	_         CacheLinePad
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// RISCV64 contains the supported CPU features and performance characteristics for riscv64
 | 
			
		||||
// platforms. The booleans in RISCV64, with the exception of HasFastMisaligned, indicate
 | 
			
		||||
// the presence of RISC-V extensions.
 | 
			
		||||
//
 | 
			
		||||
// It is safe to assume that all the RV64G extensions are supported and so they are omitted from
 | 
			
		||||
// this structure. As riscv64 Go programs require at least RV64G, the code that populates
 | 
			
		||||
// this structure cannot run successfully if some of the RV64G extensions are missing.
 | 
			
		||||
// The struct is padded to avoid false sharing.
 | 
			
		||||
var RISCV64 struct {
 | 
			
		||||
	_                 CacheLinePad
 | 
			
		||||
	HasFastMisaligned bool // Fast misaligned accesses
 | 
			
		||||
	HasC              bool // Compressed instruction-set extension
 | 
			
		||||
	HasV              bool // Vector extension compatible with RVV 1.0
 | 
			
		||||
	HasZba            bool // Address generation instructions extension
 | 
			
		||||
	HasZbb            bool // Basic bit-manipulation extension
 | 
			
		||||
	HasZbs            bool // Single-bit instructions extension
 | 
			
		||||
	_                 CacheLinePad
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	archInit()
 | 
			
		||||
	initOptions()
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										12
									
								
								vendor/golang.org/x/sys/cpu/cpu_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								vendor/golang.org/x/sys/cpu/cpu_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -38,8 +38,6 @@ func initOptions() {
 | 
			
		||||
		{Name: "dcpop", Feature: &ARM64.HasDCPOP},
 | 
			
		||||
		{Name: "asimddp", Feature: &ARM64.HasASIMDDP},
 | 
			
		||||
		{Name: "asimdfhm", Feature: &ARM64.HasASIMDFHM},
 | 
			
		||||
		{Name: "dit", Feature: &ARM64.HasDIT},
 | 
			
		||||
		{Name: "i8mm", Feature: &ARM64.HasI8MM},
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -147,11 +145,6 @@ func parseARM64SystemRegisters(isar0, isar1, pfr0 uint64) {
 | 
			
		||||
		ARM64.HasLRCPC = true
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	switch extractBits(isar1, 52, 55) {
 | 
			
		||||
	case 1:
 | 
			
		||||
		ARM64.HasI8MM = true
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// ID_AA64PFR0_EL1
 | 
			
		||||
	switch extractBits(pfr0, 16, 19) {
 | 
			
		||||
	case 0:
 | 
			
		||||
@@ -175,11 +168,6 @@ func parseARM64SystemRegisters(isar0, isar1, pfr0 uint64) {
 | 
			
		||||
 | 
			
		||||
		parseARM64SVERegister(getzfr0())
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	switch extractBits(pfr0, 48, 51) {
 | 
			
		||||
	case 1:
 | 
			
		||||
		ARM64.HasDIT = true
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func parseARM64SVERegister(zfr0 uint64) {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										61
									
								
								vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										61
									
								
								vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,61 +0,0 @@
 | 
			
		||||
// Copyright 2024 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build darwin && amd64 && gc
 | 
			
		||||
 | 
			
		||||
package cpu
 | 
			
		||||
 | 
			
		||||
// darwinSupportsAVX512 checks Darwin kernel for AVX512 support via sysctl
 | 
			
		||||
// call (see issue 43089). It also restricts AVX512 support for Darwin to
 | 
			
		||||
// kernel version 21.3.0 (MacOS 12.2.0) or later (see issue 49233).
 | 
			
		||||
//
 | 
			
		||||
// Background:
 | 
			
		||||
// Darwin implements a special mechanism to economize on thread state when
 | 
			
		||||
// AVX512 specific registers are not in use. This scheme minimizes state when
 | 
			
		||||
// preempting threads that haven't yet used any AVX512 instructions, but adds
 | 
			
		||||
// special requirements to check for AVX512 hardware support at runtime (e.g.
 | 
			
		||||
// via sysctl call or commpage inspection). See issue 43089 and link below for
 | 
			
		||||
// full background:
 | 
			
		||||
// https://github.com/apple-oss-distributions/xnu/blob/xnu-11215.1.10/osfmk/i386/fpu.c#L214-L240
 | 
			
		||||
//
 | 
			
		||||
// Additionally, all versions of the Darwin kernel from 19.6.0 through 21.2.0
 | 
			
		||||
// (corresponding to MacOS 10.15.6 - 12.1) have a bug that can cause corruption
 | 
			
		||||
// of the AVX512 mask registers (K0-K7) upon signal return. For this reason
 | 
			
		||||
// AVX512 is considered unsafe to use on Darwin for kernel versions prior to
 | 
			
		||||
// 21.3.0, where a fix has been confirmed. See issue 49233 for full background.
 | 
			
		||||
func darwinSupportsAVX512() bool {
 | 
			
		||||
	return darwinSysctlEnabled([]byte("hw.optional.avx512f\x00")) && darwinKernelVersionCheck(21, 3, 0)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Ensure Darwin kernel version is at least major.minor.patch, avoiding dependencies
 | 
			
		||||
func darwinKernelVersionCheck(major, minor, patch int) bool {
 | 
			
		||||
	var release [256]byte
 | 
			
		||||
	err := darwinOSRelease(&release)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return false
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var mmp [3]int
 | 
			
		||||
	c := 0
 | 
			
		||||
Loop:
 | 
			
		||||
	for _, b := range release[:] {
 | 
			
		||||
		switch {
 | 
			
		||||
		case b >= '0' && b <= '9':
 | 
			
		||||
			mmp[c] = 10*mmp[c] + int(b-'0')
 | 
			
		||||
		case b == '.':
 | 
			
		||||
			c++
 | 
			
		||||
			if c > 2 {
 | 
			
		||||
				return false
 | 
			
		||||
			}
 | 
			
		||||
		case b == 0:
 | 
			
		||||
			break Loop
 | 
			
		||||
		default:
 | 
			
		||||
			return false
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	if c != 2 {
 | 
			
		||||
		return false
 | 
			
		||||
	}
 | 
			
		||||
	return mmp[0] > major || mmp[0] == major && (mmp[1] > minor || mmp[1] == minor && mmp[2] >= patch)
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										4
									
								
								vendor/golang.org/x/sys/cpu/cpu_gc_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/golang.org/x/sys/cpu/cpu_gc_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -6,10 +6,10 @@
 | 
			
		||||
 | 
			
		||||
package cpu
 | 
			
		||||
 | 
			
		||||
// cpuid is implemented in cpu_gc_x86.s for gc compiler
 | 
			
		||||
// cpuid is implemented in cpu_x86.s for gc compiler
 | 
			
		||||
// and in cpu_gccgo.c for gccgo.
 | 
			
		||||
func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32)
 | 
			
		||||
 | 
			
		||||
// xgetbv with ecx = 0 is implemented in cpu_gc_x86.s for gc compiler
 | 
			
		||||
// xgetbv with ecx = 0 is implemented in cpu_x86.s for gc compiler
 | 
			
		||||
// and in cpu_gccgo.c for gccgo.
 | 
			
		||||
func xgetbv() (eax, edx uint32)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -23,3 +23,9 @@ func xgetbv() (eax, edx uint32) {
 | 
			
		||||
	gccgoXgetbv(&a, &d)
 | 
			
		||||
	return a, d
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// gccgo doesn't build on Darwin, per:
 | 
			
		||||
// https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/gcc.rb#L76
 | 
			
		||||
func darwinSupportsAVX512() bool {
 | 
			
		||||
	return false
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -35,10 +35,8 @@ const (
 | 
			
		||||
	hwcap_SHA512   = 1 << 21
 | 
			
		||||
	hwcap_SVE      = 1 << 22
 | 
			
		||||
	hwcap_ASIMDFHM = 1 << 23
 | 
			
		||||
	hwcap_DIT      = 1 << 24
 | 
			
		||||
 | 
			
		||||
	hwcap2_SVE2 = 1 << 1
 | 
			
		||||
	hwcap2_I8MM = 1 << 13
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// linuxKernelCanEmulateCPUID reports whether we're running
 | 
			
		||||
@@ -108,11 +106,9 @@ func doinit() {
 | 
			
		||||
	ARM64.HasSHA512 = isSet(hwCap, hwcap_SHA512)
 | 
			
		||||
	ARM64.HasSVE = isSet(hwCap, hwcap_SVE)
 | 
			
		||||
	ARM64.HasASIMDFHM = isSet(hwCap, hwcap_ASIMDFHM)
 | 
			
		||||
	ARM64.HasDIT = isSet(hwCap, hwcap_DIT)
 | 
			
		||||
 | 
			
		||||
	// HWCAP2 feature bits
 | 
			
		||||
	ARM64.HasSVE2 = isSet(hwCap2, hwcap2_SVE2)
 | 
			
		||||
	ARM64.HasI8MM = isSet(hwCap2, hwcap2_I8MM)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func isSet(hwc uint, value uint) bool {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -2,7 +2,7 @@
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build linux && !arm && !arm64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !s390x && !riscv64
 | 
			
		||||
//go:build linux && !arm && !arm64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !s390x
 | 
			
		||||
 | 
			
		||||
package cpu
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										137
									
								
								vendor/golang.org/x/sys/cpu/cpu_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										137
									
								
								vendor/golang.org/x/sys/cpu/cpu_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,137 +0,0 @@
 | 
			
		||||
// Copyright 2024 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
package cpu
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"syscall"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// RISC-V extension discovery code for Linux. The approach here is to first try the riscv_hwprobe
 | 
			
		||||
// syscall falling back to HWCAP to check for the C extension if riscv_hwprobe is not available.
 | 
			
		||||
//
 | 
			
		||||
// A note on detection of the Vector extension using HWCAP.
 | 
			
		||||
//
 | 
			
		||||
// Support for the Vector extension version 1.0 was added to the Linux kernel in release 6.5.
 | 
			
		||||
// Support for the riscv_hwprobe syscall was added in 6.4. It follows that if the riscv_hwprobe
 | 
			
		||||
// syscall is not available then neither is the Vector extension (which needs kernel support).
 | 
			
		||||
// The riscv_hwprobe syscall should then be all we need to detect the Vector extension.
 | 
			
		||||
// However, some RISC-V board manufacturers ship boards with an older kernel on top of which
 | 
			
		||||
// they have back-ported various versions of the Vector extension patches but not the riscv_hwprobe
 | 
			
		||||
// patches. These kernels advertise support for the Vector extension using HWCAP. Falling
 | 
			
		||||
// back to HWCAP to detect the Vector extension, if riscv_hwprobe is not available, or simply not
 | 
			
		||||
// bothering with riscv_hwprobe at all and just using HWCAP may then seem like an attractive option.
 | 
			
		||||
//
 | 
			
		||||
// Unfortunately, simply checking the 'V' bit in AT_HWCAP will not work as this bit is used by
 | 
			
		||||
// RISC-V board and cloud instance providers to mean different things. The Lichee Pi 4A board
 | 
			
		||||
// and the Scaleway RV1 cloud instances use the 'V' bit to advertise their support for the unratified
 | 
			
		||||
// 0.7.1 version of the Vector Specification. The Banana Pi BPI-F3 and the CanMV-K230 board use
 | 
			
		||||
// it to advertise support for 1.0 of the Vector extension. Versions 0.7.1 and 1.0 of the Vector
 | 
			
		||||
// extension are binary incompatible. HWCAP can then not be used in isolation to populate the
 | 
			
		||||
// HasV field as this field indicates that the underlying CPU is compatible with RVV 1.0.
 | 
			
		||||
//
 | 
			
		||||
// There is a way at runtime to distinguish between versions 0.7.1 and 1.0 of the Vector
 | 
			
		||||
// specification by issuing a RVV 1.0 vsetvli instruction and checking the vill bit of the vtype
 | 
			
		||||
// register. This check would allow us to safely detect version 1.0 of the Vector extension
 | 
			
		||||
// with HWCAP, if riscv_hwprobe were not available. However, the check cannot
 | 
			
		||||
// be added until the assembler supports the Vector instructions.
 | 
			
		||||
//
 | 
			
		||||
// Note the riscv_hwprobe syscall does not suffer from these ambiguities by design as all of the
 | 
			
		||||
// extensions it advertises support for are explicitly versioned. It's also worth noting that
 | 
			
		||||
// the riscv_hwprobe syscall is the only way to detect multi-letter RISC-V extensions, e.g., Zba.
 | 
			
		||||
// These cannot be detected using HWCAP and so riscv_hwprobe must be used to detect the majority
 | 
			
		||||
// of RISC-V extensions.
 | 
			
		||||
//
 | 
			
		||||
// Please see https://docs.kernel.org/arch/riscv/hwprobe.html for more information.
 | 
			
		||||
 | 
			
		||||
// golang.org/x/sys/cpu is not allowed to depend on golang.org/x/sys/unix so we must
 | 
			
		||||
// reproduce the constants, types and functions needed to make the riscv_hwprobe syscall
 | 
			
		||||
// here.
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	// Copied from golang.org/x/sys/unix/ztypes_linux_riscv64.go.
 | 
			
		||||
	riscv_HWPROBE_KEY_IMA_EXT_0   = 0x4
 | 
			
		||||
	riscv_HWPROBE_IMA_C           = 0x2
 | 
			
		||||
	riscv_HWPROBE_IMA_V           = 0x4
 | 
			
		||||
	riscv_HWPROBE_EXT_ZBA         = 0x8
 | 
			
		||||
	riscv_HWPROBE_EXT_ZBB         = 0x10
 | 
			
		||||
	riscv_HWPROBE_EXT_ZBS         = 0x20
 | 
			
		||||
	riscv_HWPROBE_KEY_CPUPERF_0   = 0x5
 | 
			
		||||
	riscv_HWPROBE_MISALIGNED_FAST = 0x3
 | 
			
		||||
	riscv_HWPROBE_MISALIGNED_MASK = 0x7
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	// sys_RISCV_HWPROBE is copied from golang.org/x/sys/unix/zsysnum_linux_riscv64.go.
 | 
			
		||||
	sys_RISCV_HWPROBE = 258
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// riscvHWProbePairs is copied from golang.org/x/sys/unix/ztypes_linux_riscv64.go.
 | 
			
		||||
type riscvHWProbePairs struct {
 | 
			
		||||
	key   int64
 | 
			
		||||
	value uint64
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	// CPU features
 | 
			
		||||
	hwcap_RISCV_ISA_C = 1 << ('C' - 'A')
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func doinit() {
 | 
			
		||||
	// A slice of key/value pair structures is passed to the RISCVHWProbe syscall. The key
 | 
			
		||||
	// field should be initialised with one of the key constants defined above, e.g.,
 | 
			
		||||
	// RISCV_HWPROBE_KEY_IMA_EXT_0. The syscall will set the value field to the appropriate value.
 | 
			
		||||
	// If the kernel does not recognise a key it will set the key field to -1 and the value field to 0.
 | 
			
		||||
 | 
			
		||||
	pairs := []riscvHWProbePairs{
 | 
			
		||||
		{riscv_HWPROBE_KEY_IMA_EXT_0, 0},
 | 
			
		||||
		{riscv_HWPROBE_KEY_CPUPERF_0, 0},
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// This call only indicates that extensions are supported if they are implemented on all cores.
 | 
			
		||||
	if riscvHWProbe(pairs, 0) {
 | 
			
		||||
		if pairs[0].key != -1 {
 | 
			
		||||
			v := uint(pairs[0].value)
 | 
			
		||||
			RISCV64.HasC = isSet(v, riscv_HWPROBE_IMA_C)
 | 
			
		||||
			RISCV64.HasV = isSet(v, riscv_HWPROBE_IMA_V)
 | 
			
		||||
			RISCV64.HasZba = isSet(v, riscv_HWPROBE_EXT_ZBA)
 | 
			
		||||
			RISCV64.HasZbb = isSet(v, riscv_HWPROBE_EXT_ZBB)
 | 
			
		||||
			RISCV64.HasZbs = isSet(v, riscv_HWPROBE_EXT_ZBS)
 | 
			
		||||
		}
 | 
			
		||||
		if pairs[1].key != -1 {
 | 
			
		||||
			v := pairs[1].value & riscv_HWPROBE_MISALIGNED_MASK
 | 
			
		||||
			RISCV64.HasFastMisaligned = v == riscv_HWPROBE_MISALIGNED_FAST
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Let's double check with HWCAP if the C extension does not appear to be supported.
 | 
			
		||||
	// This may happen if we're running on a kernel older than 6.4.
 | 
			
		||||
 | 
			
		||||
	if !RISCV64.HasC {
 | 
			
		||||
		RISCV64.HasC = isSet(hwCap, hwcap_RISCV_ISA_C)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func isSet(hwc uint, value uint) bool {
 | 
			
		||||
	return hwc&value != 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// riscvHWProbe is a simplified version of the generated wrapper function found in
 | 
			
		||||
// golang.org/x/sys/unix/zsyscall_linux_riscv64.go. We simplify it by removing the
 | 
			
		||||
// cpuCount and cpus parameters which we do not need. We always want to pass 0 for
 | 
			
		||||
// these parameters here so the kernel only reports the extensions that are present
 | 
			
		||||
// on all cores.
 | 
			
		||||
func riscvHWProbe(pairs []riscvHWProbePairs, flags uint) bool {
 | 
			
		||||
	var _zero uintptr
 | 
			
		||||
	var p0 unsafe.Pointer
 | 
			
		||||
	if len(pairs) > 0 {
 | 
			
		||||
		p0 = unsafe.Pointer(&pairs[0])
 | 
			
		||||
	} else {
 | 
			
		||||
		p0 = unsafe.Pointer(&_zero)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	_, _, e1 := syscall.Syscall6(sys_RISCV_HWPROBE, uintptr(p0), uintptr(len(pairs)), uintptr(0), uintptr(0), uintptr(flags), 0)
 | 
			
		||||
	return e1 == 0
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										11
									
								
								vendor/golang.org/x/sys/cpu/cpu_other_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/golang.org/x/sys/cpu/cpu_other_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,11 +0,0 @@
 | 
			
		||||
// Copyright 2024 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build 386 || amd64p32 || (amd64 && (!darwin || !gc))
 | 
			
		||||
 | 
			
		||||
package cpu
 | 
			
		||||
 | 
			
		||||
func darwinSupportsAVX512() bool {
 | 
			
		||||
	panic("only implemented for gc && amd64 && darwin")
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										11
									
								
								vendor/golang.org/x/sys/cpu/cpu_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/golang.org/x/sys/cpu/cpu_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -8,13 +8,4 @@ package cpu
 | 
			
		||||
 | 
			
		||||
const cacheLineSize = 64
 | 
			
		||||
 | 
			
		||||
func initOptions() {
 | 
			
		||||
	options = []option{
 | 
			
		||||
		{Name: "fastmisaligned", Feature: &RISCV64.HasFastMisaligned},
 | 
			
		||||
		{Name: "c", Feature: &RISCV64.HasC},
 | 
			
		||||
		{Name: "v", Feature: &RISCV64.HasV},
 | 
			
		||||
		{Name: "zba", Feature: &RISCV64.HasZba},
 | 
			
		||||
		{Name: "zbb", Feature: &RISCV64.HasZbb},
 | 
			
		||||
		{Name: "zbs", Feature: &RISCV64.HasZbs},
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
func initOptions() {}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								vendor/golang.org/x/sys/cpu/cpu_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/golang.org/x/sys/cpu/cpu_x86.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -92,8 +92,10 @@ func archInit() {
 | 
			
		||||
		osSupportsAVX = isSet(1, eax) && isSet(2, eax)
 | 
			
		||||
 | 
			
		||||
		if runtime.GOOS == "darwin" {
 | 
			
		||||
			// Darwin requires special AVX512 checks, see cpu_darwin_x86.go
 | 
			
		||||
			osSupportsAVX512 = osSupportsAVX && darwinSupportsAVX512()
 | 
			
		||||
			// Darwin doesn't save/restore AVX-512 mask registers correctly across signal handlers.
 | 
			
		||||
			// Since users can't rely on mask register contents, let's not advertise AVX-512 support.
 | 
			
		||||
			// See issue 49233.
 | 
			
		||||
			osSupportsAVX512 = false
 | 
			
		||||
		} else {
 | 
			
		||||
			// Check if OPMASK and ZMM registers have OS support.
 | 
			
		||||
			osSupportsAVX512 = osSupportsAVX && isSet(5, eax) && isSet(6, eax) && isSet(7, eax)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/cpu/cpu_gc_x86.s → vendor/golang.org/x/sys/cpu/cpu_x86.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/cpu/cpu_gc_x86.s → vendor/golang.org/x/sys/cpu/cpu_x86.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -18,7 +18,7 @@ TEXT ·cpuid(SB), NOSPLIT, $0-24
 | 
			
		||||
	RET
 | 
			
		||||
 | 
			
		||||
// func xgetbv() (eax, edx uint32)
 | 
			
		||||
TEXT ·xgetbv(SB), NOSPLIT, $0-8
 | 
			
		||||
TEXT ·xgetbv(SB),NOSPLIT,$0-8
 | 
			
		||||
	MOVL $0, CX
 | 
			
		||||
	XGETBV
 | 
			
		||||
	MOVL AX, eax+0(FP)
 | 
			
		||||
							
								
								
									
										98
									
								
								vendor/golang.org/x/sys/cpu/syscall_darwin_x86_gc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										98
									
								
								vendor/golang.org/x/sys/cpu/syscall_darwin_x86_gc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,98 +0,0 @@
 | 
			
		||||
// Copyright 2024 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
// Minimal copy of x/sys/unix so the cpu package can make a
 | 
			
		||||
// system call on Darwin without depending on x/sys/unix.
 | 
			
		||||
 | 
			
		||||
//go:build darwin && amd64 && gc
 | 
			
		||||
 | 
			
		||||
package cpu
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"syscall"
 | 
			
		||||
	"unsafe"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type _C_int int32
 | 
			
		||||
 | 
			
		||||
// adapted from unix.Uname() at x/sys/unix/syscall_darwin.go L419
 | 
			
		||||
func darwinOSRelease(release *[256]byte) error {
 | 
			
		||||
	// from x/sys/unix/zerrors_openbsd_amd64.go
 | 
			
		||||
	const (
 | 
			
		||||
		CTL_KERN       = 0x1
 | 
			
		||||
		KERN_OSRELEASE = 0x2
 | 
			
		||||
	)
 | 
			
		||||
 | 
			
		||||
	mib := []_C_int{CTL_KERN, KERN_OSRELEASE}
 | 
			
		||||
	n := unsafe.Sizeof(*release)
 | 
			
		||||
 | 
			
		||||
	return sysctl(mib, &release[0], &n, nil, 0)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type Errno = syscall.Errno
 | 
			
		||||
 | 
			
		||||
var _zero uintptr // Single-word zero for use when we need a valid pointer to 0 bytes.
 | 
			
		||||
 | 
			
		||||
// from x/sys/unix/zsyscall_darwin_amd64.go L791-807
 | 
			
		||||
func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) error {
 | 
			
		||||
	var _p0 unsafe.Pointer
 | 
			
		||||
	if len(mib) > 0 {
 | 
			
		||||
		_p0 = unsafe.Pointer(&mib[0])
 | 
			
		||||
	} else {
 | 
			
		||||
		_p0 = unsafe.Pointer(&_zero)
 | 
			
		||||
	}
 | 
			
		||||
	if _, _, err := syscall_syscall6(
 | 
			
		||||
		libc_sysctl_trampoline_addr,
 | 
			
		||||
		uintptr(_p0),
 | 
			
		||||
		uintptr(len(mib)),
 | 
			
		||||
		uintptr(unsafe.Pointer(old)),
 | 
			
		||||
		uintptr(unsafe.Pointer(oldlen)),
 | 
			
		||||
		uintptr(unsafe.Pointer(new)),
 | 
			
		||||
		uintptr(newlen),
 | 
			
		||||
	); err != 0 {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_sysctl_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// adapted from internal/cpu/cpu_arm64_darwin.go
 | 
			
		||||
func darwinSysctlEnabled(name []byte) bool {
 | 
			
		||||
	out := int32(0)
 | 
			
		||||
	nout := unsafe.Sizeof(out)
 | 
			
		||||
	if ret := sysctlbyname(&name[0], (*byte)(unsafe.Pointer(&out)), &nout, nil, 0); ret != nil {
 | 
			
		||||
		return false
 | 
			
		||||
	}
 | 
			
		||||
	return out > 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_sysctl sysctl "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
var libc_sysctlbyname_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// adapted from runtime/sys_darwin.go in the pattern of sysctl() above, as defined in x/sys/unix
 | 
			
		||||
func sysctlbyname(name *byte, old *byte, oldlen *uintptr, new *byte, newlen uintptr) error {
 | 
			
		||||
	if _, _, err := syscall_syscall6(
 | 
			
		||||
		libc_sysctlbyname_trampoline_addr,
 | 
			
		||||
		uintptr(unsafe.Pointer(name)),
 | 
			
		||||
		uintptr(unsafe.Pointer(old)),
 | 
			
		||||
		uintptr(unsafe.Pointer(oldlen)),
 | 
			
		||||
		uintptr(unsafe.Pointer(new)),
 | 
			
		||||
		uintptr(newlen),
 | 
			
		||||
		0,
 | 
			
		||||
	); err != 0 {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_sysctlbyname sysctlbyname "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
// Implemented in the runtime package (runtime/sys_darwin.go)
 | 
			
		||||
func syscall_syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
 | 
			
		||||
 | 
			
		||||
//go:linkname syscall_syscall6 syscall.syscall6
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/README.md
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -156,7 +156,7 @@ from the generated architecture-specific files listed below, and merge these
 | 
			
		||||
into a common file for each OS.
 | 
			
		||||
 | 
			
		||||
The merge is performed in the following steps:
 | 
			
		||||
1. Construct the set of common code that is identical in all architecture-specific files.
 | 
			
		||||
1. Construct the set of common code that is idential in all architecture-specific files.
 | 
			
		||||
2. Write this common code to the merged file.
 | 
			
		||||
3. Remove the common code from all architecture-specific files.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										96
									
								
								vendor/golang.org/x/sys/unix/ioctl_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										96
									
								
								vendor/golang.org/x/sys/unix/ioctl_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -58,102 +58,6 @@ func IoctlGetEthtoolDrvinfo(fd int, ifname string) (*EthtoolDrvinfo, error) {
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetEthtoolTsInfo fetches ethtool timestamping and PHC
 | 
			
		||||
// association for the network device specified by ifname.
 | 
			
		||||
func IoctlGetEthtoolTsInfo(fd int, ifname string) (*EthtoolTsInfo, error) {
 | 
			
		||||
	ifr, err := NewIfreq(ifname)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	value := EthtoolTsInfo{Cmd: ETHTOOL_GET_TS_INFO}
 | 
			
		||||
	ifrd := ifr.withData(unsafe.Pointer(&value))
 | 
			
		||||
 | 
			
		||||
	err = ioctlIfreqData(fd, SIOCETHTOOL, &ifrd)
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetHwTstamp retrieves the hardware timestamping configuration
 | 
			
		||||
// for the network device specified by ifname.
 | 
			
		||||
func IoctlGetHwTstamp(fd int, ifname string) (*HwTstampConfig, error) {
 | 
			
		||||
	ifr, err := NewIfreq(ifname)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	value := HwTstampConfig{}
 | 
			
		||||
	ifrd := ifr.withData(unsafe.Pointer(&value))
 | 
			
		||||
 | 
			
		||||
	err = ioctlIfreqData(fd, SIOCGHWTSTAMP, &ifrd)
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlSetHwTstamp updates the hardware timestamping configuration for
 | 
			
		||||
// the network device specified by ifname.
 | 
			
		||||
func IoctlSetHwTstamp(fd int, ifname string, cfg *HwTstampConfig) error {
 | 
			
		||||
	ifr, err := NewIfreq(ifname)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return err
 | 
			
		||||
	}
 | 
			
		||||
	ifrd := ifr.withData(unsafe.Pointer(cfg))
 | 
			
		||||
	return ioctlIfreqData(fd, SIOCSHWTSTAMP, &ifrd)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FdToClockID derives the clock ID from the file descriptor number
 | 
			
		||||
// - see clock_gettime(3), FD_TO_CLOCKID macros. The resulting ID is
 | 
			
		||||
// suitable for system calls like ClockGettime.
 | 
			
		||||
func FdToClockID(fd int) int32 { return int32((int(^fd) << 3) | 3) }
 | 
			
		||||
 | 
			
		||||
// IoctlPtpClockGetcaps returns the description of a given PTP device.
 | 
			
		||||
func IoctlPtpClockGetcaps(fd int) (*PtpClockCaps, error) {
 | 
			
		||||
	var value PtpClockCaps
 | 
			
		||||
	err := ioctlPtr(fd, PTP_CLOCK_GETCAPS2, unsafe.Pointer(&value))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlPtpSysOffsetPrecise returns a description of the clock
 | 
			
		||||
// offset compared to the system clock.
 | 
			
		||||
func IoctlPtpSysOffsetPrecise(fd int) (*PtpSysOffsetPrecise, error) {
 | 
			
		||||
	var value PtpSysOffsetPrecise
 | 
			
		||||
	err := ioctlPtr(fd, PTP_SYS_OFFSET_PRECISE2, unsafe.Pointer(&value))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlPtpSysOffsetExtended returns an extended description of the
 | 
			
		||||
// clock offset compared to the system clock. The samples parameter
 | 
			
		||||
// specifies the desired number of measurements.
 | 
			
		||||
func IoctlPtpSysOffsetExtended(fd int, samples uint) (*PtpSysOffsetExtended, error) {
 | 
			
		||||
	value := PtpSysOffsetExtended{Samples: uint32(samples)}
 | 
			
		||||
	err := ioctlPtr(fd, PTP_SYS_OFFSET_EXTENDED2, unsafe.Pointer(&value))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlPtpPinGetfunc returns the configuration of the specified
 | 
			
		||||
// I/O pin on given PTP device.
 | 
			
		||||
func IoctlPtpPinGetfunc(fd int, index uint) (*PtpPinDesc, error) {
 | 
			
		||||
	value := PtpPinDesc{Index: uint32(index)}
 | 
			
		||||
	err := ioctlPtr(fd, PTP_PIN_GETFUNC2, unsafe.Pointer(&value))
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlPtpPinSetfunc updates configuration of the specified PTP
 | 
			
		||||
// I/O pin.
 | 
			
		||||
func IoctlPtpPinSetfunc(fd int, pd *PtpPinDesc) error {
 | 
			
		||||
	return ioctlPtr(fd, PTP_PIN_SETFUNC2, unsafe.Pointer(pd))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlPtpPeroutRequest configures the periodic output mode of the
 | 
			
		||||
// PTP I/O pins.
 | 
			
		||||
func IoctlPtpPeroutRequest(fd int, r *PtpPeroutRequest) error {
 | 
			
		||||
	return ioctlPtr(fd, PTP_PEROUT_REQUEST2, unsafe.Pointer(r))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlPtpExttsRequest configures the external timestamping mode
 | 
			
		||||
// of the PTP I/O pins.
 | 
			
		||||
func IoctlPtpExttsRequest(fd int, r *PtpExttsRequest) error {
 | 
			
		||||
	return ioctlPtr(fd, PTP_EXTTS_REQUEST2, unsafe.Pointer(r))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IoctlGetWatchdogInfo fetches information about a watchdog device from the
 | 
			
		||||
// Linux watchdog API. For more information, see:
 | 
			
		||||
// https://www.kernel.org/doc/html/latest/watchdog/watchdog-api.html.
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										18
									
								
								vendor/golang.org/x/sys/unix/mkerrors.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										18
									
								
								vendor/golang.org/x/sys/unix/mkerrors.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -58,7 +58,6 @@ includes_Darwin='
 | 
			
		||||
#define _DARWIN_USE_64_BIT_INODE
 | 
			
		||||
#define __APPLE_USE_RFC_3542
 | 
			
		||||
#include <stdint.h>
 | 
			
		||||
#include <sys/stdio.h>
 | 
			
		||||
#include <sys/attr.h>
 | 
			
		||||
#include <sys/clonefile.h>
 | 
			
		||||
#include <sys/kern_control.h>
 | 
			
		||||
@@ -158,16 +157,6 @@ includes_Linux='
 | 
			
		||||
#endif
 | 
			
		||||
#define _GNU_SOURCE
 | 
			
		||||
 | 
			
		||||
// See the description in unix/linux/types.go
 | 
			
		||||
#if defined(__ARM_EABI__) || \
 | 
			
		||||
	(defined(__mips__) && (_MIPS_SIM == _ABIO32)) || \
 | 
			
		||||
	(defined(__powerpc__) && (!defined(__powerpc64__)))
 | 
			
		||||
# ifdef   _TIME_BITS
 | 
			
		||||
#  undef  _TIME_BITS
 | 
			
		||||
# endif
 | 
			
		||||
# define  _TIME_BITS 32
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// <sys/ioctl.h> is broken on powerpc64, as it fails to include definitions of
 | 
			
		||||
// these structures. We just include them copied from <bits/termios.h>.
 | 
			
		||||
#if defined(__powerpc__)
 | 
			
		||||
@@ -266,7 +255,6 @@ struct ltchars {
 | 
			
		||||
#include <linux/nsfs.h>
 | 
			
		||||
#include <linux/perf_event.h>
 | 
			
		||||
#include <linux/pps.h>
 | 
			
		||||
#include <linux/ptp_clock.h>
 | 
			
		||||
#include <linux/ptrace.h>
 | 
			
		||||
#include <linux/random.h>
 | 
			
		||||
#include <linux/reboot.h>
 | 
			
		||||
@@ -538,7 +526,6 @@ ccflags="$@"
 | 
			
		||||
		$2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MREMAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL|TCPOPT|UDP)_/ ||
 | 
			
		||||
		$2 ~ /^NFC_(GENL|PROTO|COMM|RF|SE|DIRECTION|LLCP|SOCKPROTO)_/ ||
 | 
			
		||||
		$2 ~ /^NFC_.*_(MAX)?SIZE$/ ||
 | 
			
		||||
		$2 ~ /^PTP_/ ||
 | 
			
		||||
		$2 ~ /^RAW_PAYLOAD_/ ||
 | 
			
		||||
		$2 ~ /^[US]F_/ ||
 | 
			
		||||
		$2 ~ /^TP_STATUS_/ ||
 | 
			
		||||
@@ -564,7 +551,6 @@ ccflags="$@"
 | 
			
		||||
		$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
 | 
			
		||||
		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||
 | 
			
		||||
		$2 ~ /^SOCK_|SK_DIAG_|SKNLGRP_$/ ||
 | 
			
		||||
		$2 ~ /^(CONNECT|SAE)_/ ||
 | 
			
		||||
		$2 ~ /^FIORDCHK$/ ||
 | 
			
		||||
		$2 ~ /^SIOC/ ||
 | 
			
		||||
		$2 ~ /^TIOC/ ||
 | 
			
		||||
@@ -668,7 +654,7 @@ errors=$(
 | 
			
		||||
signals=$(
 | 
			
		||||
	echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
 | 
			
		||||
	grep -E -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
 | 
			
		||||
	grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' |
 | 
			
		||||
	sort
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@@ -678,7 +664,7 @@ echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	sort >_error.grep
 | 
			
		||||
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
 | 
			
		||||
	awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
 | 
			
		||||
	grep -E -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
 | 
			
		||||
	grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' |
 | 
			
		||||
	sort >_signal.grep
 | 
			
		||||
 | 
			
		||||
echo '// mkerrors.sh' "$@"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_aix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_aix.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -360,7 +360,7 @@ func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int,
 | 
			
		||||
	var status _C_int
 | 
			
		||||
	var r Pid_t
 | 
			
		||||
	err = ERESTART
 | 
			
		||||
	// AIX wait4 may return with ERESTART errno, while the process is still
 | 
			
		||||
	// AIX wait4 may return with ERESTART errno, while the processus is still
 | 
			
		||||
	// active.
 | 
			
		||||
	for err == ERESTART {
 | 
			
		||||
		r, err = wait4(Pid_t(pid), &status, options, rusage)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										49
									
								
								vendor/golang.org/x/sys/unix/syscall_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										49
									
								
								vendor/golang.org/x/sys/unix/syscall_darwin.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -402,18 +402,6 @@ func IoctlSetIfreqMTU(fd int, ifreq *IfreqMTU) error {
 | 
			
		||||
	return ioctlPtr(fd, SIOCSIFMTU, unsafe.Pointer(ifreq))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//sys	renamexNp(from string, to string, flag uint32) (err error)
 | 
			
		||||
 | 
			
		||||
func RenamexNp(from string, to string, flag uint32) (err error) {
 | 
			
		||||
	return renamexNp(from, to, flag)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//sys	renameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error)
 | 
			
		||||
 | 
			
		||||
func RenameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error) {
 | 
			
		||||
	return renameatxNp(fromfd, from, tofd, to, flag)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) = SYS_SYSCTL
 | 
			
		||||
 | 
			
		||||
func Uname(uname *Utsname) error {
 | 
			
		||||
@@ -566,43 +554,6 @@ func PthreadFchdir(fd int) (err error) {
 | 
			
		||||
	return pthread_fchdir_np(fd)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Connectx calls connectx(2) to initiate a connection on a socket.
 | 
			
		||||
//
 | 
			
		||||
// srcIf, srcAddr, and dstAddr are filled into a [SaEndpoints] struct and passed as the endpoints argument.
 | 
			
		||||
//
 | 
			
		||||
//   - srcIf is the optional source interface index. 0 means unspecified.
 | 
			
		||||
//   - srcAddr is the optional source address. nil means unspecified.
 | 
			
		||||
//   - dstAddr is the destination address.
 | 
			
		||||
//
 | 
			
		||||
// On success, Connectx returns the number of bytes enqueued for transmission.
 | 
			
		||||
func Connectx(fd int, srcIf uint32, srcAddr, dstAddr Sockaddr, associd SaeAssocID, flags uint32, iov []Iovec, connid *SaeConnID) (n uintptr, err error) {
 | 
			
		||||
	endpoints := SaEndpoints{
 | 
			
		||||
		Srcif: srcIf,
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if srcAddr != nil {
 | 
			
		||||
		addrp, addrlen, err := srcAddr.sockaddr()
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return 0, err
 | 
			
		||||
		}
 | 
			
		||||
		endpoints.Srcaddr = (*RawSockaddr)(addrp)
 | 
			
		||||
		endpoints.Srcaddrlen = uint32(addrlen)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if dstAddr != nil {
 | 
			
		||||
		addrp, addrlen, err := dstAddr.sockaddr()
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return 0, err
 | 
			
		||||
		}
 | 
			
		||||
		endpoints.Dstaddr = (*RawSockaddr)(addrp)
 | 
			
		||||
		endpoints.Dstaddrlen = uint32(addrlen)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	err = connectx(fd, &endpoints, associd, flags, iov, &n, connid)
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//sys	connectx(fd int, endpoints *SaEndpoints, associd SaeAssocID, flags uint32, iov []Iovec, n *uintptr, connid *SaeConnID) (err error)
 | 
			
		||||
//sys	sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error)
 | 
			
		||||
 | 
			
		||||
//sys	shmat(id int, addr uintptr, flag int) (ret uintptr, err error)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/syscall_hurd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/syscall_hurd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -11,7 +11,6 @@ package unix
 | 
			
		||||
int ioctl(int, unsigned long int, uintptr_t);
 | 
			
		||||
*/
 | 
			
		||||
import "C"
 | 
			
		||||
import "unsafe"
 | 
			
		||||
 | 
			
		||||
func ioctl(fd int, req uint, arg uintptr) (err error) {
 | 
			
		||||
	r0, er := C.ioctl(C.int(fd), C.ulong(req), C.uintptr_t(arg))
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										65
									
								
								vendor/golang.org/x/sys/unix/syscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										65
									
								
								vendor/golang.org/x/sys/unix/syscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1295,48 +1295,6 @@ func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) {
 | 
			
		||||
	return &value, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetsockoptTCPCCVegasInfo returns algorithm specific congestion control information for a socket using the "vegas"
 | 
			
		||||
// algorithm.
 | 
			
		||||
//
 | 
			
		||||
// The socket's congestion control algorighm can be retrieved via [GetsockoptString] with the [TCP_CONGESTION] option:
 | 
			
		||||
//
 | 
			
		||||
//	algo, err := unix.GetsockoptString(fd, unix.IPPROTO_TCP, unix.TCP_CONGESTION)
 | 
			
		||||
func GetsockoptTCPCCVegasInfo(fd, level, opt int) (*TCPVegasInfo, error) {
 | 
			
		||||
	var value [SizeofTCPCCInfo / 4]uint32 // ensure proper alignment
 | 
			
		||||
	vallen := _Socklen(SizeofTCPCCInfo)
 | 
			
		||||
	err := getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen)
 | 
			
		||||
	out := (*TCPVegasInfo)(unsafe.Pointer(&value[0]))
 | 
			
		||||
	return out, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetsockoptTCPCCDCTCPInfo returns algorithm specific congestion control information for a socket using the "dctp"
 | 
			
		||||
// algorithm.
 | 
			
		||||
//
 | 
			
		||||
// The socket's congestion control algorighm can be retrieved via [GetsockoptString] with the [TCP_CONGESTION] option:
 | 
			
		||||
//
 | 
			
		||||
//	algo, err := unix.GetsockoptString(fd, unix.IPPROTO_TCP, unix.TCP_CONGESTION)
 | 
			
		||||
func GetsockoptTCPCCDCTCPInfo(fd, level, opt int) (*TCPDCTCPInfo, error) {
 | 
			
		||||
	var value [SizeofTCPCCInfo / 4]uint32 // ensure proper alignment
 | 
			
		||||
	vallen := _Socklen(SizeofTCPCCInfo)
 | 
			
		||||
	err := getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen)
 | 
			
		||||
	out := (*TCPDCTCPInfo)(unsafe.Pointer(&value[0]))
 | 
			
		||||
	return out, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetsockoptTCPCCBBRInfo returns algorithm specific congestion control information for a socket using the "bbr"
 | 
			
		||||
// algorithm.
 | 
			
		||||
//
 | 
			
		||||
// The socket's congestion control algorighm can be retrieved via [GetsockoptString] with the [TCP_CONGESTION] option:
 | 
			
		||||
//
 | 
			
		||||
//	algo, err := unix.GetsockoptString(fd, unix.IPPROTO_TCP, unix.TCP_CONGESTION)
 | 
			
		||||
func GetsockoptTCPCCBBRInfo(fd, level, opt int) (*TCPBBRInfo, error) {
 | 
			
		||||
	var value [SizeofTCPCCInfo / 4]uint32 // ensure proper alignment
 | 
			
		||||
	vallen := _Socklen(SizeofTCPCCInfo)
 | 
			
		||||
	err := getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen)
 | 
			
		||||
	out := (*TCPBBRInfo)(unsafe.Pointer(&value[0]))
 | 
			
		||||
	return out, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetsockoptString returns the string value of the socket option opt for the
 | 
			
		||||
// socket associated with fd at the given socket level.
 | 
			
		||||
func GetsockoptString(fd, level, opt int) (string, error) {
 | 
			
		||||
@@ -1860,7 +1818,6 @@ func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err e
 | 
			
		||||
//sys	ClockAdjtime(clockid int32, buf *Timex) (state int, err error)
 | 
			
		||||
//sys	ClockGetres(clockid int32, res *Timespec) (err error)
 | 
			
		||||
//sys	ClockGettime(clockid int32, time *Timespec) (err error)
 | 
			
		||||
//sys	ClockSettime(clockid int32, time *Timespec) (err error)
 | 
			
		||||
//sys	ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error)
 | 
			
		||||
//sys	Close(fd int) (err error)
 | 
			
		||||
//sys	CloseRange(first uint, last uint, flags uint) (err error)
 | 
			
		||||
@@ -2002,26 +1959,7 @@ func Getpgrp() (pid int) {
 | 
			
		||||
//sysnb	Getpid() (pid int)
 | 
			
		||||
//sysnb	Getppid() (ppid int)
 | 
			
		||||
//sys	Getpriority(which int, who int) (prio int, err error)
 | 
			
		||||
 | 
			
		||||
func Getrandom(buf []byte, flags int) (n int, err error) {
 | 
			
		||||
	vdsoRet, supported := vgetrandom(buf, uint32(flags))
 | 
			
		||||
	if supported {
 | 
			
		||||
		if vdsoRet < 0 {
 | 
			
		||||
			return 0, errnoErr(syscall.Errno(-vdsoRet))
 | 
			
		||||
		}
 | 
			
		||||
		return vdsoRet, nil
 | 
			
		||||
	}
 | 
			
		||||
	var p *byte
 | 
			
		||||
	if len(buf) > 0 {
 | 
			
		||||
		p = &buf[0]
 | 
			
		||||
	}
 | 
			
		||||
	r, _, e := Syscall(SYS_GETRANDOM, uintptr(unsafe.Pointer(p)), uintptr(len(buf)), uintptr(flags))
 | 
			
		||||
	if e != 0 {
 | 
			
		||||
		return 0, errnoErr(e)
 | 
			
		||||
	}
 | 
			
		||||
	return int(r), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//sys	Getrandom(buf []byte, flags int) (n int, err error)
 | 
			
		||||
//sysnb	Getrusage(who int, rusage *Rusage) (err error)
 | 
			
		||||
//sysnb	Getsid(pid int) (sid int, err error)
 | 
			
		||||
//sysnb	Gettid() (tid int)
 | 
			
		||||
@@ -2654,4 +2592,3 @@ func SchedGetAttr(pid int, flags uint) (*SchedAttr, error) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//sys	Cachestat(fd uint, crange *CachestatRange, cstat *Cachestat_t, flags uint) (err error)
 | 
			
		||||
//sys	Mseal(b []byte, flags uint) (err error)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -182,5 +182,3 @@ func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error
 | 
			
		||||
	}
 | 
			
		||||
	return kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const SYS_FSTATAT = SYS_NEWFSTATAT
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -214,5 +214,3 @@ func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error
 | 
			
		||||
	}
 | 
			
		||||
	return kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const SYS_FSTATAT = SYS_NEWFSTATAT
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -187,5 +187,3 @@ func RISCVHWProbe(pairs []RISCVHWProbePairs, set *CPUSet, flags uint) (err error
 | 
			
		||||
	}
 | 
			
		||||
	return riscvHWProbe(pairs, setSize, set, flags)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const SYS_FSTATAT = SYS_NEWFSTATAT
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/syscall_openbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/syscall_openbsd.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -293,7 +293,6 @@ func Uname(uname *Utsname) error {
 | 
			
		||||
//sys	Mkfifoat(dirfd int, path string, mode uint32) (err error)
 | 
			
		||||
//sys	Mknod(path string, mode uint32, dev int) (err error)
 | 
			
		||||
//sys	Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
 | 
			
		||||
//sys	Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error)
 | 
			
		||||
//sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
 | 
			
		||||
//sys	Open(path string, mode int, perm uint32) (fd int, err error)
 | 
			
		||||
//sys	Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										104
									
								
								vendor/golang.org/x/sys/unix/syscall_zos_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										104
									
								
								vendor/golang.org/x/sys/unix/syscall_zos_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -768,15 +768,6 @@ func Munmap(b []byte) (err error) {
 | 
			
		||||
	return mapper.Munmap(b)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func MmapPtr(fd int, offset int64, addr unsafe.Pointer, length uintptr, prot int, flags int) (ret unsafe.Pointer, err error) {
 | 
			
		||||
	xaddr, err := mapper.mmap(uintptr(addr), length, prot, flags, fd, offset)
 | 
			
		||||
	return unsafe.Pointer(xaddr), err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func MunmapPtr(addr unsafe.Pointer, length uintptr) (err error) {
 | 
			
		||||
	return mapper.munmap(uintptr(addr), length)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
//sys   Gethostname(buf []byte) (err error) = SYS___GETHOSTNAME_A
 | 
			
		||||
//sysnb	Getgid() (gid int)
 | 
			
		||||
//sysnb	Getpid() (pid int)
 | 
			
		||||
@@ -825,10 +816,10 @@ func Lstat(path string, stat *Stat_t) (err error) {
 | 
			
		||||
// for checking symlinks begins with $VERSION/ $SYSNAME/ $SYSSYMR/ $SYSSYMA/
 | 
			
		||||
func isSpecialPath(path []byte) (v bool) {
 | 
			
		||||
	var special = [4][8]byte{
 | 
			
		||||
		{'V', 'E', 'R', 'S', 'I', 'O', 'N', '/'},
 | 
			
		||||
		{'S', 'Y', 'S', 'N', 'A', 'M', 'E', '/'},
 | 
			
		||||
		{'S', 'Y', 'S', 'S', 'Y', 'M', 'R', '/'},
 | 
			
		||||
		{'S', 'Y', 'S', 'S', 'Y', 'M', 'A', '/'}}
 | 
			
		||||
		[8]byte{'V', 'E', 'R', 'S', 'I', 'O', 'N', '/'},
 | 
			
		||||
		[8]byte{'S', 'Y', 'S', 'N', 'A', 'M', 'E', '/'},
 | 
			
		||||
		[8]byte{'S', 'Y', 'S', 'S', 'Y', 'M', 'R', '/'},
 | 
			
		||||
		[8]byte{'S', 'Y', 'S', 'S', 'Y', 'M', 'A', '/'}}
 | 
			
		||||
 | 
			
		||||
	var i, j int
 | 
			
		||||
	for i = 0; i < len(special); i++ {
 | 
			
		||||
@@ -3124,90 +3115,3 @@ func legacy_Mkfifoat(dirfd int, path string, mode uint32) (err error) {
 | 
			
		||||
//sys	Posix_openpt(oflag int) (fd int, err error) = SYS_POSIX_OPENPT
 | 
			
		||||
//sys	Grantpt(fildes int) (rc int, err error) = SYS_GRANTPT
 | 
			
		||||
//sys	Unlockpt(fildes int) (rc int, err error) = SYS_UNLOCKPT
 | 
			
		||||
 | 
			
		||||
func fcntlAsIs(fd uintptr, cmd int, arg uintptr) (val int, err error) {
 | 
			
		||||
	runtime.EnterSyscall()
 | 
			
		||||
	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_FCNTL<<4, uintptr(fd), uintptr(cmd), arg)
 | 
			
		||||
	runtime.ExitSyscall()
 | 
			
		||||
	val = int(r0)
 | 
			
		||||
	if int64(r0) == -1 {
 | 
			
		||||
		err = errnoErr2(e1, e2)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Fcntl(fd uintptr, cmd int, op interface{}) (ret int, err error) {
 | 
			
		||||
	switch op.(type) {
 | 
			
		||||
	case *Flock_t:
 | 
			
		||||
		err = FcntlFlock(fd, cmd, op.(*Flock_t))
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			ret = -1
 | 
			
		||||
		}
 | 
			
		||||
		return
 | 
			
		||||
	case int:
 | 
			
		||||
		return FcntlInt(fd, cmd, op.(int))
 | 
			
		||||
	case *F_cnvrt:
 | 
			
		||||
		return fcntlAsIs(fd, cmd, uintptr(unsafe.Pointer(op.(*F_cnvrt))))
 | 
			
		||||
	case unsafe.Pointer:
 | 
			
		||||
		return fcntlAsIs(fd, cmd, uintptr(op.(unsafe.Pointer)))
 | 
			
		||||
	default:
 | 
			
		||||
		return -1, EINVAL
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
 | 
			
		||||
	if raceenabled {
 | 
			
		||||
		raceReleaseMerge(unsafe.Pointer(&ioSync))
 | 
			
		||||
	}
 | 
			
		||||
	return sendfile(outfd, infd, offset, count)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
 | 
			
		||||
	// TODO: use LE call instead if the call is implemented
 | 
			
		||||
	originalOffset, err := Seek(infd, 0, SEEK_CUR)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return -1, err
 | 
			
		||||
	}
 | 
			
		||||
	//start reading data from in_fd
 | 
			
		||||
	if offset != nil {
 | 
			
		||||
		_, err := Seek(infd, *offset, SEEK_SET)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return -1, err
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	buf := make([]byte, count)
 | 
			
		||||
	readBuf := make([]byte, 0)
 | 
			
		||||
	var n int = 0
 | 
			
		||||
	for i := 0; i < count; i += n {
 | 
			
		||||
		n, err := Read(infd, buf)
 | 
			
		||||
		if n == 0 {
 | 
			
		||||
			if err != nil {
 | 
			
		||||
				return -1, err
 | 
			
		||||
			} else { // EOF
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		readBuf = append(readBuf, buf...)
 | 
			
		||||
		buf = buf[0:0]
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	n2, err := Write(outfd, readBuf)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return -1, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	//When sendfile() returns, this variable will be set to the
 | 
			
		||||
	// offset of the byte following the last byte that was read.
 | 
			
		||||
	if offset != nil {
 | 
			
		||||
		*offset = *offset + int64(n)
 | 
			
		||||
		// If offset is not NULL, then sendfile() does not modify the file
 | 
			
		||||
		// offset of in_fd
 | 
			
		||||
		_, err := Seek(infd, originalOffset, SEEK_SET)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return -1, err
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return n2, nil
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										13
									
								
								vendor/golang.org/x/sys/unix/vgetrandom_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								vendor/golang.org/x/sys/unix/vgetrandom_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,13 +0,0 @@
 | 
			
		||||
// Copyright 2024 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build linux && go1.24
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
import _ "unsafe"
 | 
			
		||||
 | 
			
		||||
//go:linkname vgetrandom runtime.vgetrandom
 | 
			
		||||
//go:noescape
 | 
			
		||||
func vgetrandom(p []byte, flags uint32) (ret int, supported bool)
 | 
			
		||||
							
								
								
									
										11
									
								
								vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,11 +0,0 @@
 | 
			
		||||
// Copyright 2024 The Go Authors. All rights reserved.
 | 
			
		||||
// Use of this source code is governed by a BSD-style
 | 
			
		||||
// license that can be found in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
//go:build !linux || !go1.24
 | 
			
		||||
 | 
			
		||||
package unix
 | 
			
		||||
 | 
			
		||||
func vgetrandom(p []byte, flags uint32) (ret int, supported bool) {
 | 
			
		||||
	return -1, false
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										12
									
								
								vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -237,9 +237,6 @@ const (
 | 
			
		||||
	CLOCK_UPTIME_RAW_APPROX                 = 0x9
 | 
			
		||||
	CLONE_NOFOLLOW                          = 0x1
 | 
			
		||||
	CLONE_NOOWNERCOPY                       = 0x2
 | 
			
		||||
	CONNECT_DATA_AUTHENTICATED              = 0x4
 | 
			
		||||
	CONNECT_DATA_IDEMPOTENT                 = 0x2
 | 
			
		||||
	CONNECT_RESUME_ON_READ_WRITE            = 0x1
 | 
			
		||||
	CR0                                     = 0x0
 | 
			
		||||
	CR1                                     = 0x1000
 | 
			
		||||
	CR2                                     = 0x2000
 | 
			
		||||
@@ -1172,11 +1169,6 @@ const (
 | 
			
		||||
	PT_WRITE_D                              = 0x5
 | 
			
		||||
	PT_WRITE_I                              = 0x4
 | 
			
		||||
	PT_WRITE_U                              = 0x6
 | 
			
		||||
	RENAME_EXCL                             = 0x4
 | 
			
		||||
	RENAME_NOFOLLOW_ANY                     = 0x10
 | 
			
		||||
	RENAME_RESERVED1                        = 0x8
 | 
			
		||||
	RENAME_SECLUDE                          = 0x1
 | 
			
		||||
	RENAME_SWAP                             = 0x2
 | 
			
		||||
	RLIMIT_AS                               = 0x5
 | 
			
		||||
	RLIMIT_CORE                             = 0x4
 | 
			
		||||
	RLIMIT_CPU                              = 0x0
 | 
			
		||||
@@ -1268,10 +1260,6 @@ const (
 | 
			
		||||
	RTV_SSTHRESH                            = 0x20
 | 
			
		||||
	RUSAGE_CHILDREN                         = -0x1
 | 
			
		||||
	RUSAGE_SELF                             = 0x0
 | 
			
		||||
	SAE_ASSOCID_ALL                         = 0xffffffff
 | 
			
		||||
	SAE_ASSOCID_ANY                         = 0x0
 | 
			
		||||
	SAE_CONNID_ALL                          = 0xffffffff
 | 
			
		||||
	SAE_CONNID_ANY                          = 0x0
 | 
			
		||||
	SCM_CREDS                               = 0x3
 | 
			
		||||
	SCM_RIGHTS                              = 0x1
 | 
			
		||||
	SCM_TIMESTAMP                           = 0x2
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										12
									
								
								vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -237,9 +237,6 @@ const (
 | 
			
		||||
	CLOCK_UPTIME_RAW_APPROX                 = 0x9
 | 
			
		||||
	CLONE_NOFOLLOW                          = 0x1
 | 
			
		||||
	CLONE_NOOWNERCOPY                       = 0x2
 | 
			
		||||
	CONNECT_DATA_AUTHENTICATED              = 0x4
 | 
			
		||||
	CONNECT_DATA_IDEMPOTENT                 = 0x2
 | 
			
		||||
	CONNECT_RESUME_ON_READ_WRITE            = 0x1
 | 
			
		||||
	CR0                                     = 0x0
 | 
			
		||||
	CR1                                     = 0x1000
 | 
			
		||||
	CR2                                     = 0x2000
 | 
			
		||||
@@ -1172,11 +1169,6 @@ const (
 | 
			
		||||
	PT_WRITE_D                              = 0x5
 | 
			
		||||
	PT_WRITE_I                              = 0x4
 | 
			
		||||
	PT_WRITE_U                              = 0x6
 | 
			
		||||
	RENAME_EXCL                             = 0x4
 | 
			
		||||
	RENAME_NOFOLLOW_ANY                     = 0x10
 | 
			
		||||
	RENAME_RESERVED1                        = 0x8
 | 
			
		||||
	RENAME_SECLUDE                          = 0x1
 | 
			
		||||
	RENAME_SWAP                             = 0x2
 | 
			
		||||
	RLIMIT_AS                               = 0x5
 | 
			
		||||
	RLIMIT_CORE                             = 0x4
 | 
			
		||||
	RLIMIT_CPU                              = 0x0
 | 
			
		||||
@@ -1268,10 +1260,6 @@ const (
 | 
			
		||||
	RTV_SSTHRESH                            = 0x20
 | 
			
		||||
	RUSAGE_CHILDREN                         = -0x1
 | 
			
		||||
	RUSAGE_SELF                             = 0x0
 | 
			
		||||
	SAE_ASSOCID_ALL                         = 0xffffffff
 | 
			
		||||
	SAE_ASSOCID_ANY                         = 0x0
 | 
			
		||||
	SAE_CONNID_ALL                          = 0xffffffff
 | 
			
		||||
	SAE_CONNID_ANY                          = 0x0
 | 
			
		||||
	SCM_CREDS                               = 0x3
 | 
			
		||||
	SCM_RIGHTS                              = 0x1
 | 
			
		||||
	SCM_TIMESTAMP                           = 0x2
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										82
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										82
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -321,9 +321,6 @@ const (
 | 
			
		||||
	AUDIT_INTEGRITY_STATUS                      = 0x70a
 | 
			
		||||
	AUDIT_IPC                                   = 0x517
 | 
			
		||||
	AUDIT_IPC_SET_PERM                          = 0x51f
 | 
			
		||||
	AUDIT_IPE_ACCESS                            = 0x58c
 | 
			
		||||
	AUDIT_IPE_CONFIG_CHANGE                     = 0x58d
 | 
			
		||||
	AUDIT_IPE_POLICY_LOAD                       = 0x58e
 | 
			
		||||
	AUDIT_KERNEL                                = 0x7d0
 | 
			
		||||
	AUDIT_KERNEL_OTHER                          = 0x524
 | 
			
		||||
	AUDIT_KERN_MODULE                           = 0x532
 | 
			
		||||
@@ -460,7 +457,6 @@ const (
 | 
			
		||||
	B600                                        = 0x8
 | 
			
		||||
	B75                                         = 0x2
 | 
			
		||||
	B9600                                       = 0xd
 | 
			
		||||
	BCACHEFS_SUPER_MAGIC                        = 0xca451a4e
 | 
			
		||||
	BDEVFS_MAGIC                                = 0x62646576
 | 
			
		||||
	BINDERFS_SUPER_MAGIC                        = 0x6c6f6f70
 | 
			
		||||
	BINFMTFS_MAGIC                              = 0x42494e4d
 | 
			
		||||
@@ -492,14 +488,12 @@ const (
 | 
			
		||||
	BPF_F_ID                                    = 0x20
 | 
			
		||||
	BPF_F_NETFILTER_IP_DEFRAG                   = 0x1
 | 
			
		||||
	BPF_F_QUERY_EFFECTIVE                       = 0x1
 | 
			
		||||
	BPF_F_REDIRECT_FLAGS                        = 0x19
 | 
			
		||||
	BPF_F_REPLACE                               = 0x4
 | 
			
		||||
	BPF_F_SLEEPABLE                             = 0x10
 | 
			
		||||
	BPF_F_STRICT_ALIGNMENT                      = 0x1
 | 
			
		||||
	BPF_F_TEST_REG_INVARIANTS                   = 0x80
 | 
			
		||||
	BPF_F_TEST_RND_HI32                         = 0x4
 | 
			
		||||
	BPF_F_TEST_RUN_ON_CPU                       = 0x1
 | 
			
		||||
	BPF_F_TEST_SKB_CHECKSUM_COMPLETE            = 0x4
 | 
			
		||||
	BPF_F_TEST_STATE_FREQ                       = 0x8
 | 
			
		||||
	BPF_F_TEST_XDP_LIVE_FRAMES                  = 0x2
 | 
			
		||||
	BPF_F_XDP_DEV_BOUND_ONLY                    = 0x40
 | 
			
		||||
@@ -934,7 +928,6 @@ const (
 | 
			
		||||
	EPOLL_CTL_ADD                               = 0x1
 | 
			
		||||
	EPOLL_CTL_DEL                               = 0x2
 | 
			
		||||
	EPOLL_CTL_MOD                               = 0x3
 | 
			
		||||
	EPOLL_IOC_TYPE                              = 0x8a
 | 
			
		||||
	EROFS_SUPER_MAGIC_V1                        = 0xe0f5e1e2
 | 
			
		||||
	ESP_V4_FLOW                                 = 0xa
 | 
			
		||||
	ESP_V6_FLOW                                 = 0xc
 | 
			
		||||
@@ -948,6 +941,9 @@ const (
 | 
			
		||||
	ETHTOOL_FEC_OFF                             = 0x4
 | 
			
		||||
	ETHTOOL_FEC_RS                              = 0x8
 | 
			
		||||
	ETHTOOL_FLAG_ALL                            = 0x7
 | 
			
		||||
	ETHTOOL_FLAG_COMPACT_BITSETS                = 0x1
 | 
			
		||||
	ETHTOOL_FLAG_OMIT_REPLY                     = 0x2
 | 
			
		||||
	ETHTOOL_FLAG_STATS                          = 0x4
 | 
			
		||||
	ETHTOOL_FLASHDEV                            = 0x33
 | 
			
		||||
	ETHTOOL_FLASH_MAX_FILENAME                  = 0x80
 | 
			
		||||
	ETHTOOL_FWVERS_LEN                          = 0x20
 | 
			
		||||
@@ -1170,7 +1166,6 @@ const (
 | 
			
		||||
	EXTA                                        = 0xe
 | 
			
		||||
	EXTB                                        = 0xf
 | 
			
		||||
	F2FS_SUPER_MAGIC                            = 0xf2f52010
 | 
			
		||||
	FALLOC_FL_ALLOCATE_RANGE                    = 0x0
 | 
			
		||||
	FALLOC_FL_COLLAPSE_RANGE                    = 0x8
 | 
			
		||||
	FALLOC_FL_INSERT_RANGE                      = 0x20
 | 
			
		||||
	FALLOC_FL_KEEP_SIZE                         = 0x1
 | 
			
		||||
@@ -1710,7 +1705,6 @@ const (
 | 
			
		||||
	KEXEC_ARCH_S390                             = 0x160000
 | 
			
		||||
	KEXEC_ARCH_SH                               = 0x2a0000
 | 
			
		||||
	KEXEC_ARCH_X86_64                           = 0x3e0000
 | 
			
		||||
	KEXEC_CRASH_HOTPLUG_SUPPORT                 = 0x8
 | 
			
		||||
	KEXEC_FILE_DEBUG                            = 0x8
 | 
			
		||||
	KEXEC_FILE_NO_INITRAMFS                     = 0x4
 | 
			
		||||
	KEXEC_FILE_ON_CRASH                         = 0x2
 | 
			
		||||
@@ -1786,7 +1780,6 @@ const (
 | 
			
		||||
	KEY_SPEC_USER_KEYRING                       = -0x4
 | 
			
		||||
	KEY_SPEC_USER_SESSION_KEYRING               = -0x5
 | 
			
		||||
	LANDLOCK_ACCESS_FS_EXECUTE                  = 0x1
 | 
			
		||||
	LANDLOCK_ACCESS_FS_IOCTL_DEV                = 0x8000
 | 
			
		||||
	LANDLOCK_ACCESS_FS_MAKE_BLOCK               = 0x800
 | 
			
		||||
	LANDLOCK_ACCESS_FS_MAKE_CHAR                = 0x40
 | 
			
		||||
	LANDLOCK_ACCESS_FS_MAKE_DIR                 = 0x80
 | 
			
		||||
@@ -1804,8 +1797,6 @@ const (
 | 
			
		||||
	LANDLOCK_ACCESS_NET_BIND_TCP                = 0x1
 | 
			
		||||
	LANDLOCK_ACCESS_NET_CONNECT_TCP             = 0x2
 | 
			
		||||
	LANDLOCK_CREATE_RULESET_VERSION             = 0x1
 | 
			
		||||
	LANDLOCK_SCOPE_ABSTRACT_UNIX_SOCKET         = 0x1
 | 
			
		||||
	LANDLOCK_SCOPE_SIGNAL                       = 0x2
 | 
			
		||||
	LINUX_REBOOT_CMD_CAD_OFF                    = 0x0
 | 
			
		||||
	LINUX_REBOOT_CMD_CAD_ON                     = 0x89abcdef
 | 
			
		||||
	LINUX_REBOOT_CMD_HALT                       = 0xcdef0123
 | 
			
		||||
@@ -1870,19 +1861,6 @@ const (
 | 
			
		||||
	MAP_FILE                                    = 0x0
 | 
			
		||||
	MAP_FIXED                                   = 0x10
 | 
			
		||||
	MAP_FIXED_NOREPLACE                         = 0x100000
 | 
			
		||||
	MAP_HUGE_16GB                               = 0x88000000
 | 
			
		||||
	MAP_HUGE_16KB                               = 0x38000000
 | 
			
		||||
	MAP_HUGE_16MB                               = 0x60000000
 | 
			
		||||
	MAP_HUGE_1GB                                = 0x78000000
 | 
			
		||||
	MAP_HUGE_1MB                                = 0x50000000
 | 
			
		||||
	MAP_HUGE_256MB                              = 0x70000000
 | 
			
		||||
	MAP_HUGE_2GB                                = 0x7c000000
 | 
			
		||||
	MAP_HUGE_2MB                                = 0x54000000
 | 
			
		||||
	MAP_HUGE_32MB                               = 0x64000000
 | 
			
		||||
	MAP_HUGE_512KB                              = 0x4c000000
 | 
			
		||||
	MAP_HUGE_512MB                              = 0x74000000
 | 
			
		||||
	MAP_HUGE_64KB                               = 0x40000000
 | 
			
		||||
	MAP_HUGE_8MB                                = 0x5c000000
 | 
			
		||||
	MAP_HUGE_MASK                               = 0x3f
 | 
			
		||||
	MAP_HUGE_SHIFT                              = 0x1a
 | 
			
		||||
	MAP_PRIVATE                                 = 0x2
 | 
			
		||||
@@ -1930,8 +1908,6 @@ const (
 | 
			
		||||
	MNT_EXPIRE                                  = 0x4
 | 
			
		||||
	MNT_FORCE                                   = 0x1
 | 
			
		||||
	MNT_ID_REQ_SIZE_VER0                        = 0x18
 | 
			
		||||
	MNT_ID_REQ_SIZE_VER1                        = 0x20
 | 
			
		||||
	MNT_NS_INFO_SIZE_VER0                       = 0x10
 | 
			
		||||
	MODULE_INIT_COMPRESSED_FILE                 = 0x4
 | 
			
		||||
	MODULE_INIT_IGNORE_MODVERSIONS              = 0x1
 | 
			
		||||
	MODULE_INIT_IGNORE_VERMAGIC                 = 0x2
 | 
			
		||||
@@ -2197,7 +2173,7 @@ const (
 | 
			
		||||
	NFT_REG_SIZE                                = 0x10
 | 
			
		||||
	NFT_REJECT_ICMPX_MAX                        = 0x3
 | 
			
		||||
	NFT_RT_MAX                                  = 0x4
 | 
			
		||||
	NFT_SECMARK_CTX_MAXLEN                      = 0x1000
 | 
			
		||||
	NFT_SECMARK_CTX_MAXLEN                      = 0x100
 | 
			
		||||
	NFT_SET_MAXNAMELEN                          = 0x100
 | 
			
		||||
	NFT_SOCKET_MAX                              = 0x3
 | 
			
		||||
	NFT_TABLE_F_MASK                            = 0x7
 | 
			
		||||
@@ -2366,11 +2342,9 @@ const (
 | 
			
		||||
	PERF_MEM_LVLNUM_IO                          = 0xa
 | 
			
		||||
	PERF_MEM_LVLNUM_L1                          = 0x1
 | 
			
		||||
	PERF_MEM_LVLNUM_L2                          = 0x2
 | 
			
		||||
	PERF_MEM_LVLNUM_L2_MHB                      = 0x5
 | 
			
		||||
	PERF_MEM_LVLNUM_L3                          = 0x3
 | 
			
		||||
	PERF_MEM_LVLNUM_L4                          = 0x4
 | 
			
		||||
	PERF_MEM_LVLNUM_LFB                         = 0xc
 | 
			
		||||
	PERF_MEM_LVLNUM_MSC                         = 0x6
 | 
			
		||||
	PERF_MEM_LVLNUM_NA                          = 0xf
 | 
			
		||||
	PERF_MEM_LVLNUM_PMEM                        = 0xe
 | 
			
		||||
	PERF_MEM_LVLNUM_RAM                         = 0xd
 | 
			
		||||
@@ -2443,7 +2417,6 @@ const (
 | 
			
		||||
	PRIO_PGRP                                   = 0x1
 | 
			
		||||
	PRIO_PROCESS                                = 0x0
 | 
			
		||||
	PRIO_USER                                   = 0x2
 | 
			
		||||
	PROCFS_IOCTL_MAGIC                          = 'f'
 | 
			
		||||
	PROC_SUPER_MAGIC                            = 0x9fa0
 | 
			
		||||
	PROT_EXEC                                   = 0x4
 | 
			
		||||
	PROT_GROWSDOWN                              = 0x1000000
 | 
			
		||||
@@ -2525,23 +2498,6 @@ const (
 | 
			
		||||
	PR_PAC_GET_ENABLED_KEYS                     = 0x3d
 | 
			
		||||
	PR_PAC_RESET_KEYS                           = 0x36
 | 
			
		||||
	PR_PAC_SET_ENABLED_KEYS                     = 0x3c
 | 
			
		||||
	PR_PPC_DEXCR_CTRL_CLEAR                     = 0x4
 | 
			
		||||
	PR_PPC_DEXCR_CTRL_CLEAR_ONEXEC              = 0x10
 | 
			
		||||
	PR_PPC_DEXCR_CTRL_EDITABLE                  = 0x1
 | 
			
		||||
	PR_PPC_DEXCR_CTRL_MASK                      = 0x1f
 | 
			
		||||
	PR_PPC_DEXCR_CTRL_SET                       = 0x2
 | 
			
		||||
	PR_PPC_DEXCR_CTRL_SET_ONEXEC                = 0x8
 | 
			
		||||
	PR_PPC_DEXCR_IBRTPD                         = 0x1
 | 
			
		||||
	PR_PPC_DEXCR_NPHIE                          = 0x3
 | 
			
		||||
	PR_PPC_DEXCR_SBHE                           = 0x0
 | 
			
		||||
	PR_PPC_DEXCR_SRAPD                          = 0x2
 | 
			
		||||
	PR_PPC_GET_DEXCR                            = 0x48
 | 
			
		||||
	PR_PPC_SET_DEXCR                            = 0x49
 | 
			
		||||
	PR_RISCV_CTX_SW_FENCEI_OFF                  = 0x1
 | 
			
		||||
	PR_RISCV_CTX_SW_FENCEI_ON                   = 0x0
 | 
			
		||||
	PR_RISCV_SCOPE_PER_PROCESS                  = 0x0
 | 
			
		||||
	PR_RISCV_SCOPE_PER_THREAD                   = 0x1
 | 
			
		||||
	PR_RISCV_SET_ICACHE_FLUSH_CTX               = 0x47
 | 
			
		||||
	PR_RISCV_V_GET_CONTROL                      = 0x46
 | 
			
		||||
	PR_RISCV_V_SET_CONTROL                      = 0x45
 | 
			
		||||
	PR_RISCV_V_VSTATE_CTRL_CUR_MASK             = 0x3
 | 
			
		||||
@@ -2633,28 +2589,6 @@ const (
 | 
			
		||||
	PR_UNALIGN_NOPRINT                          = 0x1
 | 
			
		||||
	PR_UNALIGN_SIGBUS                           = 0x2
 | 
			
		||||
	PSTOREFS_MAGIC                              = 0x6165676c
 | 
			
		||||
	PTP_CLK_MAGIC                               = '='
 | 
			
		||||
	PTP_ENABLE_FEATURE                          = 0x1
 | 
			
		||||
	PTP_EXTTS_EDGES                             = 0x6
 | 
			
		||||
	PTP_EXTTS_EVENT_VALID                       = 0x1
 | 
			
		||||
	PTP_EXTTS_V1_VALID_FLAGS                    = 0x7
 | 
			
		||||
	PTP_EXTTS_VALID_FLAGS                       = 0x1f
 | 
			
		||||
	PTP_EXT_OFFSET                              = 0x10
 | 
			
		||||
	PTP_FALLING_EDGE                            = 0x4
 | 
			
		||||
	PTP_MAX_SAMPLES                             = 0x19
 | 
			
		||||
	PTP_PEROUT_DUTY_CYCLE                       = 0x2
 | 
			
		||||
	PTP_PEROUT_ONE_SHOT                         = 0x1
 | 
			
		||||
	PTP_PEROUT_PHASE                            = 0x4
 | 
			
		||||
	PTP_PEROUT_V1_VALID_FLAGS                   = 0x0
 | 
			
		||||
	PTP_PEROUT_VALID_FLAGS                      = 0x7
 | 
			
		||||
	PTP_PIN_GETFUNC                             = 0xc0603d06
 | 
			
		||||
	PTP_PIN_GETFUNC2                            = 0xc0603d0f
 | 
			
		||||
	PTP_RISING_EDGE                             = 0x2
 | 
			
		||||
	PTP_STRICT_FLAGS                            = 0x8
 | 
			
		||||
	PTP_SYS_OFFSET_EXTENDED                     = 0xc4c03d09
 | 
			
		||||
	PTP_SYS_OFFSET_EXTENDED2                    = 0xc4c03d12
 | 
			
		||||
	PTP_SYS_OFFSET_PRECISE                      = 0xc0403d08
 | 
			
		||||
	PTP_SYS_OFFSET_PRECISE2                     = 0xc0403d11
 | 
			
		||||
	PTRACE_ATTACH                               = 0x10
 | 
			
		||||
	PTRACE_CONT                                 = 0x7
 | 
			
		||||
	PTRACE_DETACH                               = 0x11
 | 
			
		||||
@@ -2968,17 +2902,15 @@ const (
 | 
			
		||||
	RUSAGE_SELF                                 = 0x0
 | 
			
		||||
	RUSAGE_THREAD                               = 0x1
 | 
			
		||||
	RWF_APPEND                                  = 0x10
 | 
			
		||||
	RWF_ATOMIC                                  = 0x40
 | 
			
		||||
	RWF_DSYNC                                   = 0x2
 | 
			
		||||
	RWF_HIPRI                                   = 0x1
 | 
			
		||||
	RWF_NOAPPEND                                = 0x20
 | 
			
		||||
	RWF_NOWAIT                                  = 0x8
 | 
			
		||||
	RWF_SUPPORTED                               = 0x7f
 | 
			
		||||
	RWF_SUPPORTED                               = 0x3f
 | 
			
		||||
	RWF_SYNC                                    = 0x4
 | 
			
		||||
	RWF_WRITE_LIFE_NOT_SET                      = 0x0
 | 
			
		||||
	SCHED_BATCH                                 = 0x3
 | 
			
		||||
	SCHED_DEADLINE                              = 0x6
 | 
			
		||||
	SCHED_EXT                                   = 0x7
 | 
			
		||||
	SCHED_FIFO                                  = 0x1
 | 
			
		||||
	SCHED_FLAG_ALL                              = 0x7f
 | 
			
		||||
	SCHED_FLAG_DL_OVERRUN                       = 0x4
 | 
			
		||||
@@ -3247,7 +3179,6 @@ const (
 | 
			
		||||
	STATX_ATTR_MOUNT_ROOT                       = 0x2000
 | 
			
		||||
	STATX_ATTR_NODUMP                           = 0x40
 | 
			
		||||
	STATX_ATTR_VERITY                           = 0x100000
 | 
			
		||||
	STATX_ATTR_WRITE_ATOMIC                     = 0x400000
 | 
			
		||||
	STATX_BASIC_STATS                           = 0x7ff
 | 
			
		||||
	STATX_BLOCKS                                = 0x400
 | 
			
		||||
	STATX_BTIME                                 = 0x800
 | 
			
		||||
@@ -3261,10 +3192,8 @@ const (
 | 
			
		||||
	STATX_MTIME                                 = 0x40
 | 
			
		||||
	STATX_NLINK                                 = 0x4
 | 
			
		||||
	STATX_SIZE                                  = 0x200
 | 
			
		||||
	STATX_SUBVOL                                = 0x8000
 | 
			
		||||
	STATX_TYPE                                  = 0x1
 | 
			
		||||
	STATX_UID                                   = 0x8
 | 
			
		||||
	STATX_WRITE_ATOMIC                          = 0x10000
 | 
			
		||||
	STATX__RESERVED                             = 0x80000000
 | 
			
		||||
	SYNC_FILE_RANGE_WAIT_AFTER                  = 0x4
 | 
			
		||||
	SYNC_FILE_RANGE_WAIT_BEFORE                 = 0x1
 | 
			
		||||
@@ -3663,7 +3592,6 @@ const (
 | 
			
		||||
	XDP_UMEM_PGOFF_COMPLETION_RING              = 0x180000000
 | 
			
		||||
	XDP_UMEM_PGOFF_FILL_RING                    = 0x100000000
 | 
			
		||||
	XDP_UMEM_REG                                = 0x4
 | 
			
		||||
	XDP_UMEM_TX_METADATA_LEN                    = 0x4
 | 
			
		||||
	XDP_UMEM_TX_SW_CSUM                         = 0x2
 | 
			
		||||
	XDP_UMEM_UNALIGNED_CHUNK_FLAG               = 0x1
 | 
			
		||||
	XDP_USE_NEED_WAKEUP                         = 0x8
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x80088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x40088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -109,7 +107,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x80084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x90044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x80044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x4004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -154,14 +151,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x20
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x8008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0xb703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0xb704
 | 
			
		||||
	NS_GET_PARENT                    = 0xb702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x8004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x8004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x8004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x8004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0xb701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -238,20 +230,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x7434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x80503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x80503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x40043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x40043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x40103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x40103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x3d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x40043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x40383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x40383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x40603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x40603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x43403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x43403d0e
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GETFPXREGS                = 0x12
 | 
			
		||||
	PTRACE_GET_THREAD_AREA           = 0x19
 | 
			
		||||
@@ -298,8 +276,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x80287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x4028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -338,9 +314,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x80088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x40088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -109,7 +107,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x80084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x90044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x80044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x4004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -154,14 +151,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x8008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0xb703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0xb704
 | 
			
		||||
	NS_GET_PARENT                    = 0xb702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x8004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x8004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x8004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x8004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0xb701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -238,20 +230,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x7434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x80503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x80503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x40043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x40043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x40103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x40103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x3d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x40043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x40383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x40383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x40603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x40603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x43403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x43403d0e
 | 
			
		||||
	PTRACE_ARCH_PRCTL                = 0x1e
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GETFPXREGS                = 0x12
 | 
			
		||||
@@ -299,8 +277,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x80287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x4028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -339,9 +315,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x80088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x40088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x80084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x90044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x80044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x4004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -151,14 +148,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x20
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x8008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0xb703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0xb704
 | 
			
		||||
	NS_GET_PARENT                    = 0xb702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x8004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x8004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x8004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x8004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0xb701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -235,20 +227,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x7434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x80503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x80503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x40043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x40043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x40103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x40103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x3d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x40043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x40383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x40383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x40603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x40603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x43403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x43403d0e
 | 
			
		||||
	PTRACE_GETCRUNCHREGS             = 0x19
 | 
			
		||||
	PTRACE_GETFDPIC                  = 0x1f
 | 
			
		||||
	PTRACE_GETFDPIC_EXEC             = 0x0
 | 
			
		||||
@@ -304,8 +282,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x80287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x4028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -344,9 +320,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										28
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										28
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x80088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x40088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	ESR_MAGIC                        = 0x45535201
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
@@ -112,7 +110,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x80084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x90044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x80044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x4004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -155,14 +152,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x8008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0xb703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0xb704
 | 
			
		||||
	NS_GET_PARENT                    = 0xb702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x8004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x8004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x8004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x8004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0xb701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -206,7 +198,6 @@ const (
 | 
			
		||||
	PERF_EVENT_IOC_SET_BPF           = 0x40042408
 | 
			
		||||
	PERF_EVENT_IOC_SET_FILTER        = 0x40082406
 | 
			
		||||
	PERF_EVENT_IOC_SET_OUTPUT        = 0x2405
 | 
			
		||||
	POE_MAGIC                        = 0x504f4530
 | 
			
		||||
	PPPIOCATTACH                     = 0x4004743d
 | 
			
		||||
	PPPIOCATTCHAN                    = 0x40047438
 | 
			
		||||
	PPPIOCBRIDGECHAN                 = 0x40047435
 | 
			
		||||
@@ -242,20 +233,6 @@ const (
 | 
			
		||||
	PROT_BTI                         = 0x10
 | 
			
		||||
	PROT_MTE                         = 0x20
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x80503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x80503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x40043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x40043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x40103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x40103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x3d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x40043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x40383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x40383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x40603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x40603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x43403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x43403d0e
 | 
			
		||||
	PTRACE_PEEKMTETAGS               = 0x21
 | 
			
		||||
	PTRACE_POKEMTETAGS               = 0x22
 | 
			
		||||
	PTRACE_SYSEMU                    = 0x1f
 | 
			
		||||
@@ -296,8 +273,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x80287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x4028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -336,9 +311,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x80088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x40088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -109,7 +107,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x80084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x90044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x80044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x4004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -155,14 +152,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x8008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0xb703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0xb704
 | 
			
		||||
	NS_GET_PARENT                    = 0xb702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x8004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x8004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x8004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x8004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0xb701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -239,20 +231,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x7434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x80503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x80503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x40043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x40043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x40103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x40103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x3d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x40043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x40383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x40383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x40603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x40603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x43403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x43403d0e
 | 
			
		||||
	PTRACE_SYSEMU                    = 0x1f
 | 
			
		||||
	PTRACE_SYSEMU_SINGLESTEP         = 0x20
 | 
			
		||||
	RLIMIT_AS                        = 0x9
 | 
			
		||||
@@ -291,8 +269,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x80287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x4028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -331,9 +307,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x80
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x100
 | 
			
		||||
@@ -151,14 +148,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x20
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -235,20 +227,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x20007434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GET_THREAD_AREA           = 0x19
 | 
			
		||||
	PTRACE_GET_THREAD_AREA_3264      = 0xc4
 | 
			
		||||
@@ -297,8 +275,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -337,9 +313,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x1029
 | 
			
		||||
	SO_DONTROUTE                     = 0x10
 | 
			
		||||
	SO_ERROR                         = 0x1007
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x80
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x100
 | 
			
		||||
@@ -151,14 +148,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -235,20 +227,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x20007434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GET_THREAD_AREA           = 0x19
 | 
			
		||||
	PTRACE_GET_THREAD_AREA_3264      = 0xc4
 | 
			
		||||
@@ -297,8 +275,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -337,9 +313,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x1029
 | 
			
		||||
	SO_DONTROUTE                     = 0x10
 | 
			
		||||
	SO_ERROR                         = 0x1007
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x80
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x100
 | 
			
		||||
@@ -151,14 +148,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -235,20 +227,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x20007434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GET_THREAD_AREA           = 0x19
 | 
			
		||||
	PTRACE_GET_THREAD_AREA_3264      = 0xc4
 | 
			
		||||
@@ -297,8 +275,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -337,9 +313,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x1029
 | 
			
		||||
	SO_DONTROUTE                     = 0x10
 | 
			
		||||
	SO_ERROR                         = 0x1007
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x80
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x100
 | 
			
		||||
@@ -151,14 +148,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x20
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -235,20 +227,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x20007434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GET_THREAD_AREA           = 0x19
 | 
			
		||||
	PTRACE_GET_THREAD_AREA_3264      = 0xc4
 | 
			
		||||
@@ -297,8 +275,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -337,9 +313,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x1029
 | 
			
		||||
	SO_DONTROUTE                     = 0x10
 | 
			
		||||
	SO_ERROR                         = 0x1007
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x20
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000000
 | 
			
		||||
	FF1                              = 0x4000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x4000
 | 
			
		||||
	ICANON                           = 0x100
 | 
			
		||||
	IEXTEN                           = 0x400
 | 
			
		||||
@@ -153,14 +150,9 @@ const (
 | 
			
		||||
	NL3                              = 0x300
 | 
			
		||||
	NLDLY                            = 0x300
 | 
			
		||||
	NOFLSH                           = 0x80000000
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x4
 | 
			
		||||
	ONLCR                            = 0x2
 | 
			
		||||
@@ -238,20 +230,6 @@ const (
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PROT_SAO                         = 0x10
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETEVRREGS                = 0x14
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GETREGS64                 = 0x16
 | 
			
		||||
@@ -352,8 +330,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -392,9 +368,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x20
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000000
 | 
			
		||||
	FF1                              = 0x4000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x4000
 | 
			
		||||
	ICANON                           = 0x100
 | 
			
		||||
	IEXTEN                           = 0x400
 | 
			
		||||
@@ -153,14 +150,9 @@ const (
 | 
			
		||||
	NL3                              = 0x300
 | 
			
		||||
	NLDLY                            = 0x300
 | 
			
		||||
	NOFLSH                           = 0x80000000
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x4
 | 
			
		||||
	ONLCR                            = 0x2
 | 
			
		||||
@@ -238,20 +230,6 @@ const (
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PROT_SAO                         = 0x10
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETEVRREGS                = 0x14
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GETREGS64                 = 0x16
 | 
			
		||||
@@ -356,8 +334,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -396,9 +372,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x20
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000000
 | 
			
		||||
	FF1                              = 0x4000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x4000
 | 
			
		||||
	ICANON                           = 0x100
 | 
			
		||||
	IEXTEN                           = 0x400
 | 
			
		||||
@@ -153,14 +150,9 @@ const (
 | 
			
		||||
	NL3                              = 0x300
 | 
			
		||||
	NLDLY                            = 0x300
 | 
			
		||||
	NOFLSH                           = 0x80000000
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x4
 | 
			
		||||
	ONLCR                            = 0x2
 | 
			
		||||
@@ -238,20 +230,6 @@ const (
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PROT_SAO                         = 0x10
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETEVRREGS                = 0x14
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GETREGS64                 = 0x16
 | 
			
		||||
@@ -356,8 +334,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -396,9 +372,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x80088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x40088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x80084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x90044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x80044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x4004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -151,14 +148,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x8008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0xb703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0xb704
 | 
			
		||||
	NS_GET_PARENT                    = 0xb702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x8004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x8004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x8004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x8004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0xb701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -235,20 +227,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x7434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x80503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x80503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x40043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x40043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x40103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x40103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x3d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x40043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x40383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x40383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x40603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x40603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x43403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x43403d0e
 | 
			
		||||
	PTRACE_GETFDPIC                  = 0x21
 | 
			
		||||
	PTRACE_GETFDPIC_EXEC             = 0x0
 | 
			
		||||
	PTRACE_GETFDPIC_INTERP           = 0x1
 | 
			
		||||
@@ -288,8 +266,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x80287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x4028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -328,9 +304,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -78,8 +78,6 @@ const (
 | 
			
		||||
	ECHOPRT                          = 0x400
 | 
			
		||||
	EFD_CLOEXEC                      = 0x80000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x800
 | 
			
		||||
	EPIOCGPARAMS                     = 0x80088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x40088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x80000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -108,7 +106,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x80084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x90044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x80044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x4004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -151,14 +148,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x8008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0xb703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0xb704
 | 
			
		||||
	NS_GET_PARENT                    = 0xb702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x8004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x8004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x8004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x8004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0xb701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -235,20 +227,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x7434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x80503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x80503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x40043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x40043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x40103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x40103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x3d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x40043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x40383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x40383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x40603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x40603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x43403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x43403d0e
 | 
			
		||||
	PTRACE_DISABLE_TE                = 0x5010
 | 
			
		||||
	PTRACE_ENABLE_TE                 = 0x5009
 | 
			
		||||
	PTRACE_GET_LAST_BREAK            = 0x5006
 | 
			
		||||
@@ -360,8 +338,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x80287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x4028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x4f
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x4e
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x25
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x36
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3a
 | 
			
		||||
@@ -400,9 +376,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x35
 | 
			
		||||
	SO_COOKIE                        = 0x39
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x44
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x4f
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x50
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x4e
 | 
			
		||||
	SO_DOMAIN                        = 0x27
 | 
			
		||||
	SO_DONTROUTE                     = 0x5
 | 
			
		||||
	SO_ERROR                         = 0x4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -82,8 +82,6 @@ const (
 | 
			
		||||
	EFD_CLOEXEC                      = 0x400000
 | 
			
		||||
	EFD_NONBLOCK                     = 0x4000
 | 
			
		||||
	EMT_TAGOVF                       = 0x1
 | 
			
		||||
	EPIOCGPARAMS                     = 0x40088a02
 | 
			
		||||
	EPIOCSPARAMS                     = 0x80088a01
 | 
			
		||||
	EPOLL_CLOEXEC                    = 0x400000
 | 
			
		||||
	EXTPROC                          = 0x10000
 | 
			
		||||
	FF1                              = 0x8000
 | 
			
		||||
@@ -112,7 +110,6 @@ const (
 | 
			
		||||
	HIDIOCGRAWINFO                   = 0x40084803
 | 
			
		||||
	HIDIOCGRDESC                     = 0x50044802
 | 
			
		||||
	HIDIOCGRDESCSIZE                 = 0x40044801
 | 
			
		||||
	HIDIOCREVOKE                     = 0x8004480d
 | 
			
		||||
	HUPCL                            = 0x400
 | 
			
		||||
	ICANON                           = 0x2
 | 
			
		||||
	IEXTEN                           = 0x8000
 | 
			
		||||
@@ -156,14 +153,9 @@ const (
 | 
			
		||||
	NFDBITS                          = 0x40
 | 
			
		||||
	NLDLY                            = 0x100
 | 
			
		||||
	NOFLSH                           = 0x80
 | 
			
		||||
	NS_GET_MNTNS_ID                  = 0x4008b705
 | 
			
		||||
	NS_GET_NSTYPE                    = 0x2000b703
 | 
			
		||||
	NS_GET_OWNER_UID                 = 0x2000b704
 | 
			
		||||
	NS_GET_PARENT                    = 0x2000b702
 | 
			
		||||
	NS_GET_PID_FROM_PIDNS            = 0x4004b706
 | 
			
		||||
	NS_GET_PID_IN_PIDNS              = 0x4004b708
 | 
			
		||||
	NS_GET_TGID_FROM_PIDNS           = 0x4004b707
 | 
			
		||||
	NS_GET_TGID_IN_PIDNS             = 0x4004b709
 | 
			
		||||
	NS_GET_USERNS                    = 0x2000b701
 | 
			
		||||
	OLCUC                            = 0x2
 | 
			
		||||
	ONLCR                            = 0x4
 | 
			
		||||
@@ -240,20 +232,6 @@ const (
 | 
			
		||||
	PPPIOCUNBRIDGECHAN               = 0x20007434
 | 
			
		||||
	PPPIOCXFERUNIT                   = 0x2000744e
 | 
			
		||||
	PR_SET_PTRACER_ANY               = 0xffffffffffffffff
 | 
			
		||||
	PTP_CLOCK_GETCAPS                = 0x40503d01
 | 
			
		||||
	PTP_CLOCK_GETCAPS2               = 0x40503d0a
 | 
			
		||||
	PTP_ENABLE_PPS                   = 0x80043d04
 | 
			
		||||
	PTP_ENABLE_PPS2                  = 0x80043d0d
 | 
			
		||||
	PTP_EXTTS_REQUEST                = 0x80103d02
 | 
			
		||||
	PTP_EXTTS_REQUEST2               = 0x80103d0b
 | 
			
		||||
	PTP_MASK_CLEAR_ALL               = 0x20003d13
 | 
			
		||||
	PTP_MASK_EN_SINGLE               = 0x80043d14
 | 
			
		||||
	PTP_PEROUT_REQUEST               = 0x80383d03
 | 
			
		||||
	PTP_PEROUT_REQUEST2              = 0x80383d0c
 | 
			
		||||
	PTP_PIN_SETFUNC                  = 0x80603d07
 | 
			
		||||
	PTP_PIN_SETFUNC2                 = 0x80603d10
 | 
			
		||||
	PTP_SYS_OFFSET                   = 0x83403d05
 | 
			
		||||
	PTP_SYS_OFFSET2                  = 0x83403d0e
 | 
			
		||||
	PTRACE_GETFPAREGS                = 0x14
 | 
			
		||||
	PTRACE_GETFPREGS                 = 0xe
 | 
			
		||||
	PTRACE_GETFPREGS64               = 0x19
 | 
			
		||||
@@ -351,8 +329,6 @@ const (
 | 
			
		||||
	RTC_WIE_ON                       = 0x2000700f
 | 
			
		||||
	RTC_WKALM_RD                     = 0x40287010
 | 
			
		||||
	RTC_WKALM_SET                    = 0x8028700f
 | 
			
		||||
	SCM_DEVMEM_DMABUF                = 0x58
 | 
			
		||||
	SCM_DEVMEM_LINEAR                = 0x57
 | 
			
		||||
	SCM_TIMESTAMPING                 = 0x23
 | 
			
		||||
	SCM_TIMESTAMPING_OPT_STATS       = 0x38
 | 
			
		||||
	SCM_TIMESTAMPING_PKTINFO         = 0x3c
 | 
			
		||||
@@ -439,9 +415,6 @@ const (
 | 
			
		||||
	SO_CNX_ADVICE                    = 0x37
 | 
			
		||||
	SO_COOKIE                        = 0x3b
 | 
			
		||||
	SO_DETACH_REUSEPORT_BPF          = 0x47
 | 
			
		||||
	SO_DEVMEM_DMABUF                 = 0x58
 | 
			
		||||
	SO_DEVMEM_DONTNEED               = 0x59
 | 
			
		||||
	SO_DEVMEM_LINEAR                 = 0x57
 | 
			
		||||
	SO_DOMAIN                        = 0x1029
 | 
			
		||||
	SO_DONTROUTE                     = 0x10
 | 
			
		||||
	SO_ERROR                         = 0x1007
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -581,8 +581,6 @@ const (
 | 
			
		||||
	AT_EMPTY_PATH                   = 0x1000
 | 
			
		||||
	AT_REMOVEDIR                    = 0x200
 | 
			
		||||
	RENAME_NOREPLACE                = 1 << 0
 | 
			
		||||
	ST_RDONLY                       = 1
 | 
			
		||||
	ST_NOSUID                       = 2
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										68
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										68
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -740,54 +740,6 @@ func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) {
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func renamexNp(from string, to string, flag uint32) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(from)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(to)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_renamex_np_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flag))
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_renamex_np_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_renamex_np renamex_np "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func renameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(from)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(to)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_renameatx_np_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), uintptr(flag), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_renameatx_np_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_renameatx_np renameatx_np "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {
 | 
			
		||||
	var _p0 unsafe.Pointer
 | 
			
		||||
	if len(mib) > 0 {
 | 
			
		||||
@@ -841,26 +793,6 @@ var libc_pthread_fchdir_np_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func connectx(fd int, endpoints *SaEndpoints, associd SaeAssocID, flags uint32, iov []Iovec, n *uintptr, connid *SaeConnID) (err error) {
 | 
			
		||||
	var _p0 unsafe.Pointer
 | 
			
		||||
	if len(iov) > 0 {
 | 
			
		||||
		_p0 = unsafe.Pointer(&iov[0])
 | 
			
		||||
	} else {
 | 
			
		||||
		_p0 = unsafe.Pointer(&_zero)
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall9(libc_connectx_trampoline_addr, uintptr(fd), uintptr(unsafe.Pointer(endpoints)), uintptr(associd), uintptr(flags), uintptr(_p0), uintptr(len(iov)), uintptr(unsafe.Pointer(n)), uintptr(unsafe.Pointer(connid)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_connectx_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_connectx connectx "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_sendfile_trampoline_addr, uintptr(infd), uintptr(outfd), uintptr(offset), uintptr(unsafe.Pointer(len)), uintptr(hdtr), uintptr(flags))
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										15
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -223,16 +223,6 @@ TEXT libc_ioctl_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_ioctl_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_ioctl_trampoline_addr(SB)/8, $libc_ioctl_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_renamex_np_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_renamex_np(SB)
 | 
			
		||||
GLOBL	·libc_renamex_np_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_renamex_np_trampoline_addr(SB)/8, $libc_renamex_np_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_renameatx_np_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_renameatx_np(SB)
 | 
			
		||||
GLOBL	·libc_renameatx_np_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_renameatx_np_trampoline_addr(SB)/8, $libc_renameatx_np_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_sysctl(SB)
 | 
			
		||||
GLOBL	·libc_sysctl_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
@@ -248,11 +238,6 @@ TEXT libc_pthread_fchdir_np_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_pthread_fchdir_np_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_pthread_fchdir_np_trampoline_addr(SB)/8, $libc_pthread_fchdir_np_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_connectx_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_connectx(SB)
 | 
			
		||||
GLOBL	·libc_connectx_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_connectx_trampoline_addr(SB)/8, $libc_connectx_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_sendfile_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_sendfile(SB)
 | 
			
		||||
GLOBL	·libc_sendfile_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										68
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										68
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -740,54 +740,6 @@ func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) {
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func renamexNp(from string, to string, flag uint32) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(from)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(to)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_renamex_np_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flag))
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_renamex_np_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_renamex_np renamex_np "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func renameatxNp(fromfd int, from string, tofd int, to string, flag uint32) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(from)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(to)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_renameatx_np_trampoline_addr, uintptr(fromfd), uintptr(unsafe.Pointer(_p0)), uintptr(tofd), uintptr(unsafe.Pointer(_p1)), uintptr(flag), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_renameatx_np_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_renameatx_np renameatx_np "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error) {
 | 
			
		||||
	var _p0 unsafe.Pointer
 | 
			
		||||
	if len(mib) > 0 {
 | 
			
		||||
@@ -841,26 +793,6 @@ var libc_pthread_fchdir_np_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func connectx(fd int, endpoints *SaEndpoints, associd SaeAssocID, flags uint32, iov []Iovec, n *uintptr, connid *SaeConnID) (err error) {
 | 
			
		||||
	var _p0 unsafe.Pointer
 | 
			
		||||
	if len(iov) > 0 {
 | 
			
		||||
		_p0 = unsafe.Pointer(&iov[0])
 | 
			
		||||
	} else {
 | 
			
		||||
		_p0 = unsafe.Pointer(&_zero)
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall9(libc_connectx_trampoline_addr, uintptr(fd), uintptr(unsafe.Pointer(endpoints)), uintptr(associd), uintptr(flags), uintptr(_p0), uintptr(len(iov)), uintptr(unsafe.Pointer(n)), uintptr(unsafe.Pointer(connid)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_connectx_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_connectx connectx "/usr/lib/libSystem.B.dylib"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe.Pointer, flags int) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_sendfile_trampoline_addr, uintptr(infd), uintptr(outfd), uintptr(offset), uintptr(unsafe.Pointer(len)), uintptr(hdtr), uintptr(flags))
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										15
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -223,16 +223,6 @@ TEXT libc_ioctl_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_ioctl_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_ioctl_trampoline_addr(SB)/8, $libc_ioctl_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_renamex_np_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_renamex_np(SB)
 | 
			
		||||
GLOBL	·libc_renamex_np_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_renamex_np_trampoline_addr(SB)/8, $libc_renamex_np_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_renameatx_np_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_renameatx_np(SB)
 | 
			
		||||
GLOBL	·libc_renameatx_np_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_renameatx_np_trampoline_addr(SB)/8, $libc_renameatx_np_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_sysctl(SB)
 | 
			
		||||
GLOBL	·libc_sysctl_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
@@ -248,11 +238,6 @@ TEXT libc_pthread_fchdir_np_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_pthread_fchdir_np_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_pthread_fchdir_np_trampoline_addr(SB)/8, $libc_pthread_fchdir_np_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_connectx_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_connectx(SB)
 | 
			
		||||
GLOBL	·libc_connectx_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_connectx_trampoline_addr(SB)/8, $libc_connectx_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_sendfile_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_sendfile(SB)
 | 
			
		||||
GLOBL	·libc_sendfile_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										43
									
								
								vendor/golang.org/x/sys/unix/zsyscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										43
									
								
								vendor/golang.org/x/sys/unix/zsyscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -592,16 +592,6 @@ func ClockGettime(clockid int32, time *Timespec) (err error) {
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func ClockSettime(clockid int32, time *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := Syscall(SYS_CLOCK_SETTIME, uintptr(clockid), uintptr(unsafe.Pointer(time)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := Syscall6(SYS_CLOCK_NANOSLEEP, uintptr(clockid), uintptr(flags), uintptr(unsafe.Pointer(request)), uintptr(unsafe.Pointer(remain)), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
@@ -981,6 +971,23 @@ func Getpriority(which int, who int) (prio int, err error) {
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Getrandom(buf []byte, flags int) (n int, err error) {
 | 
			
		||||
	var _p0 unsafe.Pointer
 | 
			
		||||
	if len(buf) > 0 {
 | 
			
		||||
		_p0 = unsafe.Pointer(&buf[0])
 | 
			
		||||
	} else {
 | 
			
		||||
		_p0 = unsafe.Pointer(&_zero)
 | 
			
		||||
	}
 | 
			
		||||
	r0, _, e1 := Syscall(SYS_GETRANDOM, uintptr(_p0), uintptr(len(buf)), uintptr(flags))
 | 
			
		||||
	n = int(r0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Getrusage(who int, rusage *Rusage) (err error) {
 | 
			
		||||
	_, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
@@ -2222,19 +2229,3 @@ func Cachestat(fd uint, crange *CachestatRange, cstat *Cachestat_t, flags uint)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mseal(b []byte, flags uint) (err error) {
 | 
			
		||||
	var _p0 unsafe.Pointer
 | 
			
		||||
	if len(b) > 0 {
 | 
			
		||||
		_p0 = unsafe.Pointer(&b[0])
 | 
			
		||||
	} else {
 | 
			
		||||
		_p0 = unsafe.Pointer(&_zero)
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := Syscall(SYS_MSEAL, uintptr(_p0), uintptr(len(b)), uintptr(flags))
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1493,30 +1493,6 @@ var libc_mknodat_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(fsType)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(dir)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_mount_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_mount mount "libc.so"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -463,11 +463,6 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_mknodat_trampoline_addr(SB), RODATA, $4
 | 
			
		||||
DATA	·libc_mknodat_trampoline_addr(SB)/4, $libc_mknodat_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_mount(SB)
 | 
			
		||||
GLOBL	·libc_mount_trampoline_addr(SB), RODATA, $4
 | 
			
		||||
DATA	·libc_mount_trampoline_addr(SB)/4, $libc_mount_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_nanosleep(SB)
 | 
			
		||||
GLOBL	·libc_nanosleep_trampoline_addr(SB), RODATA, $4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1493,30 +1493,6 @@ var libc_mknodat_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(fsType)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(dir)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_mount_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_mount mount "libc.so"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -463,11 +463,6 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_mknodat_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_mount(SB)
 | 
			
		||||
GLOBL	·libc_mount_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_nanosleep(SB)
 | 
			
		||||
GLOBL	·libc_nanosleep_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1493,30 +1493,6 @@ var libc_mknodat_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(fsType)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(dir)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_mount_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_mount mount "libc.so"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -463,11 +463,6 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_mknodat_trampoline_addr(SB), RODATA, $4
 | 
			
		||||
DATA	·libc_mknodat_trampoline_addr(SB)/4, $libc_mknodat_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_mount(SB)
 | 
			
		||||
GLOBL	·libc_mount_trampoline_addr(SB), RODATA, $4
 | 
			
		||||
DATA	·libc_mount_trampoline_addr(SB)/4, $libc_mount_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_nanosleep(SB)
 | 
			
		||||
GLOBL	·libc_nanosleep_trampoline_addr(SB), RODATA, $4
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1493,30 +1493,6 @@ var libc_mknodat_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(fsType)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(dir)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_mount_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_mount mount "libc.so"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -463,11 +463,6 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_mknodat_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_mount(SB)
 | 
			
		||||
GLOBL	·libc_mount_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_nanosleep(SB)
 | 
			
		||||
GLOBL	·libc_nanosleep_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1493,30 +1493,6 @@ var libc_mknodat_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(fsType)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(dir)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_mount_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_mount mount "libc.so"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -463,11 +463,6 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_mknodat_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_mount(SB)
 | 
			
		||||
GLOBL	·libc_mount_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_nanosleep(SB)
 | 
			
		||||
GLOBL	·libc_nanosleep_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1493,30 +1493,6 @@ var libc_mknodat_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(fsType)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(dir)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_mount_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_mount mount "libc.so"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -555,12 +555,6 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_mknodat_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	CALL	libc_mount(SB)
 | 
			
		||||
	RET
 | 
			
		||||
GLOBL	·libc_mount_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	CALL	libc_nanosleep(SB)
 | 
			
		||||
	RET
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1493,30 +1493,6 @@ var libc_mknodat_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Mount(fsType string, dir string, flags int, data unsafe.Pointer) (err error) {
 | 
			
		||||
	var _p0 *byte
 | 
			
		||||
	_p0, err = BytePtrFromString(fsType)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	var _p1 *byte
 | 
			
		||||
	_p1, err = BytePtrFromString(dir)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
	_, _, e1 := syscall_syscall6(libc_mount_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(_p1)), uintptr(flags), uintptr(data), 0, 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
		err = errnoErr(e1)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var libc_mount_trampoline_addr uintptr
 | 
			
		||||
 | 
			
		||||
//go:cgo_import_dynamic libc_mount mount "libc.so"
 | 
			
		||||
 | 
			
		||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
 | 
			
		||||
 | 
			
		||||
func Nanosleep(time *Timespec, leftover *Timespec) (err error) {
 | 
			
		||||
	_, _, e1 := syscall_syscall(libc_nanosleep_trampoline_addr, uintptr(unsafe.Pointer(time)), uintptr(unsafe.Pointer(leftover)), 0)
 | 
			
		||||
	if e1 != 0 {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -463,11 +463,6 @@ TEXT libc_mknodat_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
GLOBL	·libc_mknodat_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mknodat_trampoline_addr(SB)/8, $libc_mknodat_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_mount_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_mount(SB)
 | 
			
		||||
GLOBL	·libc_mount_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
DATA	·libc_mount_trampoline_addr(SB)/8, $libc_mount_trampoline<>(SB)
 | 
			
		||||
 | 
			
		||||
TEXT libc_nanosleep_trampoline<>(SB),NOSPLIT,$0-0
 | 
			
		||||
	JMP	libc_nanosleep(SB)
 | 
			
		||||
GLOBL	·libc_nanosleep_trampoline_addr(SB), RODATA, $8
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -457,5 +457,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR            = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR            = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES             = 461
 | 
			
		||||
	SYS_MSEAL                        = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -341,7 +341,6 @@ const (
 | 
			
		||||
	SYS_STATX                   = 332
 | 
			
		||||
	SYS_IO_PGETEVENTS           = 333
 | 
			
		||||
	SYS_RSEQ                    = 334
 | 
			
		||||
	SYS_URETPROBE               = 335
 | 
			
		||||
	SYS_PIDFD_SEND_SIGNAL       = 424
 | 
			
		||||
	SYS_IO_URING_SETUP          = 425
 | 
			
		||||
	SYS_IO_URING_ENTER          = 426
 | 
			
		||||
@@ -380,5 +379,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -421,5 +421,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR            = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR            = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES             = 461
 | 
			
		||||
	SYS_MSEAL                        = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										3
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -85,7 +85,7 @@ const (
 | 
			
		||||
	SYS_SPLICE                  = 76
 | 
			
		||||
	SYS_TEE                     = 77
 | 
			
		||||
	SYS_READLINKAT              = 78
 | 
			
		||||
	SYS_NEWFSTATAT              = 79
 | 
			
		||||
	SYS_FSTATAT                 = 79
 | 
			
		||||
	SYS_FSTAT                   = 80
 | 
			
		||||
	SYS_SYNC                    = 81
 | 
			
		||||
	SYS_FSYNC                   = 82
 | 
			
		||||
@@ -324,5 +324,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										3
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -84,8 +84,6 @@ const (
 | 
			
		||||
	SYS_SPLICE                  = 76
 | 
			
		||||
	SYS_TEE                     = 77
 | 
			
		||||
	SYS_READLINKAT              = 78
 | 
			
		||||
	SYS_NEWFSTATAT              = 79
 | 
			
		||||
	SYS_FSTAT                   = 80
 | 
			
		||||
	SYS_SYNC                    = 81
 | 
			
		||||
	SYS_FSYNC                   = 82
 | 
			
		||||
	SYS_FDATASYNC               = 83
 | 
			
		||||
@@ -320,5 +318,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -441,5 +441,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR            = 4459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR            = 4460
 | 
			
		||||
	SYS_LSM_LIST_MODULES             = 4461
 | 
			
		||||
	SYS_MSEAL                        = 4462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -371,5 +371,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 5459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 5460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 5461
 | 
			
		||||
	SYS_MSEAL                   = 5462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -371,5 +371,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 5459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 5460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 5461
 | 
			
		||||
	SYS_MSEAL                   = 5462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -441,5 +441,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR            = 4459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR            = 4460
 | 
			
		||||
	SYS_LSM_LIST_MODULES             = 4461
 | 
			
		||||
	SYS_MSEAL                        = 4462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -448,5 +448,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR            = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR            = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES             = 461
 | 
			
		||||
	SYS_MSEAL                        = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -420,5 +420,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -420,5 +420,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										3
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -84,7 +84,7 @@ const (
 | 
			
		||||
	SYS_SPLICE                  = 76
 | 
			
		||||
	SYS_TEE                     = 77
 | 
			
		||||
	SYS_READLINKAT              = 78
 | 
			
		||||
	SYS_NEWFSTATAT              = 79
 | 
			
		||||
	SYS_FSTATAT                 = 79
 | 
			
		||||
	SYS_FSTAT                   = 80
 | 
			
		||||
	SYS_SYNC                    = 81
 | 
			
		||||
	SYS_FSYNC                   = 82
 | 
			
		||||
@@ -325,5 +325,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -386,5 +386,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -399,5 +399,4 @@ const (
 | 
			
		||||
	SYS_LSM_GET_SELF_ATTR       = 459
 | 
			
		||||
	SYS_LSM_SET_SELF_ATTR       = 460
 | 
			
		||||
	SYS_LSM_LIST_MODULES        = 461
 | 
			
		||||
	SYS_MSEAL                   = 462
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										73
									
								
								vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										73
									
								
								vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -306,19 +306,6 @@ type XVSockPgen struct {
 | 
			
		||||
 | 
			
		||||
type _Socklen uint32
 | 
			
		||||
 | 
			
		||||
type SaeAssocID uint32
 | 
			
		||||
 | 
			
		||||
type SaeConnID uint32
 | 
			
		||||
 | 
			
		||||
type SaEndpoints struct {
 | 
			
		||||
	Srcif      uint32
 | 
			
		||||
	Srcaddr    *RawSockaddr
 | 
			
		||||
	Srcaddrlen uint32
 | 
			
		||||
	Dstaddr    *RawSockaddr
 | 
			
		||||
	Dstaddrlen uint32
 | 
			
		||||
	_          [4]byte
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type Xucred struct {
 | 
			
		||||
	Version uint32
 | 
			
		||||
	Uid     uint32
 | 
			
		||||
@@ -462,14 +449,11 @@ type FdSet struct {
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	SizeofIfMsghdr    = 0x70
 | 
			
		||||
	SizeofIfMsghdr2   = 0xa0
 | 
			
		||||
	SizeofIfData      = 0x60
 | 
			
		||||
	SizeofIfData64    = 0x80
 | 
			
		||||
	SizeofIfaMsghdr   = 0x14
 | 
			
		||||
	SizeofIfmaMsghdr  = 0x10
 | 
			
		||||
	SizeofIfmaMsghdr2 = 0x14
 | 
			
		||||
	SizeofRtMsghdr    = 0x5c
 | 
			
		||||
	SizeofRtMsghdr2   = 0x5c
 | 
			
		||||
	SizeofRtMetrics   = 0x38
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@@ -483,20 +467,6 @@ type IfMsghdr struct {
 | 
			
		||||
	Data    IfData
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfMsghdr2 struct {
 | 
			
		||||
	Msglen     uint16
 | 
			
		||||
	Version    uint8
 | 
			
		||||
	Type       uint8
 | 
			
		||||
	Addrs      int32
 | 
			
		||||
	Flags      int32
 | 
			
		||||
	Index      uint16
 | 
			
		||||
	Snd_len    int32
 | 
			
		||||
	Snd_maxlen int32
 | 
			
		||||
	Snd_drops  int32
 | 
			
		||||
	Timer      int32
 | 
			
		||||
	Data       IfData64
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfData struct {
 | 
			
		||||
	Type       uint8
 | 
			
		||||
	Typelen    uint8
 | 
			
		||||
@@ -529,34 +499,6 @@ type IfData struct {
 | 
			
		||||
	Reserved2  uint32
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfData64 struct {
 | 
			
		||||
	Type       uint8
 | 
			
		||||
	Typelen    uint8
 | 
			
		||||
	Physical   uint8
 | 
			
		||||
	Addrlen    uint8
 | 
			
		||||
	Hdrlen     uint8
 | 
			
		||||
	Recvquota  uint8
 | 
			
		||||
	Xmitquota  uint8
 | 
			
		||||
	Unused1    uint8
 | 
			
		||||
	Mtu        uint32
 | 
			
		||||
	Metric     uint32
 | 
			
		||||
	Baudrate   uint64
 | 
			
		||||
	Ipackets   uint64
 | 
			
		||||
	Ierrors    uint64
 | 
			
		||||
	Opackets   uint64
 | 
			
		||||
	Oerrors    uint64
 | 
			
		||||
	Collisions uint64
 | 
			
		||||
	Ibytes     uint64
 | 
			
		||||
	Obytes     uint64
 | 
			
		||||
	Imcasts    uint64
 | 
			
		||||
	Omcasts    uint64
 | 
			
		||||
	Iqdrops    uint64
 | 
			
		||||
	Noproto    uint64
 | 
			
		||||
	Recvtiming uint32
 | 
			
		||||
	Xmittiming uint32
 | 
			
		||||
	Lastchange Timeval32
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfaMsghdr struct {
 | 
			
		||||
	Msglen  uint16
 | 
			
		||||
	Version uint8
 | 
			
		||||
@@ -602,21 +544,6 @@ type RtMsghdr struct {
 | 
			
		||||
	Rmx     RtMetrics
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type RtMsghdr2 struct {
 | 
			
		||||
	Msglen      uint16
 | 
			
		||||
	Version     uint8
 | 
			
		||||
	Type        uint8
 | 
			
		||||
	Index       uint16
 | 
			
		||||
	Flags       int32
 | 
			
		||||
	Addrs       int32
 | 
			
		||||
	Refcnt      int32
 | 
			
		||||
	Parentflags int32
 | 
			
		||||
	Reserved    int32
 | 
			
		||||
	Use         int32
 | 
			
		||||
	Inits       uint32
 | 
			
		||||
	Rmx         RtMetrics
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type RtMetrics struct {
 | 
			
		||||
	Locks    uint32
 | 
			
		||||
	Mtu      uint32
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										73
									
								
								vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										73
									
								
								vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -306,19 +306,6 @@ type XVSockPgen struct {
 | 
			
		||||
 | 
			
		||||
type _Socklen uint32
 | 
			
		||||
 | 
			
		||||
type SaeAssocID uint32
 | 
			
		||||
 | 
			
		||||
type SaeConnID uint32
 | 
			
		||||
 | 
			
		||||
type SaEndpoints struct {
 | 
			
		||||
	Srcif      uint32
 | 
			
		||||
	Srcaddr    *RawSockaddr
 | 
			
		||||
	Srcaddrlen uint32
 | 
			
		||||
	Dstaddr    *RawSockaddr
 | 
			
		||||
	Dstaddrlen uint32
 | 
			
		||||
	_          [4]byte
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type Xucred struct {
 | 
			
		||||
	Version uint32
 | 
			
		||||
	Uid     uint32
 | 
			
		||||
@@ -462,14 +449,11 @@ type FdSet struct {
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	SizeofIfMsghdr    = 0x70
 | 
			
		||||
	SizeofIfMsghdr2   = 0xa0
 | 
			
		||||
	SizeofIfData      = 0x60
 | 
			
		||||
	SizeofIfData64    = 0x80
 | 
			
		||||
	SizeofIfaMsghdr   = 0x14
 | 
			
		||||
	SizeofIfmaMsghdr  = 0x10
 | 
			
		||||
	SizeofIfmaMsghdr2 = 0x14
 | 
			
		||||
	SizeofRtMsghdr    = 0x5c
 | 
			
		||||
	SizeofRtMsghdr2   = 0x5c
 | 
			
		||||
	SizeofRtMetrics   = 0x38
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@@ -483,20 +467,6 @@ type IfMsghdr struct {
 | 
			
		||||
	Data    IfData
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfMsghdr2 struct {
 | 
			
		||||
	Msglen     uint16
 | 
			
		||||
	Version    uint8
 | 
			
		||||
	Type       uint8
 | 
			
		||||
	Addrs      int32
 | 
			
		||||
	Flags      int32
 | 
			
		||||
	Index      uint16
 | 
			
		||||
	Snd_len    int32
 | 
			
		||||
	Snd_maxlen int32
 | 
			
		||||
	Snd_drops  int32
 | 
			
		||||
	Timer      int32
 | 
			
		||||
	Data       IfData64
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfData struct {
 | 
			
		||||
	Type       uint8
 | 
			
		||||
	Typelen    uint8
 | 
			
		||||
@@ -529,34 +499,6 @@ type IfData struct {
 | 
			
		||||
	Reserved2  uint32
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfData64 struct {
 | 
			
		||||
	Type       uint8
 | 
			
		||||
	Typelen    uint8
 | 
			
		||||
	Physical   uint8
 | 
			
		||||
	Addrlen    uint8
 | 
			
		||||
	Hdrlen     uint8
 | 
			
		||||
	Recvquota  uint8
 | 
			
		||||
	Xmitquota  uint8
 | 
			
		||||
	Unused1    uint8
 | 
			
		||||
	Mtu        uint32
 | 
			
		||||
	Metric     uint32
 | 
			
		||||
	Baudrate   uint64
 | 
			
		||||
	Ipackets   uint64
 | 
			
		||||
	Ierrors    uint64
 | 
			
		||||
	Opackets   uint64
 | 
			
		||||
	Oerrors    uint64
 | 
			
		||||
	Collisions uint64
 | 
			
		||||
	Ibytes     uint64
 | 
			
		||||
	Obytes     uint64
 | 
			
		||||
	Imcasts    uint64
 | 
			
		||||
	Omcasts    uint64
 | 
			
		||||
	Iqdrops    uint64
 | 
			
		||||
	Noproto    uint64
 | 
			
		||||
	Recvtiming uint32
 | 
			
		||||
	Xmittiming uint32
 | 
			
		||||
	Lastchange Timeval32
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type IfaMsghdr struct {
 | 
			
		||||
	Msglen  uint16
 | 
			
		||||
	Version uint8
 | 
			
		||||
@@ -602,21 +544,6 @@ type RtMsghdr struct {
 | 
			
		||||
	Rmx     RtMetrics
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type RtMsghdr2 struct {
 | 
			
		||||
	Msglen      uint16
 | 
			
		||||
	Version     uint8
 | 
			
		||||
	Type        uint8
 | 
			
		||||
	Index       uint16
 | 
			
		||||
	Flags       int32
 | 
			
		||||
	Addrs       int32
 | 
			
		||||
	Refcnt      int32
 | 
			
		||||
	Parentflags int32
 | 
			
		||||
	Reserved    int32
 | 
			
		||||
	Use         int32
 | 
			
		||||
	Inits       uint32
 | 
			
		||||
	Rmx         RtMetrics
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type RtMetrics struct {
 | 
			
		||||
	Locks    uint32
 | 
			
		||||
	Mtu      uint32
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -625,7 +625,6 @@ const (
 | 
			
		||||
	POLLRDNORM   = 0x40
 | 
			
		||||
	POLLWRBAND   = 0x100
 | 
			
		||||
	POLLWRNORM   = 0x4
 | 
			
		||||
	POLLRDHUP    = 0x4000
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type CapRights struct {
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user