mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-01 00:23:56 +08:00 
			
		
		
		
	vendor: update buildkit to v0.17.0-rc2
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
		
							
								
								
									
										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 idential in all architecture-specific files. | ||||
| 1. Construct the set of common code that is identical in all architecture-specific files. | ||||
| 2. Write this common code to the merged file. | ||||
| 3. Remove the common code from all architecture-specific files. | ||||
|  | ||||
|   | ||||
							
								
								
									
										4
									
								
								vendor/golang.org/x/sys/unix/mkerrors.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/golang.org/x/sys/unix/mkerrors.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -656,7 +656,7 @@ errors=$( | ||||
| signals=$( | ||||
| 	echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags | | ||||
| 	awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' | | ||||
| 	grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | ||||
| 	grep -E -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' | | ||||
| 	sort | ||||
| ) | ||||
|  | ||||
| @@ -666,7 +666,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 -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | ||||
| 	grep -E -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 processus is still | ||||
| 	// AIX wait4 may return with ERESTART errno, while the process is still | ||||
| 	// active. | ||||
| 	for err == ERESTART { | ||||
| 		r, err = wait4(Pid_t(pid), &status, options, rusage) | ||||
|   | ||||
							
								
								
									
										63
									
								
								vendor/golang.org/x/sys/unix/syscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										63
									
								
								vendor/golang.org/x/sys/unix/syscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1295,6 +1295,48 @@ 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) { | ||||
| @@ -1959,7 +2001,26 @@ func Getpgrp() (pid int) { | ||||
| //sysnb	Getpid() (pid int) | ||||
| //sysnb	Getppid() (ppid int) | ||||
| //sys	Getpriority(which int, who int) (prio int, err error) | ||||
| //sys	Getrandom(buf []byte, flags int) (n 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 | ||||
| } | ||||
|  | ||||
| //sysnb	Getrusage(who int, rusage *Rusage) (err error) | ||||
| //sysnb	Getsid(pid int) (sid int, err error) | ||||
| //sysnb	Gettid() (tid int) | ||||
|   | ||||
							
								
								
									
										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,3 +182,5 @@ 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,3 +214,5 @@ 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,3 +187,5 @@ func RISCVHWProbe(pairs []RISCVHWProbePairs, set *CPUSet, flags uint) (err error | ||||
| 	} | ||||
| 	return riscvHWProbe(pairs, setSize, set, flags) | ||||
| } | ||||
|  | ||||
| const SYS_FSTATAT = SYS_NEWFSTATAT | ||||
|   | ||||
							
								
								
									
										13
									
								
								vendor/golang.org/x/sys/unix/vgetrandom_linux.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								vendor/golang.org/x/sys/unix/vgetrandom_linux.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| // 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
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| // 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 | ||||
| } | ||||
							
								
								
									
										13
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -495,6 +495,7 @@ const ( | ||||
| 	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 | ||||
| @@ -1922,6 +1923,7 @@ const ( | ||||
| 	MNT_EXPIRE                                  = 0x4 | ||||
| 	MNT_FORCE                                   = 0x1 | ||||
| 	MNT_ID_REQ_SIZE_VER0                        = 0x18 | ||||
| 	MNT_ID_REQ_SIZE_VER1                        = 0x20 | ||||
| 	MODULE_INIT_COMPRESSED_FILE                 = 0x4 | ||||
| 	MODULE_INIT_IGNORE_MODVERSIONS              = 0x1 | ||||
| 	MODULE_INIT_IGNORE_VERMAGIC                 = 0x2 | ||||
| @@ -2187,7 +2189,7 @@ const ( | ||||
| 	NFT_REG_SIZE                                = 0x10 | ||||
| 	NFT_REJECT_ICMPX_MAX                        = 0x3 | ||||
| 	NFT_RT_MAX                                  = 0x4 | ||||
| 	NFT_SECMARK_CTX_MAXLEN                      = 0x100 | ||||
| 	NFT_SECMARK_CTX_MAXLEN                      = 0x1000 | ||||
| 	NFT_SET_MAXNAMELEN                          = 0x100 | ||||
| 	NFT_SOCKET_MAX                              = 0x3 | ||||
| 	NFT_TABLE_F_MASK                            = 0x7 | ||||
| @@ -2356,9 +2358,11 @@ 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 | ||||
| @@ -2431,6 +2435,7 @@ const ( | ||||
| 	PRIO_PGRP                                   = 0x1 | ||||
| 	PRIO_PROCESS                                = 0x0 | ||||
| 	PRIO_USER                                   = 0x2 | ||||
| 	PROCFS_IOCTL_MAGIC                          = 'f' | ||||
| 	PROC_SUPER_MAGIC                            = 0x9fa0 | ||||
| 	PROT_EXEC                                   = 0x4 | ||||
| 	PROT_GROWSDOWN                              = 0x1000000 | ||||
| @@ -2933,11 +2938,12 @@ 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                               = 0x3f | ||||
| 	RWF_SUPPORTED                               = 0x7f | ||||
| 	RWF_SYNC                                    = 0x4 | ||||
| 	RWF_WRITE_LIFE_NOT_SET                      = 0x0 | ||||
| 	SCHED_BATCH                                 = 0x3 | ||||
| @@ -3210,6 +3216,7 @@ 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 | ||||
| @@ -3226,6 +3233,7 @@ const ( | ||||
| 	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 | ||||
| @@ -3624,6 +3632,7 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_386.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -153,9 +153,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -153,9 +153,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -150,9 +150,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -154,9 +154,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -154,9 +154,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -150,9 +150,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -150,9 +150,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -150,9 +150,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -150,9 +150,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -152,9 +152,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -152,9 +152,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -152,9 +152,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -150,9 +150,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -150,9 +150,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -155,9 +155,14 @@ 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 | ||||
|   | ||||
							
								
								
									
										17
									
								
								vendor/golang.org/x/sys/unix/zsyscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										17
									
								
								vendor/golang.org/x/sys/unix/zsyscall_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -971,23 +971,6 @@ 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 { | ||||
|   | ||||
							
								
								
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -341,6 +341,7 @@ 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 | ||||
|   | ||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								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_FSTATAT                 = 79 | ||||
| 	SYS_NEWFSTATAT              = 79 | ||||
| 	SYS_FSTAT                   = 80 | ||||
| 	SYS_SYNC                    = 81 | ||||
| 	SYS_FSYNC                   = 82 | ||||
|   | ||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -84,6 +84,8 @@ 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 | ||||
|   | ||||
							
								
								
									
										2
									
								
								vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								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_FSTATAT                 = 79 | ||||
| 	SYS_NEWFSTATAT              = 79 | ||||
| 	SYS_FSTAT                   = 80 | ||||
| 	SYS_SYNC                    = 81 | ||||
| 	SYS_FSYNC                   = 82 | ||||
|   | ||||
							
								
								
									
										88
									
								
								vendor/golang.org/x/sys/unix/ztypes_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										88
									
								
								vendor/golang.org/x/sys/unix/ztypes_linux.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -87,31 +87,35 @@ type StatxTimestamp struct { | ||||
| } | ||||
|  | ||||
| type Statx_t struct { | ||||
| 	Mask             uint32 | ||||
| 	Blksize          uint32 | ||||
| 	Attributes       uint64 | ||||
| 	Nlink            uint32 | ||||
| 	Uid              uint32 | ||||
| 	Gid              uint32 | ||||
| 	Mode             uint16 | ||||
| 	_                [1]uint16 | ||||
| 	Ino              uint64 | ||||
| 	Size             uint64 | ||||
| 	Blocks           uint64 | ||||
| 	Attributes_mask  uint64 | ||||
| 	Atime            StatxTimestamp | ||||
| 	Btime            StatxTimestamp | ||||
| 	Ctime            StatxTimestamp | ||||
| 	Mtime            StatxTimestamp | ||||
| 	Rdev_major       uint32 | ||||
| 	Rdev_minor       uint32 | ||||
| 	Dev_major        uint32 | ||||
| 	Dev_minor        uint32 | ||||
| 	Mnt_id           uint64 | ||||
| 	Dio_mem_align    uint32 | ||||
| 	Dio_offset_align uint32 | ||||
| 	Subvol           uint64 | ||||
| 	_                [11]uint64 | ||||
| 	Mask                      uint32 | ||||
| 	Blksize                   uint32 | ||||
| 	Attributes                uint64 | ||||
| 	Nlink                     uint32 | ||||
| 	Uid                       uint32 | ||||
| 	Gid                       uint32 | ||||
| 	Mode                      uint16 | ||||
| 	_                         [1]uint16 | ||||
| 	Ino                       uint64 | ||||
| 	Size                      uint64 | ||||
| 	Blocks                    uint64 | ||||
| 	Attributes_mask           uint64 | ||||
| 	Atime                     StatxTimestamp | ||||
| 	Btime                     StatxTimestamp | ||||
| 	Ctime                     StatxTimestamp | ||||
| 	Mtime                     StatxTimestamp | ||||
| 	Rdev_major                uint32 | ||||
| 	Rdev_minor                uint32 | ||||
| 	Dev_major                 uint32 | ||||
| 	Dev_minor                 uint32 | ||||
| 	Mnt_id                    uint64 | ||||
| 	Dio_mem_align             uint32 | ||||
| 	Dio_offset_align          uint32 | ||||
| 	Subvol                    uint64 | ||||
| 	Atomic_write_unit_min     uint32 | ||||
| 	Atomic_write_unit_max     uint32 | ||||
| 	Atomic_write_segments_max uint32 | ||||
| 	_                         [1]uint32 | ||||
| 	_                         [9]uint64 | ||||
| } | ||||
|  | ||||
| type Fsid struct { | ||||
| @@ -516,6 +520,29 @@ type TCPInfo struct { | ||||
| 	Total_rto_time       uint32 | ||||
| } | ||||
|  | ||||
| type TCPVegasInfo struct { | ||||
| 	Enabled uint32 | ||||
| 	Rttcnt  uint32 | ||||
| 	Rtt     uint32 | ||||
| 	Minrtt  uint32 | ||||
| } | ||||
|  | ||||
| type TCPDCTCPInfo struct { | ||||
| 	Enabled  uint16 | ||||
| 	Ce_state uint16 | ||||
| 	Alpha    uint32 | ||||
| 	Ab_ecn   uint32 | ||||
| 	Ab_tot   uint32 | ||||
| } | ||||
|  | ||||
| type TCPBBRInfo struct { | ||||
| 	Bw_lo       uint32 | ||||
| 	Bw_hi       uint32 | ||||
| 	Min_rtt     uint32 | ||||
| 	Pacing_gain uint32 | ||||
| 	Cwnd_gain   uint32 | ||||
| } | ||||
|  | ||||
| type CanFilter struct { | ||||
| 	Id   uint32 | ||||
| 	Mask uint32 | ||||
| @@ -557,6 +584,7 @@ const ( | ||||
| 	SizeofICMPv6Filter      = 0x20 | ||||
| 	SizeofUcred             = 0xc | ||||
| 	SizeofTCPInfo           = 0xf8 | ||||
| 	SizeofTCPCCInfo         = 0x14 | ||||
| 	SizeofCanFilter         = 0x8 | ||||
| 	SizeofTCPRepairOpt      = 0x8 | ||||
| ) | ||||
| @@ -3766,7 +3794,7 @@ const ( | ||||
| 	ETHTOOL_MSG_PSE_GET                       = 0x24 | ||||
| 	ETHTOOL_MSG_PSE_SET                       = 0x25 | ||||
| 	ETHTOOL_MSG_RSS_GET                       = 0x26 | ||||
| 	ETHTOOL_MSG_USER_MAX                      = 0x2b | ||||
| 	ETHTOOL_MSG_USER_MAX                      = 0x2c | ||||
| 	ETHTOOL_MSG_KERNEL_NONE                   = 0x0 | ||||
| 	ETHTOOL_MSG_STRSET_GET_REPLY              = 0x1 | ||||
| 	ETHTOOL_MSG_LINKINFO_GET_REPLY            = 0x2 | ||||
| @@ -3806,7 +3834,7 @@ const ( | ||||
| 	ETHTOOL_MSG_MODULE_NTF                    = 0x24 | ||||
| 	ETHTOOL_MSG_PSE_GET_REPLY                 = 0x25 | ||||
| 	ETHTOOL_MSG_RSS_GET_REPLY                 = 0x26 | ||||
| 	ETHTOOL_MSG_KERNEL_MAX                    = 0x2b | ||||
| 	ETHTOOL_MSG_KERNEL_MAX                    = 0x2c | ||||
| 	ETHTOOL_FLAG_COMPACT_BITSETS              = 0x1 | ||||
| 	ETHTOOL_FLAG_OMIT_REPLY                   = 0x2 | ||||
| 	ETHTOOL_FLAG_STATS                        = 0x4 | ||||
| @@ -3951,7 +3979,7 @@ const ( | ||||
| 	ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL   = 0x17 | ||||
| 	ETHTOOL_A_COALESCE_USE_CQE_MODE_TX        = 0x18 | ||||
| 	ETHTOOL_A_COALESCE_USE_CQE_MODE_RX        = 0x19 | ||||
| 	ETHTOOL_A_COALESCE_MAX                    = 0x1c | ||||
| 	ETHTOOL_A_COALESCE_MAX                    = 0x1e | ||||
| 	ETHTOOL_A_PAUSE_UNSPEC                    = 0x0 | ||||
| 	ETHTOOL_A_PAUSE_HEADER                    = 0x1 | ||||
| 	ETHTOOL_A_PAUSE_AUTONEG                   = 0x2 | ||||
| @@ -4609,7 +4637,7 @@ const ( | ||||
| 	NL80211_ATTR_MAC_HINT                                   = 0xc8 | ||||
| 	NL80211_ATTR_MAC_MASK                                   = 0xd7 | ||||
| 	NL80211_ATTR_MAX_AP_ASSOC_STA                           = 0xca | ||||
| 	NL80211_ATTR_MAX                                        = 0x14a | ||||
| 	NL80211_ATTR_MAX                                        = 0x14c | ||||
| 	NL80211_ATTR_MAX_CRIT_PROT_DURATION                     = 0xb4 | ||||
| 	NL80211_ATTR_MAX_CSA_COUNTERS                           = 0xce | ||||
| 	NL80211_ATTR_MAX_MATCH_SETS                             = 0x85 | ||||
| @@ -5213,7 +5241,7 @@ const ( | ||||
| 	NL80211_FREQUENCY_ATTR_GO_CONCURRENT                    = 0xf | ||||
| 	NL80211_FREQUENCY_ATTR_INDOOR_ONLY                      = 0xe | ||||
| 	NL80211_FREQUENCY_ATTR_IR_CONCURRENT                    = 0xf | ||||
| 	NL80211_FREQUENCY_ATTR_MAX                              = 0x20 | ||||
| 	NL80211_FREQUENCY_ATTR_MAX                              = 0x21 | ||||
| 	NL80211_FREQUENCY_ATTR_MAX_TX_POWER                     = 0x6 | ||||
| 	NL80211_FREQUENCY_ATTR_NO_10MHZ                         = 0x11 | ||||
| 	NL80211_FREQUENCY_ATTR_NO_160MHZ                        = 0xc | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tonis Tiigi
					Tonis Tiigi