DAGVIZ examples¶

Simple DAG¶

This example is taken from D3-DAG's example section. We start by importing DAGVIZ and constructing the DAG object. The DAG object is a simple wrapper around networkx's DiGraph.

In [1]:
import dagviz
import networkx as nx
from IPython.display import SVG
In [2]:
g = nx.DiGraph()

Next we start adding nodes and edges.

In [3]:
for i in range(21):
    g.add_node(f"n{i}")
In [4]:
g.add_edge("n1", "n14")
g.add_edge("n8", "n14")
g.add_edge("n8", "n0")
g.add_edge("n0", "n16")
g.add_edge("n16", "n10")
g.add_edge("n21", "n10")
g.add_edge("n21", "n12")
g.add_edge("n21", "n7")
g.add_edge("n12", "n4")
g.add_edge("n12", "n13")
g.add_edge("n4", "n9")
g.add_edge("n4", "n13")
g.add_edge("n13", "n20")
g.add_edge("n9", "n18")
g.add_edge("n9", "n6")
g.add_edge("n18", "n5")
g.add_edge("n15", "n6")
g.add_edge("n19", "n17")
g.add_edge("n17", "n6")
g.add_edge("n17", "n7")
g.add_edge("n2", "n11")
g.add_edge("n11", "n3")
g.add_edge("n3", "n7")

Rendering the graph is as simple as you would expect it to be in Jupyter.

In [5]:
dagviz.Metro(g)
Out[5]:
n1n2n8n15n19n21n11n14n0n17n12n3n16n4n7n10n9n13n18n6n20n5

Linux kernel commit history¶

Let's try something a bit more challenging: the last thousand commits of the Linux kernel git repository (dated June 20th, 2021). I generated a git log for the linux kernel using

git log --oneline --parents > linux-git-log.txt

This gives a long list of lines like:

cba5e97280f5 9df7f15ee922 a7b359fc6a37 Merge tag 'sched_urgent_for_v5.13_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Where the first token is this commit hash, the subsequent hashes are parents, and the text is the summary.

The script below parses this log and turns it into a networkx graph:

In [6]:
H = nx.DiGraph()
hashlen = None
with open("../linux-git-log.txt", "rt") as fs:
    for i, l in enumerate(fs):
        if i==1000:
            break
        tokens = l.rstrip().split(" ")
        if hashlen is None:
            hashlen = len(tokens[0])
        commits = []
        for j, t in enumerate(tokens):
            if len(t)!=hashlen:
                break;
            try:
                commits.append(int(t,16))
            except ValueError:
                break
        H.add_node(commits[0], label=" ".join(tokens[j:]))
        for p in commits[1:]:
            H.add_edge(commits[0], p)
        

Again, rendering the graph is simple:

