History log of /linux-6.15/tools/perf/scripts/python/ (Results 126 – 150 of 202)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
57e604b102-Mar-2019 Tony Jones <[email protected]>

perf script python: add Python3 support to check-perf-trace.py

Support both Python 2 and Python 3 in the check-perf-trace.py script.

There may be differences in the ordering of output lines due to

perf script python: add Python3 support to check-perf-trace.py

Support both Python 2 and Python 3 in the check-perf-trace.py script.

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of from __future__ implies the minimum supported version of
Python2 is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Cc: Tom Zanussi <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

de2ec16b02-Mar-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to futex-contention.py

Support both Python2 and Python3 in the futex-contention.py script

There may be differences in the ordering of output lines due to
dif

perf script python: Add Python3 support to futex-contention.py

Support both Python2 and Python3 in the futex-contention.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

b504d7f602-Mar-2019 Tony Jones <[email protected]>

perf script python: Remove mixed indentation

Remove mixed indentation in Python scripts. Revert to either all tabs
(most common form) or all spaces (4 or 8) depending on what was the
intent of the

perf script python: Remove mixed indentation

Remove mixed indentation in Python scripts. Revert to either all tabs
(most common form) or all spaces (4 or 8) depending on what was the
intent of the original commit. This is necessary to complete Python3
support as it will flag an error if it encounters mixed indentation.

Signed-off-by: Tony Jones <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

ae8b887c28-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Add call tree

Add a new report to display a call tree. The Call Tree report is very
similar to the Context-Sensitive Call Graph, but the data is not
aggr

perf scripts python: exported-sql-viewer.py: Add call tree

Add a new report to display a call tree. The Call Tree report is very
similar to the Context-Sensitive Call Graph, but the data is not
aggregated. Also the 'Count' column, which would be always 1, is replaced
by the 'Call Time'.

Committer testing:

$ cat simple-retpoline.c
/*

https://lkml.kernel.org/r/[email protected]

$ gcc -ggdb3 -Wall -Wextra -O2 -o simple-retpoline simple-retpoline.c
$ objdump -d simple-retpoline
*/

__attribute__((noinline)) int bar(void)
{
return -1;
}

int foo(void)
{
return bar() + 1;
}

__attribute__((indirect_branch("thunk"))) int main()
{
int (*volatile fn)(void) = foo;

fn();
return fn();
}
$
$ perf record -o simple-retpoline.perf.data -e intel_pt/cyc/u ./simple-retpoline
$ perf script -i simple-retpoline.perf.data --itrace=be -s ~acme/libexec/perf-core/scripts/python/export-to-sqlite.py simple-retpoline.db branches calls
$ python ~acme/libexec/perf-core/scripts/python/exported-sql-viewer.py simple-retpoline.db

And in the GUI select:

"Reports"
"Call Tree"

Call Path | Object | Call Time (ns) | Time (ns) | Time (%) | Branch Count | Brach Count (%) |
> simple-retpolin
> PID:TID
> _start ld-2.28.so 2193855505777 156267 100.0 10602 100.0
unknown unknown 2193855506010 2276 1.5 1 0.0
> _dl_start ld-2.28.so 2193855508286 137047 87.7 10088 95.2
> _dl_init ld-2.28.so 2193855645444 9142 5.9 326 3.1
> _start simple-retpoline 2193855654587 7457 4.8 182 1.7
> __libc_start_main <SNIP>
<SNIP>
> main simple-retpoline 2193855657493 32 0.5 12 6.7
> foo simple-retpoline 2193855657493 14 43.8 5 41.7
<SNIP>

Signed-off-by: Adrian Hunter <[email protected]>
Tested-by: Arnaldo Carvalho de Melo <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

254c0d8228-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Factor out CallGraphModelBase

Factor out a base class CallGraphModelBase from CallGraphModel, so that
CallGraphModelBase can be reused.

Signed-off-by: A

perf scripts python: exported-sql-viewer.py: Factor out CallGraphModelBase

Factor out a base class CallGraphModelBase from CallGraphModel, so that
CallGraphModelBase can be reused.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

a448ba2328-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Improve TreeModel abstraction

Instead of passing the tree root, get it from a method that can be
implemented in any derived class.

Signed-off-by: Adrian

perf scripts python: exported-sql-viewer.py: Improve TreeModel abstraction

Instead of passing the tree root, get it from a method that can be
implemented in any derived class.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

a731cc4c28-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Factor out TreeWindowBase

Factor out a base class TreeWindowBase from CallGraphWindow, so that
TreeWindowBase can be reused.

Signed-off-by: Adrian Hunte

perf scripts python: exported-sql-viewer.py: Factor out TreeWindowBase

Factor out a base class TreeWindowBase from CallGraphWindow, so that
TreeWindowBase can be reused.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

febce6dc28-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: export-to-postgresql.py: Export calls parent_id

Export to the 'calls' table the newly created 'parent_id' and create an
index for it.

Signed-off-by: Adrian Hunter <adrian.hunte

perf scripts python: export-to-postgresql.py: Export calls parent_id

Export to the 'calls' table the newly created 'parent_id' and create an
index for it.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

07c5ebea28-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: export-to-postgresql.py: Fix invalid input syntax for integer error

Fix SQL query error "invalid input syntax for integer":

Traceback (most recent call last):
File "tools

perf scripts python: export-to-postgresql.py: Fix invalid input syntax for integer error

Fix SQL query error "invalid input syntax for integer":

