aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include
AgeCommit message (Expand)AuthorFilesLines
2022-05-31Merge tag 'riscv-for-linus-5.19-mw0' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds2-16/+9
2022-05-26Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-0/+193
2022-05-25Merge tag 'net-next-5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds5-2/+133
2022-05-25Merge tag 'kvm-riscv-5.19-1' of https://github.com/kvm-riscv/linux into HEADPaolo Bonzini1-1/+9
2022-05-24Merge tag 'objtool-core-2022-05-23' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds1-3/+3
2022-05-23Merge tag 'x86_asm_for_v5.19_rc1' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-1/+3
2022-05-23Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski1-0/+113
2022-05-23bpf: Add dynptr data slicesJoanne Koong1-0/+12
2022-05-23bpf: Add bpf_dynptr_read and bpf_dynptr_writeJoanne Koong1-0/+19
2022-05-23bpf: Dynptr support for ring buffersJoanne Koong1-0/+35
2022-05-23bpf: Add bpf_dynptr_from_mem for local dynptrsJoanne Koong1-0/+12
2022-05-23bpf: Add verifier support for dynptrsJoanne Koong1-0/+5
2022-05-23Merge tag 'nolibc.2022.05.20a' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds20-2505/+4110
2022-05-20bpf: Add bpf_skc_to_mptcp_sock_protoGeliang Tang1-0/+7
2022-05-19Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+9
2022-05-16Merge branch kvm-arm64/hcall-selection into kvmarm-master/nextMarc Zyngier1-0/+193
2022-05-16net: add IFLA_TSO_{MAX_SIZE|SEGS} attributesEric Dumazet1-0/+2
2022-05-11bpf: add bpf_map_lookup_percpu_elem for percpu mapFeng Zhou1-0/+9
2022-05-10bpf, x86: Attach a cookie to fentry/fexit/fmod_ret/lsm.Kui-Feng Lee1-0/+9
2022-05-10bpf, x86: Generate trampolines from bpf_tramp_linksKui-Feng Lee1-0/+1
2022-05-10bpf: Add source ip in "struct bpf_tunnel_key"Kaixi Fan1-0/+4
2022-05-08tools headers UAPI: Sync linux/kvm.h with the kernel sourcesArnaldo Carvalho de Melo1-1/+9
2022-05-06objtool: Fix STACK_FRAME_NON_STANDARD reloc typePeter Zijlstra1-1/+3
2022-05-03tools: Import ARM SMCCC definitionsRaghavendra Rao Ananta1-0/+193
2022-04-28net: SO_RCVMARK socket option for SO_MARK with recvmsg()Erin MacNeil1-0/+2
2022-04-28Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+7
2022-04-27Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski2-0/+14
2022-04-26syscalls: compat: Fix the missing part for __SYSCALL_COMPATGuo Ren1-2/+2
2022-04-26uapi: always define F_GETLK64/F_SETLK64/F_SETLKW64 in fcntl.hChristoph Hellwig1-2/+0
2022-04-26uapi: simplify __ARCH_FLOCK{,64}_PAD a littleChristoph Hellwig1-12/+7
2022-04-25bpf: Allow storing referenced kptr in mapKumar Kartikeya Dwivedi1-0/+12
2022-04-22tools: Add kmem_cache_alloc_lru()Matthew Wilcox (Oracle)1-1/+7
2022-04-22objtool: Add CONFIG_OBJTOOLJosh Poimboeuf1-3/+3
2022-04-20tools/nolibc/string: Implement `strdup()` and `strndup()`Ammar Faizi1-0/+32
2022-04-20tools/nolibc/string: Implement `strnlen()`Ammar Faizi1-0/+9
2022-04-20tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()`Ammar Faizi1-0/+81
2022-04-20tools/nolibc/types: Implement `offsetof()` and `container_of()` macroAmmar Faizi1-0/+11
2022-04-20tools/nolibc/sys: Implement `mmap()` and `munmap()`Ammar Faizi1-0/+62
2022-04-20tools/nolibc: i386: Implement syscall with 6 argumentsAmmar Faizi1-0/+23
2022-04-20tools/nolibc: Remove .global _start from the entry point codeAmmar Faizi6-6/+0
2022-04-20tools/nolibc: Replace `asm` with `__asm__`Ammar Faizi6-198/+198
2022-04-20tools/nolibc: x86-64: Update System V ABI document linkAmmar Faizi1-1/+1
2022-04-20tools/nolibc/stdlib: only reference the external environ when inlinedWilly Tarreau1-7/+15
2022-04-20tools/nolibc/string: do not use __builtin_strlen() at -O0Willy Tarreau1-1/+10
2022-04-20tools/nolibc: add a makefile to install headersWilly Tarreau1-0/+42
2022-04-20tools/nolibc/types: add poll() and waitpid() flag definitionsWilly Tarreau1-0/+10
2022-04-20tools/nolibc/sys: add syscall definition for getppid()Willy Tarreau1-0/+17
2022-04-20tools/nolibc/string: add strcmp() and strncmp()Willy Tarreau1-0/+23
2022-04-20tools/nolibc/stdio: add support for '%p' to vfprintf()Willy Tarreau1-11/+19
2022-04-20tools/nolibc/stdlib: add a simple getenv() implementationWilly Tarreau1-0/+23
2022-04-20tools/nolibc/stdio: make printf(%s) accept NULLWilly Tarreau1-0/+2
2022-04-20tools/nolibc/stdlib: implement abort()Willy Tarreau1-0/+8
2022-04-20tools/nolibc: also mention how to build by just setting the include pathWilly Tarreau1-10/+20
2022-04-20tools/nolibc/time: create time.h with time()Willy Tarreau2-0/+29
2022-04-20tools/nolibc/signal: move raise() to signal.hWilly Tarreau3-7/+23
2022-04-20tools/nolibc/unistd: add usleep()Willy Tarreau1-0/+8
2022-04-20tools/nolibc/unistd: extract msleep(), sleep(), tcsetpgrp() to unistd.hWilly Tarreau3-30/+47
2022-04-20tools/nolibc/errno: extract errno.h from sys.hWilly Tarreau3-16/+29
2022-04-20tools/nolibc/string: export memset() and memmove()Willy Tarreau1-2/+8
2022-04-20tools/nolibc/types: define PATH_MAX and MAXPATHLENWilly Tarreau1-0/+11
2022-04-20tools/nolibc/arch: mark the _start symbol as weakWilly Tarreau6-0/+6
2022-04-20tools/nolibc: move exported functions to their own sectionWilly Tarreau2-2/+2
2022-04-20tools/nolibc/string: add tiny versions of strncat() and strlcat()Willy Tarreau1-0/+41
2022-04-20tools/nolibc/string: add strncpy() and strlcpy()Willy Tarreau1-0/+28
2022-04-20tools/nolibc/string: slightly simplify memmove()Willy Tarreau1-6/+14
2022-04-20tools/nolibc/string: use unidirectional variants for memcpy()Willy Tarreau1-1/+23
2022-04-20tools/nolibc/sys: make getpgrp(), getpid(), gettid() not set errnoWilly Tarreau1-21/+3
2022-04-20tools/nolibc/stdlib: make raise() use the lower level syscalls onlyWilly Tarreau1-1/+1
2022-04-20tools/nolibc/stdlib: avoid a 64-bit shift in u64toh_r()Willy Tarreau1-6/+10
2022-04-20tools/nolibc/sys: make open() take a vararg on the 3rd argumentWilly Tarreau1-3/+15
2022-04-20tools/nolibc/stdio: add perror() to report the errno valueWilly Tarreau1-0/+6
2022-04-20tools/nolibc/types: define EXIT_SUCCESS and EXIT_FAILUREWilly Tarreau1-0/+3
2022-04-20tools/nolibc/stdio: add a minimal [vf]printf() implementationWilly Tarreau1-0/+128
2022-04-20tools/nolibc/stdio: add fwrite() to stdioWilly Tarreau1-7/+28
2022-04-20tools/nolibc/stdio: add stdin/stdout/stderr and fget*/fput* functionsWilly Tarreau1-6/+89
2022-04-20tools/nolibc/stdio: add a minimal set of stdio functionsWilly Tarreau2-0/+58
2022-04-20tools/nolibc/stdlib: add utoh() and u64toh()Willy Tarreau1-0/+80
2022-04-20tools/nolibc/stdlib: add i64toa() and u64toa()Willy Tarreau1-0/+72
2022-04-20tools/nolibc/stdlib: replace the ltoa() function with more efficient onesWilly Tarreau1-21/+88
2022-04-20tools/nolibc/stdlib: move ltoa() to stdlib.hWilly Tarreau2-22/+32
2022-04-20tools/nolibc/types: move makedev to types.h and make it a macroWilly Tarreau2-9/+5
2022-04-20tools/nolibc/types: make FD_SETSIZE configurableWilly Tarreau1-2/+4
2022-04-20tools/nolibc/types: move the FD_* functions to macros in types.hWilly Tarreau2-14/+30
2022-04-20tools/nolibc/ctype: add the missing is* functionsWilly Tarreau1-1/+78
2022-04-20tools/nolibc/ctype: split the is* functions to ctype.hWilly Tarreau2-6/+23
2022-04-20tools/nolibc/string: split the string functions into string.hWilly Tarreau2-95/+108
2022-04-20tools/nolibc/stdlib: extract the stdlib-specific functions to their own fileWilly Tarreau2-66/+86
2022-04-20tools/nolibc/sys: split the syscall definitions into their own fileWilly Tarreau2-962/+1192
2022-04-20tools/nolibc/arch: split arch-specific code into individual filesWilly Tarreau8-1186/+1266
2022-04-20tools/nolibc/types: split syscall-specific definitions into their own filesWilly Tarreau2-108/+135
2022-04-20tools/nolibc/std: move the standard type definitions to std.hWilly Tarreau2-37/+54
2022-04-15Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPaolo Abeni1-0/+7
2022-04-11tools/nolibc: guard the main file against multiple inclusionWilly Tarreau1-0/+4
2022-04-11tools/nolibc: use pselect6 on RISCVWilly Tarreau1-0/+3
2022-04-10libbpf: Add ARC support to bpf_tracing.hVladimir Isaev1-0/+2
2022-04-09tools include UAPI: Sync linux/vhost.h with the kernel sourcesArnaldo Carvalho de Melo1-0/+7
2022-04-08Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski1-2/+2
2022-04-03bpf: Correct the comment for BTF kind bitfieldHaiyue Wang1-2/+2
2022-04-01tools headers UAPI: Sync drm/i915_drm.h with the kernel sourcesArnaldo Carvalho de Melo1-5/+40
2022-04-01tools headers UAPI: Sync linux/kvm.h with the kernel sourcesArnaldo Carvalho de Melo1-2/+9
2022-04-01tools headers UAPI: Sync asm-generic/mman-common.h with the kernelArnaldo Carvalho de Melo1-0/+2
2022-03-28bpf: Sync comments for bpf_get_stackGeliang Tang1-4/+4
2022-03-27Merge tag 'perf-tools-for-v5.18-2022-03-26' of git://git.kernel.org/pub/scm/l...Linus Torvalds2-4/+2
2022-03-27Merge tag 'memblock-v5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds10-0/+156
2022-03-27Merge tag 'x86_core_for_5.18_rc1' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-0/+32
2022-03-24Merge branch 'akpm' (patches from Andrew)Linus Torvalds1-3/+2
2022-03-24Merge tag 'net-next-5.18' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds2-5/+151
2022-03-24Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-0/+4
2022-03-23linux/types.h: remove unnecessary __bitwise__Bjorn Helgaas1-3/+2
2022-03-23Merge tag 'asm-generic-5.18' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-2/+0
2022-03-22Merge tag 'perf-core-2022-03-21' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-0/+2
2022-03-17bpf: Add cookie support to programs attached with kprobe multi linkJiri Olsa1-0/+1
2022-03-17bpf: Add multi kprobe linkJiri Olsa1-0/+13
2022-03-15x86,objtool: Move the ASM_REACHABLE annotation to objtool.hPeter Zijlstra1-0/+16
2022-03-15x86/ibt: Add ANNOTATE_NOENDBRPeter Zijlstra1-0/+16
2022-03-14Merge remote-tracking branch 'torvalds/master' into perf/coreArnaldo Carvalho de Melo1-0/+1
2022-03-12tools compiler.h: Remove duplicate #ifndef noinline blockRasmus Villemoes1-4/+0
2022-03-10bpf-lsm: Introduce new helper bpf_ima_file_hash()Roberto Sassu1-0/+11
2022-03-10bpf: Fix comment for helper bpf_current_task_under_cgroup()Hengqi Chen1-2/+2
2022-03-10bpf: Remove BPF_SKB_DELIVERY_TIME_NONE and rename s/delivery_time_/tstamp_/Martin KaFai Lau1-19/+21
2022-03-09bpf: Add "live packet" mode for XDP in BPF_PROG_RUNToke Høiland-Jørgensen1-0/+3
2022-03-07nds32: Remove the architectureAlan Kao1-2/+0
2022-03-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-0/+1
2022-03-03bpf: Add __sk_buff->delivery_time_type and bpf_skb_set_skb_delivery_time()Martin KaFai Lau1-1/+40
2022-03-01perf: Add irq and exception return branch typesAnshuman Khandual1-0/+2
2022-02-25KVM: x86: Provide per VM capability for disabling PMU virtualizationDavid Dunn1-0/+4
2022-02-24Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-0/+1
2022-02-22KVM: PPC: reserve capability 210 for KVM_CAP_PPC_AIL_MODE_3Nicholas Piggin1-0/+1
2022-02-21bonding: add new option ns_ip6_targetHangbin Liu1-0/+1
2022-02-20memblock tests: Add skeleton of the memblock simulatorKarolina Drobnik1-0/+10
2022-02-20tools/include: Add debugfs.h stubKarolina Drobnik1-0/+5
2022-02-20tools/include: Add pfn.h stubKarolina Drobnik1-0/+10
2022-02-20tools/include: Add io.h stubKarolina Drobnik1-0/+5
2022-02-20tools/include: Add cache.h stubKarolina Drobnik1-0/+10
2022-02-20tools/include: Add mm.h fileKarolina Drobnik1-0/+42
2022-02-20tools/include: Update atomic definitionsKarolina Drobnik2-0/+6
2022-02-20tools/include: Add _RET_IP_ and math definitions to kernel.hKarolina Drobnik1-0/+6
2022-02-20tools/include: Add phys_addr_t to types.hKarolina Drobnik1-0/+6
2022-02-20tools: Move gfp.h and slab.h from radix-tree to libKarolina Drobnik2-0/+56
2022-02-17Merge remote-tracking branch 'torvalds/master' into perf/coreArnaldo Carvalho de Melo1-0/+2
2022-02-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-0/+2
2022-02-16tools headers UAPI: Sync linux/perf_event.h with the kernel sourcesArnaldo Carvalho de Melo1-0/+2
2022-02-15perf cs-etm: Update deduction of TRCCONFIGR register for branch broadcastJames Clark1-0/+2
2022-02-10Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski4-8/+18
2022-02-09Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski1-2/+15
2022-02-09selftests/bpf: Cover 4-byte load from remote_port in bpf_sk_lookupJakub Sitnicki1-1/+2
2022-02-06tools include UAPI: Sync sound/asound.h copy with the kernel sourcesArnaldo Carvalho de Melo1-1/+3
2022-02-06tools headers UAPI: Sync linux/kvm.h with the kernel sourcesArnaldo Carvalho de Melo1-3/+3
2022-02-06Merge remote-tracking branch 'torvalds/master' into perf/urgentArnaldo Carvalho de Melo1-229/+0
2022-02-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2-229/+1
2022-02-03Merge tag 'net-5.17-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/net...Linus Torvalds1-229/+0
2022-02-03Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfJakub Kicinski1-229/+0
2022-02-01tools headers UAPI: Sync linux/prctl.h with the kernel sourcesArnaldo Carvalho de Melo1-0/+3
2022-02-01tools headers UAPI: Sync linux/perf_event.h with the kernel sourcesArnaldo Carvalho de Melo1-3/+3
2022-02-01tools include UAPI: Sync sound/asound.h copy with the kernel sourcesArnaldo Carvalho de Melo1-1/+6
2022-01-31selftests/bpf: Extend verifier and bpf_sock tests for dst_port loadsJakub Sitnicki1-1/+2
2022-01-28Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-0/+1
2022-01-28selftests: kvm: check dynamic bits against KVM_X86_XCOMP_GUEST_SUPPPaolo Bonzini1-0/+1
2022-01-27Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski5-14/+99
2022-01-25tools headers UAPI: remove stale lirc.hSean Young1-229/+0
2022-01-24bpf: Add bpf_copy_from_user_task() helperKenny Yu1-0/+11
2022-01-24Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski1-0/+63
2022-01-23Merge tag 'perf-tools-for-v5.17-2022-01-22' of git://git.kernel.org/pub/scm/l...Linus Torvalds1-1/+4
2022-01-23Merge tag 'bitmap-5.17-rc1' of git://github.com/norov/linuxLinus Torvalds3-10/+79
2022-01-22Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-3/+16
2022-01-21net: xdp: introduce bpf_xdp_pointer utility routineLorenzo Bianconi1-0/+18
2022-01-21bpf: introduce bpf_xdp_get_buff_len helperLorenzo Bianconi1-0/+7
2022-01-21bpf: introduce BPF_F_XDP_HAS_FRAGS flag in prog_flags loading the ebpf programLorenzo Bianconi1-0/+5
2022-01-20tools headers UAPI: Sync files changed by new set_mempolicy_home_node syscallArnaldo Carvalho de Melo1-1/+4
2022-01-20Merge branch 'akpm' (patches from Andrew)Linus Torvalds1-4/+1
2022-01-20hash.h: remove unused define directiveIsabella Basso1-4/+1
2022-01-19bpf: Add cgroup helpers bpf_{get,set}_retval to get/set syscall return valueYiFei Zhu1-0/+18
2022-01-19kvm: selftests: sync uapi/linux/kvm.h with Linux headerPaolo Bonzini1-3/+16
2022-01-19uapi/bpf: Add missing description and returns for helper documentationUsama Arif1-0/+15
2022-01-19Merge branch 'kvm-pi-raw-spinlock' into HEADPaolo Bonzini7-176/+0
2022-01-18Merge tag 'perf-tools-for-v5.17-2022-01-16' of git://git.kernel.org/pub/scm/l...Linus Torvalds2-1/+22
2022-01-16Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-0/+3
2022-01-15tools: sync tools/bitmap with mother linuxYury Norov3-10/+79
2022-01-14kvm: selftests: Add support for KVM_CAP_XSAVE2Wei Wang1-0/+3
2022-01-13tools headers UAPI: Update tools's copy of drm.h headerArnaldo Carvalho de Melo1-0/+18
2022-01-13Merge remote-tracking branch 'torvalds/master' into perf/coreArnaldo Carvalho de Melo5-29/+229
2022-01-11Merge tag 'rcu.2022.01.09a' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-26/+60
2022-01-10Merge tag '5.17-net-next' of git://git.kernel.org/pub/scm/linux/kernel/git/ne...Linus Torvalds3-3/+167
2022-01-10Merge tag 'linux-kselftest-next-5.17-rc1' of git://git.kernel.org/pub/scm/lin...Linus Torvalds1-0/+2
2022-01-06gro: add ability to control gro max packet sizeCoco Li1-0/+1
2021-12-22tools headers UAPI: Add new macros for mem_hops field to perf_event.hKajol Jain1-1/+4
2021-12-13bpf: Add get_func_[arg|ret|arg_cnt] helpersJiri Olsa1-0/+28
2021-12-11bpf: Add bpf_strncmp helperHou Tao1-0/+11
2021-12-10tools: fix ARRAY_SIZE defines in tools and selftests hdrsShuah Khan1-0/+2
2021-12-10Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski1-2/+103
2021-12-09Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski7-176/+0
2021-12-09tools/lib/lockdep: drop leftover liblockdep headersSasha Levin7-176/+0
2021-12-02Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski2-21/+26
2021-12-02bpf: Pass a set of bpf_core_relo-s to prog_load command.Alexei Starovoitov1-1/+58
2021-12-02bpf: Define enum bpf_core_relo_kind as uapi.Alexei Starovoitov1-0/+19
2021-11-30tools/nolibc: Implement gettid()Mark Brown1-0/+18
2021-11-30tools/nolibc: x86-64: Use `mov $60,%eax` instead of `mov $60,%rax`Ammar Faizi1-1/+1
2021-11-30tools/nolibc: x86: Remove `r8`, `r9` and `r10` from the clobber listAmmar Faizi1-14/+19
2021-11-30tools/nolibc: fix incorrect truncation of exit codeWilly Tarreau1-8/+5
2021-11-30tools/nolibc: i386: fix initial stack alignmentWilly Tarreau1-1/+9