In [7]:
dagviz.Metro(H)
Out[7]:
Merge tag 'sched_urgent_for_v5.13_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipMerge tag 'irq_urgent_for_v5.13_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipsched/fair: Correctly insert cfs_rq's to list on unthrottleMerge tag 'x86_urgent_for_v5.13_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipMerge tag 'irqchip-fixes-5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgentMerge tag 'powerpc-5.13-6' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linuxx86/mm: Avoid truncating memblocks for SGX memoryirqchip/gic-v3: Workaround inconsistent PMR setting on NMI entryMerge tag 'perf-tools-fixes-for-v5.13-2021-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linuxpowerpc/perf: Fix crash in perf_instruction_pointer() when ppmu is not setx86/sgx: Add missing xa_destroy() when virtual EPC is destroyedMerge tag 'riscv-for-linus-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linuxtools headers UAPI: Sync linux/in.h copy with the kernel sourcespowerpc: Fix initrd corruption with relative jump labelsx86/fpu: Reset state for all signal restore failuresMerge tag 's390-5.13-4' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linuxriscv: dts: fu740: fix cache-controller interruptstools headers UAPI: Sync asm-generic/unistd.h with the kernel originalpowerpc/signal64: Copy siginfo before changing regs->nipx86/pkru: Write hardware init value to PKRU when xstate is inits390/ap: Fix hanging ioctl caused by wrong msg counterriscv: Ensure BPF_JIT_REGION_START aligned with PMD sizeperf beauty: Update copy of linux/socket.h with the kernel sourcespowerpc/mem: Add back missing header to fix 'no previous prototype' errorx86/process: Check PF_KTHREAD and not current->mm for kernel threadss390/mcck: fix invalid KVM guest condition checkriscv: kasan: Fix MODULES_VADDR evaluation due to local variables' nameperf test: Fix non-bash issue with stat bpf countersx86/fpu: Invalidate FPU state after a failed XRSTOR from a user buffers390/mcck: fix calculation of SIE critical section sizeriscv: sifive: fix Kconfig errata warningperf machine: Fix refcount usage when processing PERF_RECORD_KSYMBOLx86/fpu: Prevent state corruption in __fpu__restore_sig()riscv32: Use medany C model for modulesperf metricgroup: Return error code from metricgroup__add_metric_sys_event_iter()x86/ioremap: Map EFI-reserved memory as encrypted for SEVperf metricgroup: Fix find_evsel_group() event selectorMerge tag 'net-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netMerge tag 'for-5.13-rc6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linuxnet: ethernet: fix potential use-after-free in ec_bhf_removeMerge tag 'pci-v5.13-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pcibtrfs: zoned: fix negative space_info->bytes_readonlyMerge tag 'mac80211-for-net-2021-06-18' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211afs: Re-enable freezing once a page fault is interruptedPCI: aardvark: Fix kernel panic during PIO transferselftests/net: Add icmp.sh for testing ICMP dummy address responsesmac80211: handle various extensible elements correctlyMerge tag 'arc-5.13-rc7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arcPCI: Add AMD RS690 quirk to enable 64-bit DMAicmp: don't send out ICMP messages with a source address of 0.0.0.0mac80211: reset profile_periodicity/ema_apMerge tag 'trace-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-traceARC: fix CONFIG_HARDENED_USERCOPYPCI: Add ACS quirk for Broadcom BCM57414 NICnet: ll_temac: Avoid ndo_start_xmit returning NETDEV_TX_BUSYcfg80211: avoid double free of PMSR requestMerge tag 'printk-for-5.13-fixup' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linuxtracing: Do no increment trace_clock_global() by oneARCv2: save ABI registers across signal handlingPCI: Mark AMD Navi14 GPU ATS as brokennet: ll_temac: Fix TX BD buffer overwritecfg80211: make certificate generation more robustMerge tag 'pm-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pmprintk: Move EXPORT_SYMBOL() closer to vprintk definitiontracing: Do not stop recording comms if the trace file is being readPCI: Work around Huawei Intelligent NIC VF FLR erratumnet: ll_temac: Add memory-barriers for TX BD accessmac80211: minstrel_ht: fix sample time checkMerge tag 'usb-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbRevert "cpufreq: CPPC: Add support for frequency invariance"139900115637713tracing: Do not stop recording cmdlines when tracing is offPCI: Mark some NVIDIA GPUs to avoid bus resetnet: ll_temac: Make sure to free skb when it is completely usedMerge tag 'drm-fixes-2021-06-18' of git://anongit.freedesktop.org/drm/drmusb: core: hub: Disable autosuspend for Cypress CY7C65632recordmcount: Correct st_shndx handlingPCI: Mark TI C667X to avoid bus resetMAINTAINERS: add Guvenc as SMC maintainerMerge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmMerge tag 'amd-drm-fixes-5.13-2021-06-16' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixesMerge tag 'usb-v5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-linusPCI: tegra194: Fix MCFG quirk build regressionsMerge branch 'bnxt_en-fixes'Merge tag 'fixes_for_v5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fsKVM: selftests: Fix kvm_check_cap() assertiondrm/amdgpu/gfx10: enlarge CP_MEC_DOORBELL_RANGE_UPPER to cover full doorbell.usb: dwc3: core: fix kernel panic when do rebootusb: chipidea: imx: Fix Battery Charger 1.2 CDP detectionPCI: of: Clear 64-bit flag for non-prefetchable memory below 4GBbnxt_en: Call bnxt_ethtool_free() in bnxt_init_one() error pathMerge branch 'akpm' (patches from Andrew)quota: finish disable quotactl_path syscallKVM: x86/mmu: Calculate and check "full" mmu_role for nested MMUdrm/amdgpu/gfx9: fix the doorbell missing when in CGPG issue.bnxt_en: Fix TQM fastpath ring backing store computationMerge tag 'dmaengine-fix-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaenginemm/sparse: fix check_usemap_section_nr warningsfanotify: fix copy_event_to_user() fid error clean upKVM: X86: Fix x86_emulator slab cache leakbnxt_en: Rediscover PHY capabilities after firmware resetMerge tag 'clang-features-v5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxdmaengine: mediatek: use GFP_NOWAIT instead of GFP_ATOMIC in prep_dmamm: thp: replace DEBUG_VM BUG with VM_WARN when unmap fails for splitKVM: SVM: Call SEV Guest Decommission if ASID binding failscxgb4: fix wrong shift.Makefile: lto: Pass -warn-stack-size only on LLD < 13.0.0dmaengine: mediatek: do not issue a new desc if one is still currentmm/thp: unmap_mapping_page() to fix THP truncate_cleanup_page()KVM: x86: Immediately reset the MMU context when the SMM flag is clearednet: qed: Fix memcpy() overflow of qed_dcbx_params()dmaengine: mediatek: free the proper desc in desc_free handlermm/thp: fix page_address_in_vma() on file THP tailsKVM: x86: Fix fall-through warnings for Clangnet: cdc_eem: fix tx fixup skb leakdmaengine: ipu: fix doc warning in ipu_irq.cmm/thp: fix vma_address() if virtual address below file offsetKVM: SVM: fix doc warningsMerge tag 'mlx5-fixes-2021-06-16' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linuxdmaengine: rcar-dmac: Fix PM reference leak in rcar_dmac_probe()mm/thp: try_to_unmap() use TTU_SYNC for safe splittingKVM: selftests: Fix compiling errors when initializing the static structurenet: hamradio: fix memory leak in mkiss_closenet/mlx5: Reset mkey index on creationdmaengine: idxd: Fix missing error code in idxd_cdev_open()mm/thp: make is_huge_zero_pmd() safe and quickerkvm: LAPIC: Restore guard to prevent illegal APIC register accessbe2net: Fix an error handling path in 'be_probe()'net/mlx5e: Don't create devices during unload flowdmaengine: stedma40: add missing iounmap() on error in d40_probe()mm/thp: fix __split_huge_pmd_locked() on shmem migration entrynet/mlx5: DR, Fix STEv1 incorrect L3 decapsulation paddingdmaengine: SF_PDMA depends on HAS_IOMEMmm, thp: use head page in __migration_entry_wait()net/mlx5: SF_DEV, remove SF device on invalid statedmaengine: QCOM_HIDMA_MGMT depends on HAS_IOMEMmm/slub.c: include swab.hnet/mlx5: E-Switch, Allow setting GUID for host PF vportdmaengine: ALTERA_MSGDMA depends on HAS_IOMEMcrash_core, vmcoreinfo: append 'SECTION_SIZE_BITS' to vmcoreinfonet/mlx5: E-Switch, Read PF mac addressdmaengine: idxd: Add missing cleanup for early error out in probe callmm/memory-failure: make sure wait for page writeback in memory_failurenet/mlx5: Check that driver was probed prior attaching the devicedmaengine: xilinx: dpdma: Limit descriptor IDs to 16 bitsmm/hugetlb: expand restore_reserve_on_error functionalitynet/mlx5: Fix error path for set HCA defaultsdmaengine: xilinx: dpdma: Add missing dependencies to Kconfigmm/slub: actually fix freelist pointer vs redzoningr8169: Avoid memcpy() over-reading of ETH_SS_STATSdmaengine: stm32-mdma: fix PM reference leak in stm32_mdma_alloc_chan_resourc()mm/slub: fix redzoning for small allocationssh_eth: Avoid memcpy() over-reading of ETH_SS_STATSdmaengine: zynqmp_dma: Fix PM reference leak in zynqmp_dma_alloc_chan_resourc()mm/slub: clarify verification reportingr8152: Avoid memcpy() over-reading of ETH_SS_STATS91872141418449mm/swap: fix pte_same_as_swp() not removing uffd-wp bit when compareselftests: net: use bash to run udpgro_fwd test casemm,hwpoison: fix race with hugetlb page allocationnet/af_unix: fix a data-race in unix_dgram_sendmsg / unix_release_sockproc: only require mm_struct for writingselftests: net: veth: make test compatible with dashafs: Fix an IS_ERR() vs NULL checkMerge branch 'net-packet-data-races'Linux 5.13-rc6net/packet: annotate accesses to po->ifindexMerge tag 'perf-tools-fixes-for-v5.13-2021-06-13' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linuxnet/packet: annotate accesses to po->bindMerge tag 'nfs-for-5.13-3' of git://git.linux-nfs.org/projects/trondmy/linux-nfstools headers cpufeatures: Sync with the kernel sourcesMerge tag 'linux-can-fixes-for-5.13-20210616' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-canMerge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiNFSv4: Fix second deadlock in nfs4_evict_inode()perf session: Correct buffer copying when peeking eventsnet: ipv4: fix memory leak in ip_mc_add1_srccan: mcba_usb: fix memory leak in mcba_usbMerge tag 'riscv-for-linus-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linuxscsi: core: Only put parent device if host state differs from SHOST_CREATEDNFSv4: Fix deadlock between nfs4_evict_inode() and nfs4_opendata_get_inode()Merge branch 'fec-ptp-fixes'can: bcm: fix infoleak in struct bcm_msg_headmm: relocate 'write_protect_seq' in struct mm_structriscv: Fix BUILTIN_DTB for sifive and microchip socscsi: core: Put .shost_dev in failure path if host state changes to RUNNINGNFS: FMODE_READ and friends are C macros, not enum typesnet: fec_ptp: fix issue caused by refactor the fec_devtypecan: bcm/raw/isotp: use per module netdevice notifierMerge tag 'usb-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbriscv: alternative: fix typo in macro namescsi: core: Fix failure handling of scsi_add_host_with_dma()NFS: Fix a potential NULL dereference in nfs_get_client()net: fec_ptp: add clock rate zero checkcan: j1939: fix Use-after-Free, hold skb ref while in useMerge tag 'tty-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/ttyMerge tag 'usb-serial-5.13-rc6' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linusriscv: code patching only works on !XIP_KERNELscsi: core: Fix error handling of scsi_host_alloc()NFS: Fix use-after-free in nfs4_init_client()net: usb: fix possible use-after-free in smsc75xx_bindMerge tag 'staging-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/stagingserial: 8250_exar: Avoid NULL pointer dereference at ->exit()Revert "usb: gadget: fsl: Re-enable driver for ARM SoCs"USB: serial: cp210x: fix CP2102N-A01 modem controlriscv: xip: support runtime trap patchingNFS: Ensure the NFS_CAP_SECURITY_LABEL capability is set when appropriatenet: stmmac: disable clocks in stmmac_remove_config_dt()Merge tag 'driver-core-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-corestaging: ralink-gdma: Remove incorrect author informationusb: typec: mux: Fix copy-paste mistake in typec_mux_matchUSB: serial: cp210x: fix alternate function for CP2102N QFN20NFSv4: nfs4_proc_set_acl needs to restore NFS_CAP_UIDGID_NOMAP on error.Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfMerge tag 'char-misc-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-miscdebugfs: Fix debugfs_read_file_str()staging: rtl8723bs: Fix uninitialized variablesusb: typec: ucsi: Clear PPM capability data in ucsi_init() error pathlantiq: net: fix duplicated skb in rx descriptor ringbpf, selftests: Adjust few selftest outcomes wrt unreachable codeMerge tag 'pinctrl-v5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrlmisc: rtsx: separate aspm mode into MODE_REG and MODE_CFGusb: gadget: fsl: Re-enable driver for ARM SoCsqmi_wwan: Do not call netif_rx from rx_fixupbpf: Fix leakage under speculation on mispredicted branchesMerge tag 'block-5.13-2021-06-12' of git://git.kernel.dk/linux-blockpinctrl: qcom: Make it possible to select SC8180x TLMMbus: mhi: pci-generic: Fix hibernationusb: typec: wcove: Use LE to CPU conversion when accessing msg->headernet: cdc_ncm: switch to eth%d interface namingbpf: Do not mark insn as seen under speculative path verificationMerge tag 'io_uring-5.13-2021-06-12' of git://git.kernel.dk/linux-blockMerge branch 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-5.13pinctrl: ralink: rt2880: avoid to error in calls is pin is already enabledbus: mhi: pci_generic: Fix possible use-after-free in mhi_pci_remove()usb: misc: brcmstb-usb-pinmap: check return value after calling platform_get_resource()net: inline function get_net_ns_by_fd if NET_NS is disabledbpf: Inherit expanded/patched seen count from old aux dataMerge tag 'sched-urgent-2021-06-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipio_uring: add feature flag for rsrc tagsblock: loop: fix deadlock between open and removeasync_xor: check src_offs is not NULL before updating itpinctrl: qcom: Fix duplication in gpio_groupsbus: mhi: pci_generic: T99W175: update channel name from AT to DUNusb: dwc3: ep0: fix NULL pointer exceptionptp: improve max_adj check against unreasonable valueslibbpf: Fixes incorrect rx_ring_setup_doneMerge tag 'perf-urgent-2021-06-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipsched/fair: Fix util_est UTIL_AVG_UNCHANGED handlingio_uring: change registration/upd/rsrc tagging ABIbcache: avoid oversized read request in cache missing code path56321060094837Merge tag 'phy-fixes-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy into char-misc-linususb: gadget: eem: fix wrong eem header operationnet: mhi_net: Update the transmit handler prototypeMerge tag 'objtool-urgent-2021-06-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipx86/nmi_watchdog: Fix old-style NMI watchdog regression on old Intel CPUssched/pelt: Ensure that *_sum is always synced with *_avgbcache: remove bcache device self-defined readaheadphy: Sparx5 Eth SerDes: check return value after calling platform_get_resource()usb: typec: intel_pmc_mux: Put ACPI device using acpi_dev_put()Merge tag 'for-net-2021-06-14' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth Luiz Augusto von Dentz says:Merge tag 'trace-v5.13-rc5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-traceobjtool: Only rewrite unconditional retpoline thunk callsirq_work: Make irq_work_queue() NMI-safe againtick/nohz: Only check for RCU deferred wakeup on user/guest entry when neededphy: ralink: phy-mt7621-pci: drop 'of_match_ptr' to fix -Wunused-const-variableusb: typec: intel_pmc_mux: Add missed error check for devm_ioremap_resource()Bluetooth: SMP: Fix crash when receiving new connection when debug is enabledMerge tag 'clang-features-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxtracing: Correct the length check which causes memory corruptionobjtool: Fix .symtab_shndx handling for elf_create_undef_symbol()perf/x86/intel/uncore: Fix M2M event umask for Ice Lake serversched/fair: Make sure to update tg contrib for blocked loadphy: ti: Fix an error code in wiz_probe()usb: typec: intel_pmc_mux: Put fwnode in error case during ->probe()net: qrtr: fix OOB Read in qrtr_endpoint_postMerge tag 'gpio-fixes-for-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linuxx86, lto: Pass -stack-alignment only on LLD < 13.0.0ftrace: Do not blindly read the ip address in ftrace_bug()perf/x86/intel/uncore: Fix a kernel WARNING triggered by maxcpus=1sched/fair: Keep load_avg and load_sum syncedphy: phy-mtk-tphy: Fix some resource leaks in mtk_phy_init()usb: typec: tcpm: Do not finish VDM AMS for retrying Responsesipv4: Fix device used for dst_alloc with local routesMerge tag 'drm-fixes-2021-06-11' of git://anongit.freedesktop.org/drm/drmgpio: wcd934x: Fix shift-out-of-bounds errortools/bootconfig: Fix a build error accroding to undefined fallthroughperf: Fix data race between pin_count increment/decrementphy: cadence: Sierra: Fix error return code in cdns_sierra_phy_probe()usb: fix various gadget panics on 10gbps cablingnet: caif: fix memory leak in ldisc_openMerge tag 'devicetree-fixes-for-5.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linuxMerge tag 'amd-drm-fixes-5.13-2021-06-09' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes208626008387786tools/bootconfig: Fix error return code in apply_xbc()136544653562058usb: fix various gadgets null ptr deref on 10gbps cabling.cxgb4: fix wrong ethtool n-tuple rule lookupMerge tag 'acpi-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pmmedia: dt-bindings: media: renesas,drif: Fix fck definitionMerge tag 'drm-misc-fixes-2021-06-10' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixesradeon: use memcpy_to/fromio for UVD fw uploadusb: pci-quirks: disable D3cold on xhci suspend for s2idle on AMD Renoirnetxen_nic: Fix an error handling path in 'netxen_nic_probe()'Merge tag 'sound-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/soundMerge branch 'acpi-bus'212712841358742Merge tag 'drm-msm-fixes-2021-06-10' of https://gitlab.freedesktop.org/drm/msm into drm-fixesdrm: Lock pointer access in drm_master_release()drm/amd/pm: Fix fall-through warning for Clangusb: f_ncm: only first packet of aggregate needs to start timerqlcnic: Fix an error handling path in 'qlcnic_probe()'Merge tag 'hwmon-for-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-stagingALSA: seq: Fix race of snd_seq_timer_open()Revert "ACPI: sleep: Put the FACS table after using it"ACPI: Pass the same capabilities to the _OSC regardless of the query flagdrm/msm/dsi: Stash away calculated vco frequency on recalcdrm/mcde: Fix off by 10^3 in calculationdrm/amdgpu: Fix incorrect register offsets for Sienna CichlidUSB: f_ncm: ncm_bitrate (speed) is unsignedethtool: strset: fix message length calculationMerge tag 'mmc-v5.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmchwmon: (tps23861) correct shunt LSB valuesMerge tag 'asoc-fix-v5.13-rc4' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusdrm/msm/a6xx: avoid shadow NULL reference in failure pathdrm: Fix use-after-free read in drm_getunique()drm/amdgpu: Use drm_dbg_kms for reporting failure to get a GEM FBMAINTAINERS: usb: add entry for isp1760net: qualcomm: rmnet: don't over-count statisticscoredump: Limit what can interrupt coredumpsmmc: renesas_sdhi: Fix HS400 on R-Car M3-W+hwmon: (tps23861) set current shunt valueALSA: hda/realtek: fix mute/micmute LEDs for HP ZBook Power G8ASoC: qcom: lpass-cpu: Fix pop noise during audio capture begindrm/msm/a6xx: fix incorrectly set uavflagprd_inv field for A650drm/vc4: fix vc4_atomic_commit_tail() logicdrm/amdgpu: switch kzalloc to kvzalloc in amdgpu_bo_createMerge tag 'usb-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-linussch_cake: revise docs for RFC 8622 LE PHB supportMerge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroupmmc: renesas_sdhi: abort tuning when timeout detectedhwmon: (tps23861) define regmap max registerALSA: hda/realtek: headphone and mic don't work on an Acer laptopASoC: rt5682: Fix the fast discharge for headset unplugging in soundwire modedrm/msm/a6xx: update/fix CP_PROTECT initializationdrm/ttm: fix deref of bo->ttm without holding the lock v2Merge tag 'usb-serial-5.13-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linususb: cdnsp: Fix deadlock issue in cdnsp_thread_irq_handlernet: make get_net_ns return error if NET_NS is disabledMerge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdmacgroup1: don't allow '\n' in renaminghwmon: (scpi-hwmon) shows the negative temperature properlyALSA: firewire-lib: fix the context to call snd_pcm_stop_xrun()ASoC: tas2562: Fix TDM_CFG0_SAMPRATE valuesdrm/msm: Init mm_list before accessing it for use_vram pathdrm/sun4i: dw-hdmi: Make HDMI PHY into a platform deviceusb: gadget: f_fs: Ensure io_completion_wq is idle during unbindUSB: serial: ftdi_sio: add NovaTech OrionMX product IDusb: cdns3: Enable TDL_CHK only for OUT epnet: stmmac: dwmac1000: Fix extended MAC address registers definitionMerge tag 'platform-drivers-x86-v5.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86IB/mlx5: Fix initializing CQ fragments bufferhwmon: (corsair-psu) fix suspend behaviorALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook 840 Aero G8ASoC: meson: gx-card: fix sound-dai dt schema267131589986167usb: typec: tcpm: cancel send discover hrtimer when unregister tcpm portUSB: serial: omninet: update driver description173968320771901Merge branch 'cxgb4-fixes'Merge tag 'compiler-attributes-for-linus-v5.13-rc6' of git://github.com/ojeda/linuxplatform/mellanox: mlxreg-hotplug: Revert "move to use request_irq by IRQF_NO_AUTOEN flag"RDMA/mlx5: Delete right entry from MR signature databasedt-bindings: hwmon: Fix typo in TI ADS7828 bindingsALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP EliteBook x360 1040 G8ASoC: AMD Renoir: Remove fix for DMI entry on Lenovo 2020 platformsusb: typec: tcpm: cancel frs hrtimer when unregister tcpm portUSB: serial: omninet: add device id for Zyxel Omni 56K Pluscxgb4: halt chip before flashing PHY firmware imageMerge tag 'clang-format-for-linus-v5.13-rc6' of git://github.com/ojeda/linux222133039388574platform/surface: dtx: Add missing mutex_destroy() call in failure pathRDMA: Verify port when creating flow ruleALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Elite Dragonfly G2ASoC: AMD Renoir - add DMI entry for Lenovo 2020 AMD platformsusb: typec: tcpm: cancel vdm and state machine hrtimer when unregister tcpm portUSB: serial: quatech2: fix control-request directionscxgb4: fix sleep in atomic when flashing PHY firmwareMerge tag 'for-5.13-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux78696582812307platform/surface: aggregator: Fix event disable functionRDMA/mlx5: Block FDB rules when not in switchdev modeASoC: SOF: reset enabled_cores state at suspendusb: typec: tcpm: Properly handle Alert and Status Messages273678565832578cxgb4: fix endianness when flashing boot imageMerge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmbtrfs: promote debugging asserts to full-fledged checks in validate_superplatform/x86: thinkpad_acpi: Add X1 Carbon Gen 9 second fan supportRDMA/mlx4: Do not map the core_clock page to user space unless enabledASoC: fsl-asoc-card: Set .owner attribute when registering card.usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabledalx: Fix an error handling path in 'alx_probe()'Merge tag 'for-linus-5.13b-rc6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tipkvm: fix previous commit for 32-bit buildsbtrfs: return value from btrfs_mark_extent_written() in case of errorplatform/surface: aggregator_registry: Add support for 13" Intel Surface Laptop 4RDMA/mlx5: Use different doorbell memory for different processesASoC: topology: Fix spelling mistake "vesion" -> "version"usb: dwc3: meson-g12a: Disable the regulator in the error handling path of the probenet: phy: dp83867: perform soft reset and retain established linkMerge tag 'orphans-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxxen-netback: take a reference to the RX task threadkvm: avoid speculation-based attacks from out-of-range memslot accessesbtrfs: zoned: fix zone number to sector/physical calculationplatform/surface: aggregator_registry: Update comments for 15" AMD Surface Laptop 4RDMA/ipoib: Fix warning caused by destroying non-initial netnsASoC: rt5659: Fix the lost powers for the HDA headerusb: typec: tcpm: Fix misuses of AMS invocationMerge branch 'mptcp-fixes'proc: Track /proc/$pid/attr/ opener mm_structvmlinux.lds.h: Avoid orphan section with !SMP220027905400869KVM: x86: Unload MMU on guest TLB flush if TDP disabled to force MMU syncbtrfs: do not write supers if we have an fs error253465111159079ASoC: core: Fix Null-point-dereference in fmt_single_name()usb: typec: tcpm: Introduce snk_vdo_v1 for SVDM version 1.0mptcp: fix soft lookup in subflow_error_report()Merge tag 'spi-fix-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spiARM: cpuidle: Avoid orphan section warningKVM: x86: Ensure liveliness of nested VM-Enter fail tracepoint messagedt-bindings: connector: Add PD rev 2.0 VDO definitionselftests: mptcp: enable syncookie only in absence of reordersMerge tag 'regulator-fix-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulatorspi: stm32-qspi: Always wait BUSY bit to be cleared in stm32_qspi_wait_cmd()selftests: kvm: Add support for customized slot0 memory sizeusb: typec: tcpm: Correct the responses in SVDM Version 2.0 DFPmptcp: do not warn on bad input from the networkafs: Fix partial writeback of large files on fsync and closeregulator: rt4801: Fix NULL pointer dereference if priv->enable_gpios is NULLspi: spi-zynq-qspi: Fix some wrong goto jumps & missing error codeKVM: selftests: introduce P47V64 for s390xRevert "usb: dwc3: core: Add shutdown callback for dwc3"mptcp: wake-up readers only for in sequence dataLinux 5.13-rc5regulator: hi6421v600: Fix .vsel_mask settingspi: Cleanup on failure of initial setupKVM: x86: Ensure PV TLB flush tracepoint reflects KVM behaviordt-bindings: connector: Replace BIT macro with generic bit opsmptcp: try harder to borrow memory from subflow under pressureMerge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiregulator: bd718x7: Fix the BUCK7 voltage setting on BD71837spi: bcm2835: Fix out-of-bounds access with more than 4 slavesKVM: X86: MMU: Use the correct inherited permissions to get shadow pageusb: dwc3: debugfs: Add and remove endpoint dirs dynamicallyMerge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nfMerge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4scsi: scsi_devinfo: Add blacklist entry for HPE OPEN-Vregulator: atc260x: Fix n_voltages and min_sel for pickable linear rangesKVM: LAPIC: Write 0 to TMICT should also cancel vmx-preemption timerusb: pd: Set PD_T_SINK_WAIT_CAP to 310msMerge branch 'tcp-options-oob-fixes'netfilter: nft_fib_ipv6: skip ipv6 packets from any to link-localMerge tag 'arm-soc-fixes-v5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/socext4: Only advertise encrypted_casefold when encryption and unicode are enabledscsi: ufs: ufs-mediatek: Fix HCI version in some platformsregulator: rtmv20: Fix to make regcache value first reading back from HWKVM: SVM: Fix SEV SEND_START session length & SEND_UPDATE_DATA query length after commit 238eca821ceeusb: musb: fix MUSB_QUIRK_B_DISCONNECT_99 handlingsch_cake: Fix out of bounds when parsing TCP options and headerselftests: netfilter: add fib test caseMerge tag 'powerpc-5.13-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linuxMerge tag 'ti-k3-dt-fixes-for-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/nmenon/linux into arm/fixesext4: fix no-key deletion for encrypt+casefoldscsi: qedf: Do not put host in qedf_vport_create() unconditionallyregulator: mt6315: Fix function prototype for mt6315_map_modeusb: dwc3: gadget: Bail from dwc3_gadget_exit() if dwc->gadget is NULLmptcp: Fix out of bounds when parsing TCP optionsnetfilter: nf_tables: initialize set before expression setupMerge tag 'x86_urgent_for_v5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipRevert "powerpc/kernel/iommu: Align size for IOMMU_PAGE_SIZE() to save TCEs"Merge tag 'optee-fix-for-v5.13' of git://git.linaro.org/people/jens.wiklander/linux-tee into arm/fixes222862290844825ext4: fix memory leak in ext4_fill_superscsi: lpfc: Fix failure to transmit ABTS on FC linkregulator: rtmv20: Add Richtek to Kconfig textusb: dwc3: gadget: Disable gadget IRQ during pullup disablenetfilter: synproxy: Fix out of bounds when parsing TCP optionsMerge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linuxx86/sev: Check SME/SEV support in CPUID firstKVM: PPC: Book3S HV: Save host FSCR in the P7/8 pathMerge tag 'omap-for-v5.13/fixes-pm' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into arm/fixes113509453153131ext4: fix fast commit alignment issuesscsi: target: core: Fix warning on realtime kernelsregulator: rtmv20: Fix .set_current_limit/.get_current_limit callbacksnet/packet: annotate data race in packet_sendmsg()Merge branch 'akpm' (patches from Andrew)i2c: qcom-geni: Suspend and resume the bus during SYSTEM_SLEEP_PM opsx86/fault: Don't send SIGSEGV twice on SEGV_PKUERRpowerpc: Fix reverse map real-mode address lookup with huge vmallocMerge tag 'omap-for-v5.13/fixes-sata' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into arm/fixesARM: OMAP1: ams-delta: remove unused function ams_delta_camera_powerext4: fix bug on in ext4_es_cache_extent as ext4_split_extent_at failedMerge series "Fix MAX77620 regulator driver regression" from Dmitry Osipenko <digetx@gmail.com>:inet: annotate date races around sk->sk_txhashMerge tag 'riscv-for-linus-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linuxmailmap: use private address for Michel Lespinassei2c: qcom-geni: Add shutdown callback for i2cx86/setup: Always reserve the first 1M of RAMpowerpc/kprobes: Fix validation of prefixed instructions across page boundaryMerge tag 'amlogic-fixes-v5.13-rc1' of https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux into arm/fixes241404830680711bus: ti-sysc: Fix flakey idling of uarts and stop using swsup_sidle_actext4: fix accessing uninit percpu counter variable with fast_commitregulator: hisilicon: use the correct HiSilicon copyrightregulator: max77620: Silence deferred probe errornet: annotate data race in sock_error()Merge tag 'net-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netMerge remote-tracking branch 'riscv/riscv-wx-mappings' into fixesocfs2: fix data corruption by fallocatei2c: tegra-bpmp: Demote kernel-doc abusesx86/alternative: Optimize single-byte NOPs at an arbitrary position236553930117764Merge tag 'imx-fixes-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into arm/fixesarm64: meson: select COMMON_CLK85191520297747185295614916617regulator: bd71828: Fix .n_voltages settingsregulator: max77620: Use device_set_of_node_from_dev()Merge branch 'bridge-egress-fixes'Merge tag 'perf-tools-fixes-for-v5.13-2021-06-04' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linuxRISC-V: Fix memblock_free() usages in init_resources()riscv: mm: Fix W+X mappings at bootlib: crc64: fix kernel-doc warningi2c: altera: Fix formatting issue in struct and demote unworthy kernel-doc headersx86/cpufeatures: Force disable X86_FEATURE_ENQCMD and remove update_pasid()201479981087007soc: amlogic: meson-clk-measure: remove redundant dev_err call in meson_msr_probe()regulator: bd70528: Fix off-by-one for buck123 .n_voltages settingnet: bridge: fix vlan tunnel dst refcnt when egressingMerge tag 'pci-v5.13-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pciperf env: Fix memory leak of bpf_prog_info_linear memberriscv: skip errata_cip_453.o if CONFIG_ERRATA_SIFIVE_CIP_453 is disabledmm, hugetlb: fix simple resv_huge_pages underflow on UFFDIO_COPYdmaengine: idxd: Use cpu_feature_enabled()60246938594824net: bridge: fix vlan tunnel dst null pointer dereferencePCI/MSI: Fix MSIs for generic hosts that use device-tree's "msi-map"perf symbol-elf: Fix memory leak by freeing sdt_note.argsriscv: Use -mno-relax when using lld linkermm/kasan/init.c: fix doc warningx86/thermal: Fix LVT thermal setup for SMI delivery modeping: Check return value of function 'ping_queue_rcv_skb'51560153507958perf stat: Honor event config name on --no-mergeproc: add .gitignore for proc-subset-pid selftestx86/apic: Mark _all_ legacy interrupts when IO/APIC is missingskbuff: fix incorrect msg_zerocopy copy notificationsperf evsel: Add missing cloning of evsel->use_config_namehugetlb: pass head page to remove_hugetlb_page()Merge tag 'mlx5-fixes-2021-06-09' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linuxperf test: Test 17 fails with make LIBPFM4=1 on s390 z/VMdrivers/base/memory: fix trying offlining memory blocks with memory holes on aarch64Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queuenet/mlx5e: Block offload of outer header csum for GRE tunnelperf stat: Fix error return code in bperf__load()mm/page_alloc: fix counting of free pages after take off from buddyice: parameterize functions responsible for Tx ring managementnet/mlx5e: Block offload of outer header csum for UDP tunnelsperf record: Move probing cgroup sampling supportmm/debug_vm_pgtable: fix alignment for pmd/pud_advanced_tests()ice: add ndo_bpf callback for safe mode netdev opsRevert "net/mlx5: Arm only EQs with EQEs"perf probe: Fix NULL pointer dereference in convert_variable_location()pid: take a reference when initializing `cad_pid`net/mlx5e: Fix select queue to consider SKBTX_HW_TSTAMPperf tools: Copy uapi/asm/perf_regs.h from the kernel for MIPSkfence: use TASK_IDLE when awaiting allocationnet/mlx5e: Don't update netdev RQs with PTP-RQRevert "MIPS: make userspace mapping young by default"net/mlx5e: Verify dev is present in get devlink port ndoMerge tag 'sound-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/soundnet/mlx5: DR, Don't use SW steering when RoCE is not supportedMerge tag 'drm-fixes-2021-06-04-1' of git://anongit.freedesktop.org/drm/drmALSA: hda: update the power_state during the direct-completenet/mlx5: Consider RoCE cap before init RDMA resourcesMerge tag 'vfio-v5.13-rc5' of git://github.com/awilliam/linux-vfioMerge tag 'drm/tegra/for-5.13-rc5' of ssh://git.freedesktop.org/git/tegra/linux into drm-fixesALSA: timer: Fix master timer notificationnet/mlx5e: Fix page reclaim for dead peer hairpinMerge tag 'block-5.13-2021-06-03' of git://git.kernel.dk/linux-blockvfio/platform: fix module_put call in error flowMerge tag 'amd-drm-fixes-5.13-2021-06-02' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixesdrm/tegra: Correct DRM_FORMAT_MOD_NVIDIA_SECTOR_LAYOUTALSA: control led: fix memory leak in snd_ctl_led_registernet/mlx5e: Remove dependency in IPsec initialization flowsMerge tag 'io_uring-5.13-2021-06-03' of git://git.kernel.dk/linux-blockMerge tag 'nvme-5.13-2021-06-03' of git://git.infradead.org/nvme into block-5.13samples: vfio-mdev: fix error handing in mdpy_fb_probe()Merge tag 'drm-intel-fixes-2021-06-03' of git://anongit.freedesktop.org/drm/drm-intel into drm-fixesamd/display: convert DRM_DEBUG_ATOMIC to drm_dbg_atomicdrm/tegra: sor: Fix AUX device reference leakALSA: hda: Fix for mute key LED for HP Pavilion 15-CK0xxnet/mlx5e: Fix use-after-free of encap entry in neigh update handlerMerge tag 'for-5.13-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linuxio_uring: fix misaccounting fix buf pinned pagesnvmet: fix freeing unallocated p2pmemvfio/iommu_type1: Use struct_size() for kzalloc()Merge tag 'drm-misc-fixes-2021-06-03' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixesRevert "i915: use io_mapping_map_user"drm/amdgpu: make sure we unpin the UVD BOdrm/tegra: Get ref for DP AUX channel, not its ddc adapterALSA: hda/cirrus: Set Initial DMIC volume to -26 dBnet/mlx5e: Fix an error code in mlx5e_arfs_create_tables()Merge tag 'efi-urgent-2021-06-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipMAINTAINERS: add btrfs IRC linknvme-loop: do not warn for deleted controllers during resetvfio/pci: zap_vma_ptes() needs MMURevert "fb_defio: Remove custom address_space_operations"drm/i915/selftests: Fix return value check in live_breadcrumbs_smoketest()drm/amd/amdgpu:save psp ring wptr to avoid attack242556429564343ALSA: hda: Fix a regression in Capture Switch mixer readnet/sched: act_ct: handle DNAT tuple collisionMerge tag 'acpi-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm247845309707364btrfs: fix deadlock when cloning inline extents and low on available spacenvme-loop: check for NVME_LOOP_Q_LIVE in nvme_loop_destroy_admin_queue()vfio/pci: Fix error return code in vfio_ecap_init()drm/amd/display: Fix potential memory leak in DMUB hw_initALSA: hda: Add AlderLake-M PCI IDrtnetlink: Fix regression in bridge VLAN configurationMerge tag 'hwmon-for-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-stagingACPICA: Clean up context mutex during object deletionbtrfs: fix fsync failure and transaction abort after writes to prealloc extentsnvme-loop: clear NVME_LOOP_Q_LIVE when nvme_loop_configure_admin_queue() failsdrm/amdgpu: Don't query CE and UE errorsMerge tag 'mac80211-for-net-2021-06-09' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid264961477858979btrfs: abort in rename_exchange if we fail to insert the second refnvme-loop: reset queue count to 1 in nvme_loop_destroy_io_queues()drm/amd/display: Fix overlay validation by considering cursorsudp: fix race between close() and udp_abort()mac80211: drop multicast fragmentsMerge tag 'gfs2-v5.13-rc2-fixes2' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2HID: asus: Cleanup Asus T101HA keyboard-dock handlingbtrfs: check error value from btrfs_update_inode in tree lognvme-rdma: fix in-casule data send for chained sglsdrm/amdgpu: refine amdgpu_fru_get_product_infoinet: annotate data race in inet_send_prepare() and inet_dgram_connect()mac80211: move interface shutdown out of wiphy lockBluetooth: Add a new USB ID for RTL8822CERevert "gfs2: Fix mmap locking for write faults"HID: magicmouse: fix NULL-deref on disconnectbtrfs: fixup error handling in fixup_inode_link_countsdrm/amdgpu: add judgement for dc supportnet: ethtool: clear heap allocations for ethtool functioncfg80211: shut down interfaces on failed resumeMerge tag 'gfs2-v5.13-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2HID: intel-ish-hid: ipc: Add Alder Lake device IDsbtrfs: mark ordered extent and inode with error if we fail to finishdrm/amd/display: Fix GPU scaling regression by FS video supportnet: lantiq: disable interrupt before sheduling NAPIcfg80211: fix phy80211 symlink creationMerge tag 'fsnotify_for_v5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fsgfs2: Fix use-after-free in gfs2_glock_shrink_scanHID: i2c-hid: fix format string mismatchbtrfs: return errors from btrfs_del_csums in cleanup_ref_headdrm/amd/display: Allow bandwidth validation for 0 streams.net: ena: fix DMA mapping function issues in XDPmac80211: fix 'reset' debugfs lockingfanotify: fix permission model of unprivileged group202264464756341HID: amd_sfh: Fix memory leak in amd_sfh_workbtrfs: fix error handling in btrfs_del_csumsLinux 5.13-rc4net: dsa: felix: re-enable TX flow control in ocelot_port_flush()mac80211: fix deadlock in AP/VLAN handling199524669604183HID: amd_sfh: Use devm_kzalloc() instead of kzalloc()btrfs: fix compressed writes that cross stripe boundaryMerge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linuxnet: rds: fix memory leak in rds_recvmsgmac80211: Fix NULL ptr deref for injected rate infoHID: ft260: improve error handling of ft260_hid_feature_report_get()130070880077387Merge tag 'seccomp-fixes-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxMAINTAINERS: adjust to removing i2c designware platform dataMerge tag 'batadv-net-pullrequest-20210608' of git://git.open-mesh.org/linux-mergemac80211: fix skb length check in ieee80211_scan_rx()HID: magicmouse: fix crash when disconnecting Magic Trackpad 2Merge tag 'riscv-for-linus-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linuxseccomp: Refactor notification handler to prepare for new semanticsi2c: s3c2410: fix possible NULL pointer deref on read message after writevrf: fix maximum MTU175123179183172staging: rtl8723bs: fix monitor netdev register/unregisterHID: gt683r: add missing MODULE_DEVICE_TABLEMerge tag 'xfs-5.13-fixes-3' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux205268641910459Documentation: seccomp: Fix user notification documentationi2c: mediatek: Disable i2c start_en and clear intr_stat brfore resetnet: appletalk: fix the usage of prepositioncfg80211: call cfg80211_leave_ocb when switching away from OCBHID: pidff: fix error return code in hid_pidff_init()Merge tag 'thermal-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linuxxfs: bunmapi has unnecessary AG lock ordering issuesi2c: i801: Don't generate an interrupt on bus resetnet: ipv4: Remove unneed BUG() functionmac80211: correct ieee80211_iterate_active_interfaces_mtx() locking commentsHID: logitech-hidpp: initialize level variableMerge tag 'char-misc-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-miscthermal/drivers/qcom: Fix error code in adc_tm5_get_dt_channel_data()xfs: btree format inode forks can have zero extentsi2c: mpc: implement erratum A-004447 workaroundnet: ipv4: fix memory leak in netlbl_cipsov4_add_stdmac80211_hwsim: drop pending frames on stopHID: multitouch: Disable event reporting on suspend on the Asus T101HA touchpadMerge tag 'driver-core-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-coremei: request autosuspend after sending rx flow controlthermal/ti-soc-thermal: Fix kernel-docxfs: add new IRC channel to MAINTAINERSpowerpc/fsl: set fsl,i2c-erratum-a004447 flag for P1010 i2c controllersneighbour: allow NUD_NOARP entries to be forced GCedmac80211: remove warning in ieee80211_get_sband()HID: core: Remove extraneous empty line before EXPORT_SYMBOL_GPL(hid_check_keys_pressed)Merge tag 'staging-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging13774280277951Merge tag 'icc-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc into char-misc-linus258956475266255xfs: validate extsz hints against rt extent size when rtinherit is setpowerpc/fsl: set fsl,i2c-erratum-a004447 flag for P2041 i2c controllersrevert "net: kcm: fix memory leak in kcm_sendmsg"HID: hid-sensor-custom: Process failure of sensor_hub_set_feature()Merge tag 'tty-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty9285360806374320852850838910535014421515659xfs: standardize extent size hint validationdt-bindings: i2c: mpc: Add fsl,i2c-erratum-a004447 flagMerge branch 'mlxsw-fixes'222542228294617Merge tag 'usb-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbRevert "serial: 8250: 8250_omap: Fix possible interrupt storm"xfs: check free AG space when making per-AG reservationsi2c: busses: i2c-stm32f4: Remove incorrectly placed ' ' from function namemlxsw: core: Set thermal zone polling delay argument to real value at initMerge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmxhci: Fix 5.12 regression of missing xHC cache clearing command after a Stallserial: 8250_pci: handle FL_NOIRQ board flag250425320621915i2c: busses: i2c-st: Fix copy/paste function misnaming issuesmlxsw: spectrum_qdisc: Pass handle, not band number to find_class()Merge tag 's390-5.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linuxselftests: kvm: fix overlapping addresses in memslot_perf_testxhci: fix giving back URB with incorrect status regression in 5.121511870729346i2c: busses: i2c-pnx: Provide descriptions for 'alg_data' data structuremlxsw: reg: Spectrum-3: Enforce lowest max-shaper burst size of 11Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiMerge tag 'vfio-ccw-20210520' of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/vfio-ccw into fixesMerge tag 'kvmarm-fixes-5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into HEADMerge tag 'thunderbolt-for-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt into usb-linusi2c: busses: i2c-ocores: Place the expected function names into the documentation headersethtool: Fix NULL pointer dereference during module EEPROM dumpMerge tag 'block-5.13-2021-05-28' of git://git.kernel.dk/linux-block5164010923559247243167310901KVM: X86: Kill off ctxt->udKVM: arm64: Prevent mixed-width VM creationusb: gadget: udc: renesas_usb3: Fix a race in usb3_start_pipen()38240804328944i2c: busses: i2c-eg20t: Fix 'bad line' issue and provide description for 'msgs' paramcxgb4: avoid link re-train during TC-MQPRIO configurationMerge tag 'io_uring-5.13-2021-05-28' of git://git.kernel.dk/linux-blockMerge tag 'nvme-5.13-2021-05-27' of git://git.infradead.org/nvme into block-5.13KVM: X86: Fix warning caused by stale emulation contextKVM: arm64: Resolve all pending PC updates before immediate exitusb: typec: tcpm: Respond Not_Supported if no snk_vdoi2c: busses: i2c-designware-master: Fix misnaming of 'i2c_dw_init_master()'sch_htb: fix refcount leak in htb_parent_to_leaf_offloadMerge tag 'drm-fixes-2021-05-29' of git://anongit.freedesktop.org/drm/drmio_uring: fix data race to avoid potential NULL-derefMerge branch 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-5.13nvmet: fix false keep-alive timeout when a controller is torn downKVM: X86: Use kvm_get_linear_rip() in single-step and #DB/#BP interception223773130038565usb: typec: tcpm: Properly interrupt VDM AMSi2c: busses: i2c-cadence: Fix incorrectly documented 'enum cdns_i2c_slave_mode'Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queueMerge tag 'perf-tools-fixes-for-v5.13-2021-05-28' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linuxMerge tag 'drm-intel-fixes-2021-05-27' of ssh://git.freedesktop.org/git/drm/drm-intel into drm-fixesio-wq: Fix UAF when wakeup wqe in hash waitqueues390/dasd: add missing discipline functionmd/raid5: remove an incorrect assert in in_chunk_boundarynvmet-tcp: fix inline data size comparison in nvmet_tcp_queue_responseKVM: x86/mmu: Fix comment mentioning skip_4k49192467566152i2c: busses: i2c-ali1563: File headers are not good candidates for kernel-docMerge branch 'wireguard-fixes'virtchnl: Add missing padding to virtchnl_proto_hdrsMerge tag '5.13-rc4-smb3' of git://git.samba.org/sfrench/cifs-2.6perf vendor events powerpc: Fix eventcode of power10 JSON eventsMerge tag 'drm-misc-fixes-2021-05-27' of ssh://git.freedesktop.org/git/drm/drm-misc into drm-fixesdrm/i915: Reenable LTTPR non-transparent LT mode for DPCD_REV<1.4io_uring/io-wq: close io-wq full-stop gapnvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVMEKVM: VMX: update vcpu posted-interrupt descriptor when assigning devicei2c: muxes: i2c-arb-gpio-challenge: Demote non-conformant kernel-doc headerswireguard: allowedips: free empty intermediate nodes when removing single nodeice: Allow all LLDP packets from PF to TxMerge tag 'nfs-for-5.13-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfscifs: change format of CIFS_FULL_KEY_DUMP ioctlperf stat: Fix error check for bpf_program__attachMerge tag 'amd-drm-fixes-5.13-2021-05-26' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixesdrm/ttm: Skip swapout if ttm object is not populated204917031340674nvme-fabrics: decode host pathing error for connectKVM: rename KVM_REQ_PENDING_TIMER to KVM_REQ_UNBLOCKi2c: busses: i2c-nomadik: Fix formatting issue pertaining to 'timeout'wireguard: allowedips: allocate nodes in kmem_cacheice: report supported and advertised autoneg using PHY capabilitiesMerge tag 'sound-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/soundnfs: Remove trailing semicolon in macroscifs: fix string declarations and assignments in tracepointsperf debug: Move debug initialization earlier36196907626369drm/meson: fix shutdown crash when component not probednvme-fc: short-circuit reconnect retriesKVM: x86: add start_assignment hook to kvm_x86_opsi2c: sh_mobile: Use new clock calculation formulas for RZ/G2Ewireguard: allowedips: remove nodes in O(1)ice: handle the VF VSI rebuild failureMerge tag 'clang-features-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 17 G8xprtrdma: Revert 586a0787ce35cifs: set server->cipher_type to AES-128-CCM for SMB3.0perf jevents: Fix getting maximum number of fds138540797285756nvme: fix potential memory leaks in nvme_cdev_addKVM: LAPIC: Narrow the timer latency between wait_lapic_expire and world switchi2c: I2C_HISI should depend on ACPIwireguard: allowedips: initialize list head in selftestice: Fix VFR issues for AVF drivers that expect ATQLEN clearedMerge tag 'mips-fixes_5.13_1' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linuxMakefile: LTO: have linker check -Wframe-larger-thanALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 15 G8NFSv4: Fix v4.0/v4.1 SEEK_DATA return -ENOTSUPP when set NFS_V4_2 config207164397400672selftests: kvm: do only 1 memslot_perf_test run by defaulti2c: icy: Remove unused variable new_fwnode in icy_probe()wireguard: peer: allocate in kmem_cacheice: Fix allowing VF to request more/less queues via virtchnlMerge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpuMIPS: Fix kernel hang under FUNCTION_GRAPH_TRACER and PREEMPT_TRACERinit: verify that function is initcall_t at compile-timeALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook G8NFS: Clean up reset of the mirror accounting variablesKVM: X86: Use _BITUL() macro in UAPI headersi2c: qcom-geni: fix spelling mistake "unepxected" -> "unexpected"wireguard: use synchronize_net rather than synchronize_rcuMerge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux216911650203401MIPS: ralink: export rt_sysc_membase for rt2880_wdt.c229245702448106ALSA: hda/realtek: fix mute/micmute LEDs for HP 855 G8NFS: Don't corrupt the value of pg_bytes_written in nfs_do_recoalesce()KVM: selftests: add shared hugetlbfs backing source typewireguard: do not use -O3Merge tag 'for-5.13/dm-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dmarm64: mm: don't use CON and BLK mapping if KFENCE is enabledMIPS: launch.h: add include guard to prevent build errorsALSA: hda/realtek: Chain in pop reduction fixup for ThinkStation P340NFS: Fix an Oopsable condition in __nfs_pageio_add_request()KVM: selftests: allow using UFFD minor faults for demand pagingwireguard: selftests: make sure rp_filter is disabled on vethcMerge tag 'acpi-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pmdm snapshot: properly fix a crash when an origin has no snapshots130639959333830MIPS: alchemy: xxs1500: add gpio-au1000.h header fileMerge tag 'asoc-fix-v5.13-rc3' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusSUNRPC: More fixes for backlog congestionKVM: selftests: create alias mappings when using shared memorywireguard: selftests: remove old conntrack kconfig valueMerge tag 'iommu-fixes-v5.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommuACPI: power: Refine turning off unused power resourcesdm snapshot: revert "fix a crash when an origin has no snapshots"47870081364390192582077685096231402235411689KVM: selftests: add shmem backing source typeMerge tag 'for-net-2021-06-03' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetoothafs: Fix the nlink handling of dir-over-dir renameiommu/vt-d: Fix sysfs leak in alloc_iommu()dm verity: fix require_signatures module_param permissionsKVM: selftests: refactor vm_mem_backing_src_type flagsvirtio-net: fix for skb_over_panic inside big modeBluetooth: btusb: Fix failing to init controllers with operation firmware93218197763072KVM: selftests: allow different backing source typesMerge tag 'ieee802154-for-davem-2021-06-03' of git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpanBluetooth: Fix VIRTIO_ID_BT assigned numberKVM: selftests: compute correct demand paging sizeipv6: Fix KASAN: slab-out-of-bounds Read in fib6_nh_flush_exceptionsieee802154: fix error return code in ieee802154_llsec_getparams()Bluetooth: use correct lock to prevent UAF of hdev objectKVM: selftests: simplify setup_demand_paging error handlingMerge tag 'wireless-drivers-2021-06-03' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-driversieee802154: fix error return code in ieee802154_add_iface()Bluetooth: fix the erroneous flush_work() orderKVM: selftests: Print a message if /dev/kvm is missingfib: Return the correct errno codemt76: mt7921: remove leftover 80+80 HE capabilitynet: ieee802154: mrf24j40: Drop unneeded of_match_ptr()KVM: selftests: trivial comment/logging fixesnet: Return the correct errno codemt76: mt7615: do not set MT76_STATE_PM at bootstrapnet/ieee802154: drop unneeded assignment in llsec_iter_devkeys()KVM: selftests: Fix hang in hardware_disable_testnet/x25: Return the correct errno code48566905303727175771613235781KVM: selftests: Ignore CPUID.0DH.1H in get_cpuid_testcxgb4: fix regression with HASH tc prio value updateKVM: selftests: Fix 32-bit truncation of vm_get_max_gfn()Merge branch 'caif-fixes'KVM: selftests: add a memslot-related performance benchmarknet: caif: fix memory leak in cfusbl_device_notifyKVM: selftests: Keep track of memslots more efficientlynet: caif: fix memory leak in caif_device_notifyselftests: kvm: fix potential issue with ELF loadingnet: caif: add proper error handlingselftests: kvm: make allocation of extra memory take effectnet: caif: added cfserl_release functionKVM: X86: hyper-v: Task srcu lock when accessing kvm_memslots()Merge branch '1GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queueKVM: X86: Fix vCPU preempted state from guest's point of viewMerge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfice: track AF_XDP ZC enabled queues in bitmapKVM: X86: Bail out of direct yield in case of under-committed scenariosnet: kcm: fix memory leak in kcm_sendmsgbpf, lockdown, audit: Fix buggy SELinux lockdown permission checksigc: add correct exception tracing for XDPKVM: PPC: exit halt polling on need_resched()sit: set name of device back to struct parmskbuild: Quote OBJCOPY var to avoid a pahole call break the buildixgbevf: add correct exception tracing for XDPKVM: SVM: make the avic parameter a boolrtnetlink: Fix missing error code in rtnl_bridge_notify()igb: add correct exception tracing for XDPKVM: VMX: Drop unneeded CONFIG_X86_LOCAL_APIC checkMerge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nfixgbe: add correct exception tracing for XDPKVM: SVM: Drop unneeded CONFIG_X86_LOCAL_APIC checknetfilter: nfnetlink_cthelper: hit EBUSY on updates if size mismatchesice: add correct exception tracing for XDP180544763391227netfilter: nft_ct: skip expectations for confirmed conntracki40e: add correct exception tracing for XDPigb: Fix XDP with PTP enablednet: stmmac: fix issue where clk is being unprepared twicenet: ipconfig: Don't override command-line hostnames or domainsMerge tag 'mlx5-fixes-2021-06-01' of git://git.kernel.org/pub/scm/linu x/kernel/git/saeed/linuxnet/mlx5: DR, Create multi-destination flow table with level less than 64net/mlx5e: Fix conflict with HW TS and CQE compressionnet/mlx5e: Fix HW TS with CQE compression according to profilenet/mlx5e: Fix adding encap rules to slow pathnet/mlx5e: Check for needed capability for cvlan matchingnet/mlx5: Check firmware sync reset requested is set before trying to abort itnet/mlx5e: Disable TLS offload for uplink representornet/mlx5e: Fix incompatible castingMAINTAINERS: nfc mailing lists are subscribers-onlyMerge branch 'ktls-use-after-free'net/tls: Fix use-after-free after the TLS device goes down and upnet/tls: Replace TLS_RX_SYNC_RUNNING with RCUethernet: myri10ge: Fix missing error code in myri10ge_probe()Merge branch 'virtio_net-build_skb-fixes'virtio_net: get build_skb() buf by data ptrvirtio-net: fix for unable to handle page fault for addressnet: sock: fix in-kernel mark settingnet: dsa: tag_8021q: fix the VLAN IDs used for encoding sub-VLANsnfc: fix NULL ptr dereference in llcp_sock_getname() after failed connectnet: stmmac: fix kernel panic due to NULL pointer dereference of mdio_bus_dataMerge branch 'mptcp-fixes-for-5-13'mptcp: update selftest for fallback due to OoOmptcp: do not reset MP_CAPABLE subflow on mapping errorsmptcp: always parse mptcp options for MPC reqskmptcp: fix sk_forward_memory corruption on retransmissionMerge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nfnet/sched: act_ct: Fix ct template allocation for zone 0ipvs: ignore IP_VS_SVC_F_HASHED flag when adding servicenet/sched: act_ct: Offload connections with commit actionnetfilter: nf_tables: fix table flag updatesdevlink: Correct VIRTUAL port to not have phys_port attributes167384804196822Merge tag 'net-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netMerge tag 'mtd/fixes-for-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linuxnet: phy: Document phydev::dev_flags bits allocationproc: Check /proc/$pid/attr/ writes against file opener94744001762226Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpfMerge tag 'netfs-lib-fixes-20200525' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fsMerge branch 'mptcp-fixes'bpf, selftests: Adjust few selftest result_unpriv outcomesafs: Fix fall-through warnings for Clangnetfs: Make CONFIG_NETFS_SUPPORT auto-selected rather than manualmptcp: validate 'id' when stopping the ADD_ADDR retransmit timerbpf: No need to simulate speculative domain for immediatesMerge tag 'perf-tools-fixes-for-v5.13-2021-05-24' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linuxnetfs: Pass flags through to grab_cache_page_write_begin()mptcp: avoid error message on infinite mappingbpf: Fix mask direction swap upon off reg sign changeMerge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup273461034484857122026802775574mptcp: drop unconditional pr_warn on bad optbpf: Wrap aux data inside bpf_sanitize_info containerMerge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqcgroup: fix spelling mistakesmptcp: avoid OOB access in setsockopt()bpf: Fix BPF_LSM kconfig symbol dependencyMerge tag 'spi-fix-v5.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi16278546430519876835794748282nfp: update maintainer and mailing list addressesselftests/bpf: Add test for l3 use of bpf_redirect_peerLinux 5.13-rc3198893167531181net: mvpp2: add buffer header handling in RXbpftool: Add sock_release help info for cgroup attach/prog load commandMerge tag 'perf-urgent-2021-05-23' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipbnx2x: Fix missing error code in bnx2x_iov_init_one()145347811008768Merge tag 'locking-urgent-2021-05-23' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip79775052106217net: zero-initialize tc skb extension on allocationMerge tag 'irq-urgent-2021-05-23' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip63776175501937net: hns: Fix kernel-docMerge tag 'x86_urgent_for_v5.13_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip198420124265051sctp: fix the proc_handler for sysctl encap_port4486812095945780629248618251sctp: add the missing setting for asoc encap_portnet: dsa: microchip: enable phy errata workaround on 9567net: usb: fix memory leak in smsc75xx_bindnet: hsr: fix mac_len checksnet: appletalk: cops: Fix data race in cops_probe1Merge branch 'sja1105-fixes'net: dsa: sja1105: update existing VLANs from the bridge VLAN listnet: dsa: sja1105: use 4095 as the private VLAN for untagged trafficnet: dsa: sja1105: error out on unsupported PHY modenet: dsa: sja1105: add error handling in sja1105_setup()net: dsa: sja1105: call dsa_unregister_switch when allocating memory failsnet: dsa: sja1105: fix VL lookup command packing for P/Q/R/Snet: hso: fix control-request directionsr8152: check the informaton of the devicesch_dsmark: fix a NULL deref in qdisc_reset()NFC: nfcmrvl: fix kernel-doc syntax in file headersnet: dsa: mt7530: fix VLAN traffic leaksMerge branch 'fq_pie-fixes'net/sched: fq_pie: fix OOB access in the traffic pathnet/sched: fq_pie: re-factor fix for fq_pie endless loopnet: macb: ensure the device is available before accessing GEMGXL control registersnet: ethernet: mtk_eth_soc: Fix packet statistics support for MT7628/88MAINTAINERS: Add entries for CBS, ETF and taprio qdiscs249172546457536
In [ ]: