summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2022-04-27net: dsa: mt753x: fix pcs conversion regressionRussell King (Oracle)1-9/+9
2022-04-27net: generalize skb freeing deferral to per-cpu listsEric Dumazet11-46/+90
2022-04-27Merge tag 'pinctrl-v5.18-2' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds10-69/+128
2022-04-27Merge branch 'Teach libbpf to "fix up" BPF verifier log'Alexei Starovoitov11-97/+464
2022-04-27selftests/bpf: Add libbpf's log fixup logic selftestsAndrii Nakryiko3-0/+163
2022-04-27libbpf: Fix up verifier log for unguarded failed CO-RE relosAndrii Nakryiko3-4/+154
2022-04-27libbpf: Simplify bpf_core_parse_spec() signatureAndrii Nakryiko1-19/+15
2022-04-27libbpf: Refactor CO-RE relo human description formatting routineAndrii Nakryiko1-26/+38
2022-04-27libbpf: Record subprog-resolved CO-RE relocations unconditionallyAndrii Nakryiko1-15/+12
2022-04-27selftests/bpf: Add CO-RE relos and SEC("?...") to linked_funcs selftestsAndrii Nakryiko3-2/+18
2022-04-27libbpf: Avoid joining .BTF.ext data with BPF programs by section nameAndrii Nakryiko3-29/+65
2022-04-27libbpf: Fix logic for finding matching program for CO-RE relocationAndrii Nakryiko1-2/+3
2022-04-27libbpf: Drop unhelpful "program too large" guessAndrii Nakryiko1-4/+0
2022-04-27libbpf: Fix anonymous type check in CO-RE logicAndrii Nakryiko1-1/+1
2022-04-26bpf: Compute map_btf_id during build timeMenglong Dong19-129/+62
2022-04-26Merge tag 'for-5.18/fbdev-2' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds29-45/+60
2022-04-26Merge tag 'gfs2-v5.18-rc4-fix' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-1/+1
2022-04-26Bluetooth: hci_sync: Cleanup hci_conn if it cannot be abortedLuiz Augusto von Dentz4-19/+39
2022-04-26Merge tag 'for-5.18-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds9-29/+76
2022-04-26Bluetooth: hci_event: Fix creating hci_conn object on error statusLuiz Augusto von Dentz1-0/+12
2022-04-26Bluetooth: hci_event: Fix checking for invalid handle on error statusLuiz Augusto von Dentz2-29/+37
2022-04-26ice: fix use-after-free when deinitializing mailbox snapshotJacob Keller1-1/+1
2022-04-26ice: wait 5 s for EMP reset after firmware flashPetr Oros1-0/+3
2022-04-26ice: Protect vf_state check by cfg_lock in ice_vc_process_vf_msg()Ivan Vecera1-7/+5
2022-04-26ice: Fix incorrect locking in ice_vc_process_vf_msg()Ivan Vecera1-14/+7
2022-04-26xsk: Fix possible crash when multiple sockets are createdMaciej Fijalkowski3-4/+26
2022-04-26kprobes: Fix KRETPROBES when CONFIG_KRETPROBE_ON_RETHOOK is setAdam Zabrocki1-1/+1
2022-04-26gfs2: Don't re-check for write past EOF unnecessarilyAndreas Gruenbacher1-1/+1
2022-04-26virtio_net: fix wrong buf address calculation when using xdpNikolay Aleksandrov1-1/+19
2022-04-26net: dsa: mv88e6xxx: Fix port_hidden_wait to account for port_base_addrNathan Rossi1-2/+3
2022-04-26net: phy: marvell10g: fix return value on errorBaruch Siach1-1/+1
2022-04-26net: usb: qmi_wwan: add support for Sierra Wireless EM7590Ethan Yang1-0/+1
2022-04-26net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSOHangbin Liu1-5/+13
2022-04-26net: bcmgenet: hide status block before TX timestampingJonathan Lemon1-0/+7
2022-04-26net: dsa: ksz: added the generic port_stp_state_set functionArun Ramadoss6-73/+49
2022-04-26net: phy: LAN937x: add interrupt support for link detectionArun Ramadoss1-0/+2
2022-04-26mctp: defer the kfree of object mdev->addrsLin Ma1-1/+1
2022-04-26cpufreq: qcom-cpufreq-hw: Clear dcvs interruptsVladimir Zapolskiy1-0/+8
2022-04-26Merge branch 'Introduce typed pointer support in BPF maps'Alexei Starovoitov23-162/+2035
2022-04-26selftests/bpf: Add test for strict BTF type checkKumar Kartikeya Dwivedi2-1/+41
2022-04-26selftests/bpf: Add verifier tests for kptrKumar Kartikeya Dwivedi3-7/+562
2022-04-26selftests/bpf: Add C tests for kptrKumar Kartikeya Dwivedi2-0/+227
2022-04-26libbpf: Add kptr type tag macros to bpf_helpers.hKumar Kartikeya Dwivedi1-0/+7
2022-04-26bpf: Make BTF type match stricter for release argumentsKumar Kartikeya Dwivedi3-8/+27
2022-04-26bpf: Teach verifier about kptr_get kfunc helpersKumar Kartikeya Dwivedi2-5/+55
2022-04-26bpf: Wire up freeing of referenced kptrKumar Kartikeya Dwivedi6-25/+210
2022-04-26bpf: Populate pairs of btf_id and destructor kfunc in btfKumar Kartikeya Dwivedi2-0/+125
2022-04-26bpf: Adapt copy_map_value for multiple offset caseKumar Kartikeya Dwivedi2-27/+117
2022-04-26bpf: Prevent escaping of kptr loaded from mapsKumar Kartikeya Dwivedi2-8/+37
2022-04-26bpf: Allow storing referenced kptr in mapKumar Kartikeya Dwivedi6-13/+151