Traceback (most recent call last):
File "tools/perf/scripts/python/export-to-postgresql.py", line 465, in <module>
do_query(query, 'CREATE VIEW calls_view AS '
File "tools/perf/scripts/python/export-to-postgresql.py", line 274, in do_query
raise Exception("Query failed: " + q.lastError().text())
Exception: Query failed: ERROR: invalid input syntax for integer: ""
LINE 1: ...ch_count,call_id,return_id,CASE WHEN flags=0 THEN '' WHEN fl...
^
(22P02) QPSQL: Unable to create query
Error running python script tools/perf/scripts/python/export-to-postgresql.py

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Fixes: f08046cb3082 ("perf thread-stack: Represent jmps to the start of a different symbol")
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

8ce9a72528-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: export-to-sqlite.py: Export calls parent_id

Export to the 'calls' table the newly created 'parent_id'.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <jol

perf scripts python: export-to-sqlite.py: Export calls parent_id

Export to the 'calls' table the newly created 'parent_id'.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: https://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...


/linux-6.15/CREDITS
/linux-6.15/Documentation/ABI/stable/sysfs-driver-mlxreg-io
/linux-6.15/Documentation/admin-guide/README.rst
/linux-6.15/Documentation/admin-guide/kernel-parameters.txt
/linux-6.15/Documentation/networking/dsa/dsa.txt
/linux-6.15/Documentation/networking/msg_zerocopy.rst
/linux-6.15/Documentation/networking/operstates.txt
/linux-6.15/Documentation/networking/switchdev.txt
/linux-6.15/Documentation/process/applying-patches.rst
/linux-6.15/Documentation/sysctl/fs.txt
/linux-6.15/Documentation/translations/it_IT/admin-guide/README.rst
/linux-6.15/MAINTAINERS
/linux-6.15/Makefile
/linux-6.15/arch/alpha/include/asm/irq.h
/linux-6.15/arch/alpha/mm/fault.c
/linux-6.15/arch/arc/Kconfig
/linux-6.15/arch/arc/configs/nps_defconfig
/linux-6.15/arch/arc/configs/vdk_hs38_defconfig
/linux-6.15/arch/arc/configs/vdk_hs38_smp_defconfig
/linux-6.15/arch/arc/include/asm/arcregs.h
/linux-6.15/arch/arc/include/asm/cache.h
/linux-6.15/arch/arc/include/asm/entry-arcv2.h
/linux-6.15/arch/arc/include/asm/uaccess.h
/linux-6.15/arch/arc/kernel/entry-arcv2.S
/linux-6.15/arch/arc/kernel/head.S
/linux-6.15/arch/arc/kernel/intc-arcv2.c
/linux-6.15/arch/arc/kernel/setup.c
/linux-6.15/arch/arc/lib/memcpy-archs.S
/linux-6.15/arch/arc/plat-hsdk/Kconfig
/linux-6.15/arch/arm/Kconfig
/linux-6.15/arch/arm/boot/dts/am335x-evm.dts
/linux-6.15/arch/arm/boot/dts/am335x-evmsk.dts
/linux-6.15/arch/arm/boot/dts/am335x-shc.dts
/linux-6.15/arch/arm/boot/dts/armada-xp-db.dts
/linux-6.15/arch/arm/boot/dts/armada-xp-gp.dts
/linux-6.15/arch/arm/boot/dts/armada-xp-lenovo-ix4-300d.dts
/linux-6.15/arch/arm/boot/dts/da850.dtsi
/linux-6.15/arch/arm/boot/dts/imx6q-pistachio.dts
/linux-6.15/arch/arm/boot/dts/imx6sll-evk.dts
/linux-6.15/arch/arm/boot/dts/imx6sx.dtsi
/linux-6.15/arch/arm/boot/dts/meson.dtsi
/linux-6.15/arch/arm/boot/dts/meson8b-ec100.dts
/linux-6.15/arch/arm/boot/dts/meson8b-odroidc1.dts
/linux-6.15/arch/arm/boot/dts/meson8m2-mxiii-plus.dts
/linux-6.15/arch/arm/boot/dts/motorola-cpcap-mapphone.dtsi
/linux-6.15/arch/arm/boot/dts/omap3-gta04.dtsi
/linux-6.15/arch/arm/boot/dts/omap3-n900.dts
/linux-6.15/arch/arm/boot/dts/omap3-n950-n9.dtsi
/linux-6.15/arch/arm/boot/dts/omap4-droid4-xt894.dts
/linux-6.15/arch/arm/boot/dts/omap5-board-common.dtsi
/linux-6.15/arch/arm/boot/dts/omap5-cm-t54.dts
/linux-6.15/arch/arm/boot/dts/omap5-l4.dtsi
/linux-6.15/arch/arm/boot/dts/r8a7743.dtsi
/linux-6.15/arch/arm/boot/dts/rk3188.dtsi
/linux-6.15/arch/arm/boot/dts/sun6i-a31.dtsi
/linux-6.15/arch/arm/boot/dts/sun8i-h3-beelink-x2.dts
/linux-6.15/arch/arm/boot/dts/tegra124-nyan.dtsi
/linux-6.15/arch/arm/boot/dts/vf610-bk4.dts
/linux-6.15/arch/arm/include/asm/irq.h
/linux-6.15/arch/arm/include/asm/kvm_host.h
/linux-6.15/arch/arm/include/asm/stage2_pgtable.h
/linux-6.15/arch/arm/kernel/irq.c
/linux-6.15/arch/arm/kernel/smp.c
/linux-6.15/arch/arm/kvm/coproc.c
/linux-6.15/arch/arm/kvm/reset.c
/linux-6.15/arch/arm/mach-iop32x/n2100.c
/linux-6.15/arch/arm/mach-omap2/cpuidle44xx.c
/linux-6.15/arch/arm/mach-omap2/display.c
/linux-6.15/arch/arm/mach-omap2/omap-wakeupgen.c
/linux-6.15/arch/arm/mach-tango/pm.c
/linux-6.15/arch/arm/mach-tango/pm.h
/linux-6.15/arch/arm/mach-tango/setup.c
/linux-6.15/arch/arm/mm/dma-mapping.c
/linux-6.15/arch/arm/plat-pxa/ssp.c
/linux-6.15/arch/arm/probes/kprobes/opt-arm.c
/linux-6.15/arch/arm/xen/mm.c
/linux-6.15/arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts
/linux-6.15/arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gx-p23x-q20x.dtsi
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxbb-nanopi-k2.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxbb-nexbox-a95x.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxbb-p20x.dtsi
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxbb-wetek.dtsi
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxl-s905x-hwacom-amazetv.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxl-s905x-libretech-cc.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxl-s905x-nexbox-a95x.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxl-s905x-p212.dtsi
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxm-nexbox-a1.dts
/linux-6.15/arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts
/linux-6.15/arch/arm64/boot/dts/freescale/imx8mq-evk.dts
/linux-6.15/arch/arm64/boot/dts/freescale/imx8mq.dtsi
/linux-6.15/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
/linux-6.15/arch/arm64/boot/dts/qcom/msm8996.dtsi
/linux-6.15/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
/linux-6.15/arch/arm64/boot/dts/renesas/r8a7796.dtsi
/linux-6.15/arch/arm64/boot/dts/renesas/r8a77965.dtsi
/linux-6.15/arch/arm64/boot/dts/rockchip/rk3328-rock64.dts
/linux-6.15/arch/arm64/boot/dts/rockchip/rk3399-gru-bob.dts
/linux-6.15/arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dts
/linux-6.15/arch/arm64/boot/dts/rockchip/rk3399-sapphire-excavator.dts
/linux-6.15/arch/arm64/include/asm/kvm_host.h
/linux-6.15/arch/arm64/include/asm/memory.h
/linux-6.15/arch/arm64/include/asm/neon-intrinsics.h
/linux-6.15/arch/arm64/kernel/head.S
/linux-6.15/arch/arm64/kernel/machine_kexec_file.c
/linux-6.15/arch/arm64/kernel/ptrace.c
/linux-6.15/arch/arm64/kernel/setup.c
/linux-6.15/arch/arm64/kvm/hyp/switch.c
/linux-6.15/arch/arm64/kvm/hyp/sysreg-sr.c
/linux-6.15/arch/arm64/kvm/reset.c
/linux-6.15/arch/arm64/kvm/sys_regs.c
/linux-6.15/arch/arm64/mm/dump.c
/linux-6.15/arch/arm64/mm/kasan_init.c
/linux-6.15/arch/csky/include/asm/pgtable.h
/linux-6.15/arch/csky/include/asm/processor.h
/linux-6.15/arch/csky/kernel/dumpstack.c
/linux-6.15/arch/csky/kernel/ptrace.c
/linux-6.15/arch/csky/kernel/smp.c
/linux-6.15/arch/csky/mm/ioremap.c
/linux-6.15/arch/m68k/emu/nfblock.c
/linux-6.15/arch/mips/Kconfig
/linux-6.15/arch/mips/boot/dts/ingenic/ci20.dts
/linux-6.15/arch/mips/boot/dts/ingenic/jz4740.dtsi
/linux-6.15/arch/mips/boot/dts/xilfpga/nexys4ddr.dts
/linux-6.15/arch/mips/include/asm/atomic.h
/linux-6.15/arch/mips/include/asm/barrier.h
/linux-6.15/arch/mips/include/asm/bitops.h
/linux-6.15/arch/mips/include/asm/futex.h
/linux-6.15/arch/mips/include/asm/pgtable.h
/linux-6.15/arch/mips/kernel/mips-cm.c
/linux-6.15/arch/mips/kernel/process.c
/linux-6.15/arch/mips/loongson64/Platform
/linux-6.15/arch/mips/loongson64/common/reset.c
/linux-6.15/arch/mips/mm/tlbex.c
/linux-6.15/arch/mips/net/ebpf_jit.c
/linux-6.15/arch/mips/pci/pci-octeon.c
/linux-6.15/arch/mips/vdso/Makefile
/linux-6.15/arch/parisc/kernel/ptrace.c
/linux-6.15/arch/powerpc/include/asm/book3s/64/pgtable.h
/linux-6.15/arch/powerpc/mm/pgtable-book3s64.c
/linux-6.15/arch/powerpc/platforms/powernv/pci-ioda.c
/linux-6.15/arch/powerpc/platforms/powernv/pci.c
/linux-6.15/arch/powerpc/platforms/pseries/papr_scm.c
/linux-6.15/arch/riscv/include/asm/pgtable-bits.h
/linux-6.15/arch/riscv/include/asm/pgtable.h
/linux-6.15/arch/riscv/kernel/vmlinux.lds.S
/linux-6.15/arch/s390/kernel/swsusp.S
/linux-6.15/arch/s390/kvm/vsie.c
/linux-6.15/arch/s390/pci/pci.c
/linux-6.15/arch/sh/boot/dts/Makefile
/linux-6.15/arch/x86/boot/compressed/head_64.S
/linux-6.15/arch/x86/events/core.c
/linux-6.15/arch/x86/events/intel/core.c
/linux-6.15/arch/x86/events/perf_event.h
/linux-6.15/arch/x86/ia32/ia32_aout.c
/linux-6.15/arch/x86/include/asm/intel-family.h
/linux-6.15/arch/x86/include/asm/kvm_host.h
/linux-6.15/arch/x86/include/asm/pgtable.h
/linux-6.15/arch/x86/include/asm/uv/bios.h
/linux-6.15/arch/x86/kernel/cpu/mce/core.c
/linux-6.15/arch/x86/kvm/cpuid.c
/linux-6.15/arch/x86/kvm/mmu.c
/linux-6.15/arch/x86/kvm/vmx/nested.c
/linux-6.15/arch/x86/kvm/vmx/vmx.c
/linux-6.15/arch/x86/kvm/vmx/vmx.h
/linux-6.15/arch/x86/kvm/x86.c
/linux-6.15/arch/x86/mm/extable.c
/linux-6.15/arch/x86/mm/pageattr.c
/linux-6.15/arch/x86/platform/uv/bios_uv.c
/linux-6.15/block/blk-iolatency.c
/linux-6.15/block/blk-mq-debugfs.c
/linux-6.15/block/blk-mq.c
/linux-6.15/block/blk-mq.h
/linux-6.15/crypto/af_alg.c
/linux-6.15/drivers/acpi/bus.c
/linux-6.15/drivers/android/binder.c
/linux-6.15/drivers/android/binder_internal.h
/linux-6.15/drivers/android/binderfs.c
/linux-6.15/drivers/ata/libata-core.c
/linux-6.15/drivers/auxdisplay/ht16k33.c
/linux-6.15/drivers/base/cacheinfo.c
/linux-6.15/drivers/base/power/runtime.c
/linux-6.15/drivers/block/floppy.c
/linux-6.15/drivers/bus/ti-sysc.c
/linux-6.15/drivers/clk/at91/at91sam9x5.c
/linux-6.15/drivers/clk/at91/sama5d2.c
/linux-6.15/drivers/clk/at91/sama5d4.c
/linux-6.15/drivers/clk/sunxi-ng/ccu-sun6i-a31.c
/linux-6.15/drivers/clk/sunxi-ng/ccu-sun8i-v3s.c
/linux-6.15/drivers/clocksource/timer-ti-dm.c
/linux-6.15/drivers/cpufreq/scmi-cpufreq.c
/linux-6.15/drivers/crypto/ccree/cc_driver.c
/linux-6.15/drivers/crypto/ccree/cc_pm.c
/linux-6.15/drivers/crypto/ccree/cc_pm.h
/linux-6.15/drivers/dma/at_xdmac.c
/linux-6.15/drivers/dma/bcm2835-dma.c
/linux-6.15/drivers/dma/dmatest.c
/linux-6.15/drivers/dma/imx-dma.c
/linux-6.15/drivers/firmware/arm_scmi/bus.c
/linux-6.15/drivers/firmware/efi/efi.c
/linux-6.15/drivers/firmware/efi/libstub/arm-stub.c
/linux-6.15/drivers/firmware/efi/runtime-wrappers.c
/linux-6.15/drivers/fpga/stratix10-soc.c
/linux-6.15/drivers/gpio/gpio-mt7621.c
/linux-6.15/drivers/gpio/gpio-pxa.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/amdgpu_prime.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/nbio_v7_4.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c
/linux-6.15/drivers/gpu/drm/amd/amdgpu/soc15.c
/linux-6.15/drivers/gpu/drm/amd/amdkfd/kfd_crat.c
/linux-6.15/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
/linux-6.15/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
/linux-6.15/drivers/gpu/drm/amd/display/dc/dce/dce_clk_mgr.c
/linux-6.15/drivers/gpu/drm/amd/display/dc/dce100/dce100_hw_sequencer.h
/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/dce80_hw_sequencer.c
/linux-6.15/drivers/gpu/drm/amd/display/dc/dce80/dce80_resource.c
/linux-6.15/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
/linux-6.15/drivers/gpu/drm/amd/powerplay/hwmgr/smu10_hwmgr.c
/linux-6.15/drivers/gpu/drm/drm_lease.c
/linux-6.15/drivers/gpu/drm/drm_modes.c
/linux-6.15/drivers/gpu/drm/i915/i915_gem.c
/linux-6.15/drivers/gpu/drm/i915/i915_pmu.c
/linux-6.15/drivers/gpu/drm/i915/i915_pmu.h
/linux-6.15/drivers/gpu/drm/i915/i915_reg.h
/linux-6.15/drivers/gpu/drm/i915/intel_ddi.c
/linux-6.15/drivers/gpu/drm/i915/intel_display.c
/linux-6.15/drivers/gpu/drm/i915/intel_dp.c
/linux-6.15/drivers/gpu/drm/i915/intel_drv.h
/linux-6.15/drivers/gpu/drm/i915/intel_fbdev.c
/linux-6.15/drivers/gpu/drm/i915/intel_opregion.c
/linux-6.15/drivers/gpu/drm/i915/intel_ringbuffer.h
/linux-6.15/drivers/gpu/drm/i915/intel_sprite.c
/linux-6.15/drivers/gpu/drm/imx/imx-ldb.c
/linux-6.15/drivers/gpu/drm/imx/ipuv3-plane.c
/linux-6.15/drivers/gpu/drm/omapdrm/dss/dsi.c
/linux-6.15/drivers/gpu/drm/radeon/ci_dpm.c
/linux-6.15/drivers/gpu/drm/radeon/radeon_kms.c
/linux-6.15/drivers/gpu/drm/radeon/si_dpm.c
/linux-6.15/drivers/gpu/drm/rockchip/rockchip_rgb.c
/linux-6.15/drivers/gpu/drm/rockchip/rockchip_rgb.h
/linux-6.15/drivers/gpu/drm/scheduler/sched_entity.c
/linux-6.15/drivers/gpu/drm/sun4i/sun4i_tcon.c
/linux-6.15/drivers/gpu/drm/vkms/vkms_crc.c
/linux-6.15/drivers/gpu/drm/vkms/vkms_crtc.c
/linux-6.15/drivers/gpu/drm/vkms/vkms_drv.c
/linux-6.15/drivers/gpu/drm/vkms/vkms_drv.h
/linux-6.15/drivers/gpu/drm/vkms/vkms_gem.c
/linux-6.15/drivers/gpu/drm/vkms/vkms_output.c
/linux-6.15/drivers/gpu/drm/vkms/vkms_plane.c
/linux-6.15/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
/linux-6.15/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
/linux-6.15/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
/linux-6.15/drivers/gpu/ipu-v3/ipu-common.c
/linux-6.15/drivers/gpu/ipu-v3/ipu-pre.c
/linux-6.15/drivers/hid/hid-debug.c
/linux-6.15/drivers/hwmon/nct6775.c
/linux-6.15/drivers/i2c/busses/i2c-bcm2835.c
/linux-6.15/drivers/i2c/busses/i2c-cadence.c
/linux-6.15/drivers/i2c/busses/i2c-omap.c
/linux-6.15/drivers/iio/adc/axp288_adc.c
/linux-6.15/drivers/iio/adc/ti-ads8688.c
/linux-6.15/drivers/iio/chemical/atlas-ph-sensor.c
/linux-6.15/drivers/infiniband/hw/cxgb4/device.c
/linux-6.15/drivers/infiniband/ulp/srp/ib_srp.c
/linux-6.15/drivers/input/keyboard/Kconfig
/linux-6.15/drivers/input/keyboard/cap11xx.c
/linux-6.15/drivers/input/keyboard/matrix_keypad.c
/linux-6.15/drivers/input/keyboard/qt2160.c
/linux-6.15/drivers/input/keyboard/st-keyscan.c
/linux-6.15/drivers/input/misc/apanel.c
/linux-6.15/drivers/input/misc/bma150.c
/linux-6.15/drivers/input/misc/pwm-vibra.c
/linux-6.15/drivers/input/mouse/elan_i2c_core.c
/linux-6.15/drivers/input/mouse/elantech.c
/linux-6.15/drivers/input/serio/ps2-gpio.c
/linux-6.15/drivers/iommu/intel-iommu.c
/linux-6.15/drivers/irqchip/irq-gic-v3-its.c
/linux-6.15/drivers/irqchip/irq-mmp.c
/linux-6.15/drivers/isdn/mISDN/timerdev.c
/linux-6.15/drivers/mailbox/bcm-flexrm-mailbox.c
/linux-6.15/drivers/mailbox/mailbox.c
/linux-6.15/drivers/md/dm-crypt.c
/linux-6.15/drivers/md/dm-rq.c
/linux-6.15/drivers/md/dm-thin.c
/linux-6.15/drivers/md/dm.c
/linux-6.15/drivers/md/raid1.c
/linux-6.15/drivers/misc/mei/client.c
/linux-6.15/drivers/misc/mei/hw-me-regs.h
/linux-6.15/drivers/misc/mei/pci-me.c
/linux-6.15/drivers/misc/mic/vop/vop_main.c
/linux-6.15/drivers/mmc/core/block.c
/linux-6.15/drivers/mmc/host/meson-gx-mmc.c
/linux-6.15/drivers/mmc/host/sunxi-mmc.c
/linux-6.15/drivers/mtd/devices/powernv_flash.c
/linux-6.15/drivers/mtd/mtdcore.c
/linux-6.15/drivers/mtd/mtdpart.c
/linux-6.15/drivers/mtd/nand/raw/gpmi-nand/gpmi-lib.c
/linux-6.15/drivers/mtd/nand/raw/nand_base.c
/linux-6.15/drivers/mtd/nand/raw/nand_bbt.c
/linux-6.15/drivers/mtd/nand/spi/core.c
/linux-6.15/drivers/net/Kconfig
/linux-6.15/drivers/net/bonding/bond_main.c
/linux-6.15/drivers/net/dsa/b53/b53_common.c
/linux-6.15/drivers/net/dsa/b53/b53_priv.h
/linux-6.15/drivers/net/dsa/b53/b53_srab.c
/linux-6.15/drivers/net/dsa/bcm_sf2.c
/linux-6.15/drivers/net/dsa/mv88e6xxx/chip.c
/linux-6.15/drivers/net/dsa/mv88e6xxx/global1_atu.c
/linux-6.15/drivers/net/ethernet/amazon/ena/ena_netdev.c
/linux-6.15/drivers/net/ethernet/amazon/ena/ena_netdev.h
/linux-6.15/drivers/net/ethernet/atheros/atlx/atl2.c
/linux-6.15/drivers/net/ethernet/broadcom/bcmsysport.c
/linux-6.15/drivers/net/ethernet/broadcom/bcmsysport.h
/linux-6.15/drivers/net/ethernet/broadcom/bnxt/bnxt.c
/linux-6.15/drivers/net/ethernet/broadcom/bnxt/bnxt.h
/linux-6.15/drivers/net/ethernet/broadcom/sb1250-mac.c
/linux-6.15/drivers/net/ethernet/cavium/Kconfig
/linux-6.15/drivers/net/ethernet/cavium/thunder/nic.h
/linux-6.15/drivers/net/ethernet/cavium/thunder/nic_main.c
/linux-6.15/drivers/net/ethernet/cavium/thunder/nicvf_main.c
/linux-6.15/drivers/net/ethernet/cavium/thunder/thunder_bgx.c
/linux-6.15/drivers/net/ethernet/cavium/thunder/thunder_bgx.h
/linux-6.15/drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
/linux-6.15/drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.h
/linux-6.15/drivers/net/ethernet/cisco/enic/enic_main.c
/linux-6.15/drivers/net/ethernet/dec/tulip/de2104x.c
/linux-6.15/drivers/net/ethernet/freescale/fec_main.c
/linux-6.15/drivers/net/ethernet/freescale/fec_mpc52xx.c
/linux-6.15/drivers/net/ethernet/freescale/ucc_geth.c
/linux-6.15/drivers/net/ethernet/hisilicon/hns/hns_dsaf_main.c
/linux-6.15/drivers/net/ethernet/intel/i40e/i40e_main.c
/linux-6.15/drivers/net/ethernet/intel/i40e/i40e_txrx.c
/linux-6.15/drivers/net/ethernet/intel/i40e/i40e_xsk.c
/linux-6.15/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
/linux-6.15/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c
/linux-6.15/drivers/net/ethernet/marvell/mv643xx_eth.c
/linux-6.15/drivers/net/ethernet/marvell/mvneta.c
/linux-6.15/drivers/net/ethernet/marvell/skge.c
/linux-6.15/drivers/net/ethernet/marvell/sky2.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx4/en_rx.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/cmd.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en.h
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun.h
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.h
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en_main.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en_rep.h
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/en_tx.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/events.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/health.c
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.h
/linux-6.15/drivers/net/ethernet/mellanox/mlxsw/spectrum.c
/linux-6.15/drivers/net/ethernet/netronome/nfp/bpf/jit.c
/linux-6.15/drivers/net/ethernet/qlogic/qed/qed.h
/linux-6.15/drivers/net/ethernet/qlogic/qed/qed_iwarp.c
/linux-6.15/drivers/net/ethernet/qlogic/qed/qed_iwarp.h
/linux-6.15/drivers/net/ethernet/qlogic/qed/qed_l2.c
/linux-6.15/drivers/net/ethernet/qlogic/qed/qed_sp.h
/linux-6.15/drivers/net/ethernet/qlogic/qed/qed_sp_commands.c
/linux-6.15/drivers/net/ethernet/qlogic/qed/qed_spq.c
/linux-6.15/drivers/net/ethernet/qlogic/qede/qede.h
/linux-6.15/drivers/net/ethernet/qlogic/qede/qede_fp.c
/linux-6.15/drivers/net/ethernet/qlogic/qede/qede_main.c
/linux-6.15/drivers/net/ethernet/realtek/r8169.c
/linux-6.15/drivers/net/ethernet/sfc/ef10.c
/linux-6.15/drivers/net/ethernet/smsc/epic100.c
/linux-6.15/drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.c
/linux-6.15/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c
/linux-6.15/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
/linux-6.15/drivers/net/ethernet/sun/cassini.c
/linux-6.15/drivers/net/ethernet/sun/sunbmac.c
/linux-6.15/drivers/net/ethernet/sun/sunhme.c
/linux-6.15/drivers/net/ethernet/tehuti/tehuti.c
/linux-6.15/drivers/net/ethernet/ti/netcp_core.c
/linux-6.15/drivers/net/ethernet/via/via-velocity.c
/linux-6.15/drivers/net/fddi/defxx.c
/linux-6.15/drivers/net/geneve.c
/linux-6.15/drivers/net/ieee802154/mcr20a.c
/linux-6.15/drivers/net/ipvlan/ipvlan_main.c
/linux-6.15/drivers/net/phy/dp83640.c
/linux-6.15/drivers/net/phy/marvell.c
/linux-6.15/drivers/net/phy/marvell10g.c
/linux-6.15/drivers/net/phy/mdio_bus.c
/linux-6.15/drivers/net/phy/phy.c
/linux-6.15/drivers/net/phy/phylink.c
/linux-6.15/drivers/net/phy/realtek.c
/linux-6.15/drivers/net/phy/sfp-bus.c
/linux-6.15/drivers/net/phy/sfp.c
/linux-6.15/drivers/net/phy/sfp.h
/linux-6.15/drivers/net/phy/xilinx_gmii2rgmii.c
/linux-6.15/drivers/net/team/team.c
/linux-6.15/drivers/net/tun.c
/linux-6.15/drivers/net/usb/qmi_wwan.c
/linux-6.15/drivers/net/usb/r8152.c
/linux-6.15/drivers/net/virtio_net.c
/linux-6.15/drivers/net/vrf.c
/linux-6.15/drivers/net/vxlan.c
/linux-6.15/drivers/net/wan/dscc4.c
/linux-6.15/drivers/net/wan/fsl_ucc_hdlc.c
/linux-6.15/drivers/net/wireless/ath/ath10k/core.c
/linux-6.15/drivers/net/wireless/intel/iwlwifi/Kconfig
/linux-6.15/drivers/net/wireless/mac80211_hwsim.c
/linux-6.15/drivers/net/wireless/mediatek/mt76/mt76x0/eeprom.c
/linux-6.15/drivers/net/wireless/mediatek/mt76/mt76x0/eeprom.h
/linux-6.15/drivers/net/wireless/mediatek/mt76/mt76x0/phy.c
/linux-6.15/drivers/net/wireless/mediatek/mt76/mt76x0/usb.c
/linux-6.15/drivers/net/wireless/ti/wlcore/sdio.c
/linux-6.15/drivers/nvme/host/core.c
/linux-6.15/drivers/nvme/host/nvme.h
/linux-6.15/drivers/nvme/host/pci.c
/linux-6.15/drivers/pci/quirks.c
/linux-6.15/drivers/pinctrl/intel/pinctrl-cherryview.c
/linux-6.15/drivers/pinctrl/mediatek/Kconfig
/linux-6.15/drivers/pinctrl/meson/pinctrl-meson8b.c
/linux-6.15/drivers/pinctrl/pinctrl-mcp23s08.c
/linux-6.15/drivers/pinctrl/qcom/pinctrl-qcs404.c
/linux-6.15/drivers/pinctrl/sunxi/pinctrl-sun50i-h6.c
/linux-6.15/drivers/pinctrl/sunxi/pinctrl-sunxi.c
/linux-6.15/drivers/pinctrl/sunxi/pinctrl-sunxi.h
/linux-6.15/drivers/s390/block/dasd_eckd.c
/linux-6.15/drivers/s390/crypto/ap_bus.c
/linux-6.15/drivers/s390/net/qeth_core.h
/linux-6.15/drivers/s390/net/qeth_core_main.c
/linux-6.15/drivers/s390/net/qeth_l2_main.c
/linux-6.15/drivers/s390/net/qeth_l3_main.c
/linux-6.15/drivers/scsi/aic94xx/aic94xx_init.c
/linux-6.15/drivers/scsi/cxlflash/main.c
/linux-6.15/drivers/scsi/libfc/fc_rport.c
/linux-6.15/drivers/scsi/libiscsi.c
/linux-6.15/drivers/scsi/libsas/sas_expander.c
/linux-6.15/drivers/scsi/qla2xxx/qla_init.c
/linux-6.15/drivers/scsi/scsi_lib.c
/linux-6.15/drivers/scsi/sd.c
/linux-6.15/drivers/scsi/sd_zbc.c
/linux-6.15/drivers/soc/fsl/qbman/qman.c
/linux-6.15/drivers/staging/octeon/ethernet-mdio.c
/linux-6.15/drivers/staging/speakup/spk_ttyio.c
/linux-6.15/drivers/target/target_core_configfs.c
/linux-6.15/drivers/thermal/cpu_cooling.c
/linux-6.15/drivers/thermal/of-thermal.c
/linux-6.15/drivers/tty/serial/8250/8250_mtk.c
/linux-6.15/drivers/tty/serial/8250/8250_pci.c
/linux-6.15/drivers/tty/serial/serial_core.c
/linux-6.15/drivers/tty/serial/sh-sci.c
/linux-6.15/drivers/usb/dwc3/dwc3-exynos.c
/linux-6.15/drivers/usb/dwc3/gadget.c
/linux-6.15/drivers/usb/gadget/udc/net2272.c
/linux-6.15/drivers/usb/musb/musb_gadget.c
/linux-6.15/drivers/usb/musb/musbhsdma.c
/linux-6.15/drivers/usb/phy/Kconfig
/linux-6.15/drivers/usb/phy/phy-am335x.c
/linux-6.15/drivers/usb/typec/tcpm/tcpm.c
/linux-6.15/drivers/vhost/vhost.c
/linux-6.15/drivers/virtio/virtio_ring.c
/linux-6.15/fs/afs/cell.c
/linux-6.15/fs/aio.c
/linux-6.15/fs/binfmt_script.c
/linux-6.15/fs/buffer.c
/linux-6.15/fs/ceph/snap.c
/linux-6.15/fs/debugfs/inode.c
/linux-6.15/fs/ext4/fsync.c
/linux-6.15/fs/fuse/dev.c
/linux-6.15/fs/fuse/file.c
/linux-6.15/fs/fuse/inode.c
/linux-6.15/fs/gfs2/glops.c
/linux-6.15/fs/gfs2/log.c
/linux-6.15/fs/gfs2/lops.c
/linux-6.15/fs/gfs2/lops.h
/linux-6.15/fs/gfs2/ops_fstype.c
/linux-6.15/fs/gfs2/recovery.c
/linux-6.15/fs/gfs2/recovery.h
/linux-6.15/fs/gfs2/super.c
/linux-6.15/fs/inode.c
/linux-6.15/fs/namespace.c
/linux-6.15/fs/nfs/nfs4idmap.c
/linux-6.15/fs/nfs/write.c
/linux-6.15/fs/nfsd/nfsctl.c
/linux-6.15/fs/nfsd/vfs.c
/linux-6.15/fs/proc/base.c
/linux-6.15/fs/proc/task_mmu.c
/linux-6.15/fs/xfs/scrub/repair.c
/linux-6.15/fs/xfs/xfs_aops.c
/linux-6.15/fs/xfs/xfs_buf.c
/linux-6.15/include/asm-generic/shmparam.h
/linux-6.15/include/dt-bindings/clock/imx8mq-clock.h
/linux-6.15/include/keys/request_key_auth-type.h
/linux-6.15/include/keys/user-type.h
/linux-6.15/include/kvm/arm_vgic.h
/linux-6.15/include/linux/blktrace_api.h
/linux-6.15/include/linux/compiler_attributes.h
/linux-6.15/include/linux/efi.h
/linux-6.15/include/linux/filter.h
/linux-6.15/include/linux/hid-debug.h
/linux-6.15/include/linux/irqchip/arm-gic-v3.h
/linux-6.15/include/linux/key-type.h
/linux-6.15/include/linux/memblock.h
/linux-6.15/include/linux/mmc/card.h
/linux-6.15/include/linux/module.h
/linux-6.15/include/linux/netdev_features.h
/linux-6.15/include/linux/netdevice.h
/linux-6.15/include/linux/perf_event.h
/linux-6.15/include/linux/phy.h
/linux-6.15/include/linux/sched.h
/linux-6.15/include/linux/signal.h
/linux-6.15/include/linux/skbuff.h
/linux-6.15/include/linux/stmmac.h
/linux-6.15/include/linux/virtio_net.h
/linux-6.15/include/net/inetpeer.h
/linux-6.15/include/net/l3mdev.h
/linux-6.15/include/net/netfilter/nf_tables.h
/linux-6.15/include/net/phonet/pep.h
/linux-6.15/include/net/sock.h
/linux-6.15/include/net/xfrm.h
/linux-6.15/include/sound/compress_driver.h
/linux-6.15/include/sound/hda_codec.h
/linux-6.15/include/uapi/linux/inet_diag.h
/linux-6.15/include/uapi/linux/virtio_config.h
/linux-6.15/include/uapi/linux/virtio_ring.h
/linux-6.15/init/initramfs.c
/linux-6.15/init/main.c
/linux-6.15/kernel/bpf/btf.c
/linux-6.15/kernel/bpf/cgroup.c
/linux-6.15/kernel/bpf/hashtab.c
/linux-6.15/kernel/bpf/lpm_trie.c
/linux-6.15/kernel/bpf/percpu_freelist.c
/linux-6.15/kernel/bpf/percpu_freelist.h
/linux-6.15/kernel/bpf/stackmap.c
/linux-6.15/kernel/bpf/syscall.c
/linux-6.15/kernel/bpf/verifier.c
/linux-6.15/kernel/events/core.c
/linux-6.15/kernel/events/ring_buffer.c
/linux-6.15/kernel/futex.c
/linux-6.15/kernel/locking/rtmutex.c
/linux-6.15/kernel/relay.c
/linux-6.15/kernel/sched/psi.c
/linux-6.15/kernel/signal.c
/linux-6.15/kernel/trace/bpf_trace.c
/linux-6.15/kernel/trace/trace.c
/linux-6.15/kernel/trace/trace_kprobe.c
/linux-6.15/kernel/trace/trace_probe_tmpl.h
/linux-6.15/kernel/trace/trace_uprobe.c
/linux-6.15/lib/assoc_array.c
/linux-6.15/lib/crc32.c
/linux-6.15/lib/test_rhashtable.c
/linux-6.15/mm/debug.c
/linux-6.15/mm/gup.c
/linux-6.15/mm/kasan/Makefile
/linux-6.15/mm/kasan/common.c
/linux-6.15/mm/kasan/tags.c
/linux-6.15/mm/kmemleak.c
/linux-6.15/mm/maccess.c
/linux-6.15/mm/memblock.c
/linux-6.15/mm/memory_hotplug.c
/linux-6.15/mm/mempolicy.c
/linux-6.15/mm/page_alloc.c
/linux-6.15/mm/page_ext.c
/linux-6.15/mm/shmem.c
/linux-6.15/mm/slab.c
/linux-6.15/mm/slab.h
/linux-6.15/mm/slab_common.c
/linux-6.15/mm/slub.c
/linux-6.15/mm/swap.c
/linux-6.15/mm/util.c
/linux-6.15/mm/vmscan.c
/linux-6.15/net/batman-adv/bat_v_elp.c
/linux-6.15/net/batman-adv/hard-interface.c
/linux-6.15/net/batman-adv/soft-interface.c
/linux-6.15/net/bpf/test_run.c
/linux-6.15/net/bridge/br_multicast.c
/linux-6.15/net/ceph/messenger.c
/linux-6.15/net/compat.c
/linux-6.15/net/core/dev.c
/linux-6.15/net/core/filter.c
/linux-6.15/net/core/skbuff.c
/linux-6.15/net/core/skmsg.c
/linux-6.15/net/core/sock.c
/linux-6.15/net/dccp/ccid.h
/linux-6.15/net/dsa/master.c
/linux-6.15/net/dsa/port.c
/linux-6.15/net/dsa/slave.c
/linux-6.15/net/ipv4/esp4.c
/linux-6.15/net/ipv4/inet_diag.c
/linux-6.15/net/ipv4/inetpeer.c
/linux-6.15/net/ipv4/ip_gre.c
/linux-6.15/net/ipv4/netfilter/nf_nat_l3proto_ipv4.c
/linux-6.15/net/ipv4/netfilter/nf_nat_snmp_basic_main.c
/linux-6.15/net/ipv4/route.c
/linux-6.15/net/ipv4/tcp.c
/linux-6.15/net/ipv4/tcp_ipv4.c
/linux-6.15/net/ipv4/tcp_output.c
/linux-6.15/net/ipv4/udp.c
/linux-6.15/net/ipv6/addrconf.c
/linux-6.15/net/ipv6/esp6.c
/linux-6.15/net/ipv6/fou6.c
/linux-6.15/net/ipv6/ip6_gre.c
/linux-6.15/net/ipv6/netfilter.c
/linux-6.15/net/ipv6/netfilter/nf_nat_l3proto_ipv6.c
/linux-6.15/net/ipv6/route.c
/linux-6.15/net/ipv6/seg6.c
/linux-6.15/net/ipv6/seg6_iptunnel.c
/linux-6.15/net/ipv6/sit.c
/linux-6.15/net/ipv6/udp.c
/linux-6.15/net/ipv6/xfrm6_tunnel.c
/linux-6.15/net/key/af_key.c
/linux-6.15/net/l2tp/l2tp_core.c
/linux-6.15/net/l2tp/l2tp_core.h
/linux-6.15/net/l2tp/l2tp_ip.c
/linux-6.15/net/l2tp/l2tp_ip6.c
/linux-6.15/net/mac80211/agg-tx.c
/linux-6.15/net/mac80211/cfg.c
/linux-6.15/net/mac80211/main.c
/linux-6.15/net/mac80211/mesh.h
/linux-6.15/net/mac80211/mesh_pathtbl.c
/linux-6.15/net/mac80211/rx.c
/linux-6.15/net/mac80211/tx.c
/linux-6.15/net/mac80211/util.c
/linux-6.15/net/netfilter/ipvs/Kconfig
/linux-6.15/net/netfilter/ipvs/ip_vs_core.c
/linux-6.15/net/netfilter/ipvs/ip_vs_ctl.c
/linux-6.15/net/netfilter/nf_conntrack_core.c
/linux-6.15/net/netfilter/nf_tables_api.c
/linux-6.15/net/netfilter/nft_compat.c
/linux-6.15/net/netfilter/nft_dynset.c
/linux-6.15/net/netfilter/nft_immediate.c
/linux-6.15/net/netfilter/nft_lookup.c
/linux-6.15/net/netfilter/nft_objref.c
/linux-6.15/net/netfilter/x_tables.c
/linux-6.15/net/packet/af_packet.c
/linux-6.15/net/phonet/pep.c
/linux-6.15/net/rds/bind.c
/linux-6.15/net/rxrpc/recvmsg.c
/linux-6.15/net/sched/cls_flower.c
/linux-6.15/net/sched/cls_tcindex.c
/linux-6.15/net/sched/sch_generic.c
/linux-6.15/net/sctp/diag.c
/linux-6.15/net/sctp/offload.c
/linux-6.15/net/sctp/socket.c
/linux-6.15/net/sctp/stream.c
/linux-6.15/net/sctp/transport.c
/linux-6.15/net/smc/af_smc.c
/linux-6.15/net/smc/smc.h
/linux-6.15/net/smc/smc_cdc.c
/linux-6.15/net/smc/smc_cdc.h
/linux-6.15/net/smc/smc_clc.c
/linux-6.15/net/smc/smc_close.c
/linux-6.15/net/smc/smc_core.c
/linux-6.15/net/smc/smc_core.h
/linux-6.15/net/smc/smc_ib.c
/linux-6.15/net/smc/smc_llc.c
/linux-6.15/net/smc/smc_pnet.c
/linux-6.15/net/smc/smc_tx.c
/linux-6.15/net/smc/smc_wr.c
/linux-6.15/net/smc/smc_wr.h
/linux-6.15/net/socket.c
/linux-6.15/net/sunrpc/auth_gss/gss_krb5_seqnum.c
/linux-6.15/net/sunrpc/debugfs.c
/linux-6.15/net/sunrpc/xprtrdma/svc_rdma_sendto.c
/linux-6.15/net/sunrpc/xprtrdma/svc_rdma_transport.c
/linux-6.15/net/sunrpc/xprtrdma/verbs.c
/linux-6.15/net/tipc/link.c
/linux-6.15/net/tipc/msg.h
/linux-6.15/net/tipc/node.c
/linux-6.15/net/tipc/socket.c
/linux-6.15/net/unix/af_unix.c
/linux-6.15/net/unix/diag.c
/linux-6.15/net/vmw_vsock/virtio_transport.c
/linux-6.15/net/vmw_vsock/vmci_transport.c
/linux-6.15/net/wireless/ap.c
/linux-6.15/net/wireless/core.c
/linux-6.15/net/wireless/core.h
/linux-6.15/net/wireless/nl80211.c
/linux-6.15/net/wireless/pmsr.c
/linux-6.15/net/wireless/sme.c
/linux-6.15/net/wireless/util.c
/linux-6.15/net/x25/af_x25.c
/linux-6.15/net/xdp/xdp_umem.c
/linux-6.15/net/xdp/xsk.c
/linux-6.15/net/xfrm/xfrm_interface.c
/linux-6.15/net/xfrm/xfrm_policy.c
/linux-6.15/net/xfrm/xfrm_state.c
/linux-6.15/net/xfrm/xfrm_user.c
/linux-6.15/samples/mei/mei-amt-version.c
/linux-6.15/scripts/kallsyms.c
/linux-6.15/security/keys/internal.h
/linux-6.15/security/keys/key.c
/linux-6.15/security/keys/keyctl.c
/linux-6.15/security/keys/keyring.c
/linux-6.15/security/keys/proc.c
/linux-6.15/security/keys/process_keys.c
/linux-6.15/security/keys/request_key.c
/linux-6.15/security/keys/request_key_auth.c
/linux-6.15/security/lsm_audit.c
/linux-6.15/sound/core/pcm_lib.c
/linux-6.15/sound/pci/hda/hda_bind.c
/linux-6.15/sound/pci/hda/hda_intel.c
/linux-6.15/sound/pci/hda/patch_ca0132.c
/linux-6.15/sound/pci/hda/patch_conexant.c
/linux-6.15/sound/pci/hda/patch_realtek.c
/linux-6.15/sound/soc/codecs/hdmi-codec.c
/linux-6.15/sound/soc/codecs/rt5682.c
/linux-6.15/sound/soc/generic/simple-card.c
/linux-6.15/sound/soc/samsung/i2s.c
/linux-6.15/sound/soc/sh/rcar/core.c
/linux-6.15/sound/soc/sh/rcar/ssi.c
/linux-6.15/sound/soc/sh/rcar/ssiu.c
/linux-6.15/sound/soc/soc-core.c
/linux-6.15/sound/soc/soc-dapm.c
/linux-6.15/sound/soc/soc-topology.c
/linux-6.15/sound/usb/pcm.c
/linux-6.15/sound/usb/quirks.c
/linux-6.15/tools/bpf/bpftool/common.c
/linux-6.15/tools/bpf/bpftool/map.c
/linux-6.15/tools/bpf/bpftool/prog.c
/linux-6.15/tools/iio/iio_generic_buffer.c
/linux-6.15/tools/include/uapi/asm/bitsperlong.h
/linux-6.15/tools/lib/traceevent/event-parse.c
/linux-6.15/tools/perf/builtin-report.c
/linux-6.15/tools/perf/builtin-script.c
export-to-sqlite.py
/linux-6.15/tools/perf/util/auxtrace.c
/linux-6.15/tools/perf/util/db-export.c
/linux-6.15/tools/perf/util/db-export.h
/linux-6.15/tools/perf/util/intel-pt.c
/linux-6.15/tools/perf/util/probe-event.c
/linux-6.15/tools/perf/util/scripting-engines/trace-event-python.c
/linux-6.15/tools/perf/util/thread-stack.c
/linux-6.15/tools/perf/util/thread-stack.h
/linux-6.15/tools/perf/util/time-utils.c
/linux-6.15/tools/perf/util/time-utils.h
/linux-6.15/tools/testing/selftests/Makefile
/linux-6.15/tools/testing/selftests/bpf/bpf_util.h
/linux-6.15/tools/testing/selftests/bpf/test_btf.c
/linux-6.15/tools/testing/selftests/bpf/test_lpm_map.c
/linux-6.15/tools/testing/selftests/filesystems/binderfs/.gitignore
/linux-6.15/tools/testing/selftests/filesystems/binderfs/Makefile
/linux-6.15/tools/testing/selftests/filesystems/binderfs/binderfs_test.c
/linux-6.15/tools/testing/selftests/filesystems/binderfs/config
/linux-6.15/tools/testing/selftests/net/fib_tests.sh
/linux-6.15/tools/testing/selftests/netfilter/Makefile
/linux-6.15/tools/testing/selftests/netfilter/config
/linux-6.15/tools/testing/selftests/netfilter/nft_nat.sh
/linux-6.15/tools/testing/selftests/networking/timestamping/Makefile
/linux-6.15/virt/kvm/arm/arm.c
/linux-6.15/virt/kvm/arm/mmu.c
/linux-6.15/virt/kvm/arm/psci.c
/linux-6.15/virt/kvm/arm/vgic/vgic-debug.c
/linux-6.15/virt/kvm/arm/vgic/vgic-init.c
/linux-6.15/virt/kvm/arm/vgic/vgic-its.c
/linux-6.15/virt/kvm/arm/vgic/vgic-mmio-v2.c
/linux-6.15/virt/kvm/arm/vgic/vgic-mmio-v3.c
/linux-6.15/virt/kvm/arm/vgic/vgic-mmio.c
/linux-6.15/virt/kvm/arm/vgic/vgic-v2.c
/linux-6.15/virt/kvm/arm/vgic/vgic-v3.c
/linux-6.15/virt/kvm/arm/vgic/vgic.c
/linux-6.15/virt/kvm/kvm_main.c
de667cce22-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to syscall-counts-by-pid.py

Support both Python2 and Python3 in the syscall-counts-by-pid.py script

There may be differences in the ordering of output lines

perf script python: Add Python3 support to syscall-counts-by-pid.py

Support both Python2 and Python3 in the syscall-counts-by-pid.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

1d1b0dbb22-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to syscall-counts.py

Support both Python2 and Python3 in the syscall-counts.py script

There may be differences in the ordering of output lines due to
differe

perf script python: Add Python3 support to syscall-counts.py

Support both Python2 and Python3 in the syscall-counts.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

e985bf7622-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to stat-cpi.py

Support both Python2 and Python3 in the stat-cpi.py script

There may be differences in the ordering of output lines due to
differences in dict

perf script python: Add Python3 support to stat-cpi.py

Support both Python2 and Python3 in the stat-cpi.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Seeteena Thoufeek <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Tony Jones <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

6d22d99922-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to stackcollapse.py

Support both Python2 and Python3 in the stackcollapse.py script

There may be differences in the ordering of output lines due to
differenc

perf script python: Add Python3 support to stackcollapse.py

Support both Python2 and Python3 in the stackcollapse.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Cc: Paolo Bonzini <[email protected]> <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

ee75a89622-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to sctop.py

Support both Python2 and Python3 in the sctop.py script

There may be differences in the ordering of output lines due to
differences in dictionary

perf script python: Add Python3 support to sctop.py

Support both Python2 and Python3 in the sctop.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Cc: Tom Zanussi <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

118af5bf22-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to powerpc-hcalls.py

Support both Python2 and Python3 in the powerpc-hcalls.py script

There may be differences in the ordering of output lines due to
differe

perf script python: Add Python3 support to powerpc-hcalls.py

Support both Python2 and Python3 in the powerpc-hcalls.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Cc: Ravi Bangoria <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

8c42b96022-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to net_dropmonitor.py

Support both Python2 and Python3 in the net_dropmonitor.py script

There may be differences in the ordering of output lines due to
diffe

perf script python: Add Python3 support to net_dropmonitor.py

Support both Python2 and Python3 in the net_dropmonitor.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Acked-by: Neil Horman <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

e4d053dd22-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to mem-phys-addr.py

Support both Python2 and Python3 in the mem-phys-addr.py script

There may be differences in the ordering of output lines due to
differenc

perf script python: Add Python3 support to mem-phys-addr.py

Support both Python2 and Python3 in the mem-phys-addr.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

9b2700ef22-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to failed-syscalls-by-pid.py

Support both Python2 and Python3 in the failed-syscalls-by-pid.py script

There may be differences in the ordering of output line

perf script python: Add Python3 support to failed-syscalls-by-pid.py

Support both Python2 and Python3 in the failed-syscalls-by-pid.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2 version
is now v2.6

Signed-off-by: Tony Jones <[email protected]>
Cc: Tom Zanussi <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

02b03ec322-Feb-2019 Tony Jones <[email protected]>

perf script python: Add Python3 support to netdev-times.py

Support both Python2 and Python3 in the netdev-times.py script

There may be differences in the ordering of output lines due to
differences

perf script python: Add Python3 support to netdev-times.py

Support both Python2 and Python3 in the netdev-times.py script

There may be differences in the ordering of output lines due to
differences in dictionary ordering etc. However the format within lines
should be unchanged.

The use of 'from __future__' implies the minimum supported Python2
version is now v2.6.

Signed-off-by: Tony Jones <[email protected]>
Cc: Sanagi Koki <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Seeteena Thoufeek <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

cd35801222-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Add top calls report

Add a new report to display top calls by elapsed time. It displays calls
in descending order of time elapsed between when the functi

perf scripts python: exported-sql-viewer.py: Add top calls report

Add a new report to display top calls by elapsed time. It displays calls
in descending order of time elapsed between when the function was called
and when it returned.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

fc2c77aa22-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Remove no selection error

If no selection is made on the 'Selected branches' dialog, then the
output is the same as the 'All branches' report. That is no

perf scripts python: exported-sql-viewer.py: Remove no selection error

If no selection is made on the 'Selected branches' dialog, then the
output is the same as the 'All branches' report. That is not really an
error, and is not desirable for future reports, so remove it.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

0d5f8f2322-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Remove SQLTableDialogDataItem

Remove SQLTableDialogDataItem as it is no longer used.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Ols

perf scripts python: exported-sql-viewer.py: Remove SQLTableDialogDataItem

Remove SQLTableDialogDataItem as it is no longer used.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

1c3ca1b322-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Create new dialog data item classes

Create new dialog data item classes to replace SQLTableDialogDataItem.
This separates out different dialog data items

perf scripts python: exported-sql-viewer.py: Create new dialog data item classes

Create new dialog data item classes to replace SQLTableDialogDataItem.
This separates out different dialog data items and makes it easier to
add new ones. SQLTableDialogDataItem is removed in a separate patch
because it makes the diff more readable.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

947cc38d22-Feb-2019 Adrian Hunter <[email protected]>

perf scripts python: exported-sql-viewer.py: Move report name into ReportVars

The report name is a report variable so move it into into ReportVars.

Signed-off-by: Adrian Hunter <adrian.hunter@intel

perf scripts python: exported-sql-viewer.py: Move report name into ReportVars

The report name is a report variable so move it into into ReportVars.

Signed-off-by: Adrian Hunter <[email protected]>
Cc: Jiri Olsa <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>

show more ...

123456789