History log of /openbmc/linux/fs/tracefs/ (Results 1 – 25 of 113)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
cc6f5aa102-May-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Do not treat events directory different than other directories

commit 22e61e15af731dbe46704c775d2335e56fcef4e9 upstream.

Treat the events directory the same as other directories when it co

eventfs: Do not treat events directory different than other directories

commit 22e61e15af731dbe46704c775d2335e56fcef4e9 upstream.

Treat the events directory the same as other directories when it comes to
permissions. The events directory was considered different because it's
dentry is persistent, whereas the other directory dentries are created
when accessed. But the way tracefs now does its ownership by using the
root dentry's permissions as the default permissions, the events directory
can get out of sync when a remount is performed setting the group and user
permissions.

Remove the special case for the events directory on setting the
attributes. This allows the updates caused by remount to work properly as
well as simplifies the code.

Link: https://lore.kernel.org/linux-trace-kernel/20240502200906.002923579@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Fixes: 8186fff7ab649 ("tracefs/eventfs: Use root and instance inodes as default ownership")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

0c56915c02-May-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

tracefs: Still use mount point as default permissions for instances

commit 6599bd5517be66c8344f869f3ca3a91bc10f2b9e upstream.

If the instances directory's permissions were never change, then have i

tracefs: Still use mount point as default permissions for instances

commit 6599bd5517be66c8344f869f3ca3a91bc10f2b9e upstream.

If the instances directory's permissions were never change, then have it
and its children use the mount point permissions as the default.

Currently, the permissions of instance directories are determined by the
instance directory's permissions itself. But if the tracefs file system is
remounted and changes the permissions, the instance directory and its
children should use the new permission.

But because both the instance directory and its children use the instance
directory's inode for permissions, it misses the update.

To demonstrate this:

# cd /sys/kernel/tracing/
# mkdir instances/foo
# ls -ld instances/foo
drwxr-x--- 5 root root 0 May 1 19:07 instances/foo
# ls -ld instances
drwxr-x--- 3 root root 0 May 1 18:57 instances
# ls -ld current_tracer
-rw-r----- 1 root root 0 May 1 18:57 current_tracer

# mount -o remount,gid=1002 .
# ls -ld instances
drwxr-x--- 3 root root 0 May 1 18:57 instances
# ls -ld instances/foo/
drwxr-x--- 5 root root 0 May 1 19:07 instances/foo/
# ls -ld current_tracer
-rw-r----- 1 root lkp 0 May 1 18:57 current_tracer

Notice that changing the group id to that of "lkp" did not affect the
instances directory nor its children. It should have been:

# ls -ld current_tracer
-rw-r----- 1 root root 0 May 1 19:19 current_tracer
# ls -ld instances/foo/
drwxr-x--- 5 root root 0 May 1 19:25 instances/foo/
# ls -ld instances
drwxr-x--- 3 root root 0 May 1 19:19 instances

# mount -o remount,gid=1002 .
# ls -ld current_tracer
-rw-r----- 1 root lkp 0 May 1 19:19 current_tracer
# ls -ld instances
drwxr-x--- 3 root lkp 0 May 1 19:19 instances
# ls -ld instances/foo/
drwxr-x--- 5 root lkp 0 May 1 19:25 instances/foo/

Where all files were updated by the remount gid update.

Link: https://lore.kernel.org/linux-trace-kernel/20240502200905.686838327@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Fixes: 8186fff7ab649 ("tracefs/eventfs: Use root and instance inodes as default ownership")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

5f91fc8202-May-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

tracefs: Reset permissions on remount if permissions are options

commit baa23a8d4360d981a49913841a726edede5cdd54 upstream.

There's an inconsistency with the way permissions are handled in tracefs.

tracefs: Reset permissions on remount if permissions are options

commit baa23a8d4360d981a49913841a726edede5cdd54 upstream.

There's an inconsistency with the way permissions are handled in tracefs.
Because the permissions are generated when accessed, they default to the
root inode's permission if they were never set by the user. If the user
sets the permissions, then a flag is set and the permissions are saved via
the inode (for tracefs files) or an internal attribute field (for
eventfs).

But if a remount happens that specify the permissions, all the files that
were not changed by the user gets updated, but the ones that were are not.
If the user were to remount the file system with a given permission, then
all files and directories within that file system should be updated.

This can cause security issues if a file's permission was updated but the
admin forgot about it. They could incorrectly think that remounting with
permissions set would update all files, but miss some.

For example:

# cd /sys/kernel/tracing
# chgrp 1002 current_tracer
# ls -l
[..]
-rw-r----- 1 root root 0 May 1 21:25 buffer_size_kb
-rw-r----- 1 root root 0 May 1 21:25 buffer_subbuf_size_kb
-r--r----- 1 root root 0 May 1 21:25 buffer_total_size_kb
-rw-r----- 1 root lkp 0 May 1 21:25 current_tracer
-rw-r----- 1 root root 0 May 1 21:25 dynamic_events
-r--r----- 1 root root 0 May 1 21:25 dyn_ftrace_total_info
-r--r----- 1 root root 0 May 1 21:25 enabled_functions

Where current_tracer now has group "lkp".

# mount -o remount,gid=1001 .
# ls -l
-rw-r----- 1 root tracing 0 May 1 21:25 buffer_size_kb
-rw-r----- 1 root tracing 0 May 1 21:25 buffer_subbuf_size_kb
-r--r----- 1 root tracing 0 May 1 21:25 buffer_total_size_kb
-rw-r----- 1 root lkp 0 May 1 21:25 current_tracer
-rw-r----- 1 root tracing 0 May 1 21:25 dynamic_events
-r--r----- 1 root tracing 0 May 1 21:25 dyn_ftrace_total_info
-r--r----- 1 root tracing 0 May 1 21:25 enabled_functions

Everything changed but the "current_tracer".

Add a new link list that keeps track of all the tracefs_inodes which has
the permission flags that tell if the file/dir should use the root inode's
permission or not. Then on remount, clear all the flags so that the
default behavior of using the root inode's permission is done for all
files and directories.

Link: https://lore.kernel.org/linux-trace-kernel/20240502200905.529542160@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Fixes: 8186fff7ab649 ("tracefs/eventfs: Use root and instance inodes as default ownership")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...


/openbmc/linux/Documentation/ABI/testing/sysfs-devices-system-cpu
/openbmc/linux/Documentation/admin-guide/hw-vuln/index.rst
/openbmc/linux/Documentation/admin-guide/hw-vuln/reg-file-data-sampling.rst
/openbmc/linux/Documentation/admin-guide/hw-vuln/spectre.rst
/openbmc/linux/Documentation/admin-guide/kdump/vmcoreinfo.rst
/openbmc/linux/Documentation/admin-guide/kernel-parameters.txt
/openbmc/linux/Documentation/admin-guide/sysctl/net.rst
/openbmc/linux/Documentation/arch/ia64/features.rst
/openbmc/linux/Documentation/arch/x86/amd-memory-encryption.rst
/openbmc/linux/Documentation/arch/x86/mds.rst
/openbmc/linux/Documentation/conf.py
/openbmc/linux/Documentation/devicetree/bindings/display/msm/qcom,mdss.yaml
/openbmc/linux/Documentation/devicetree/bindings/iio/health/maxim,max30102.yaml
/openbmc/linux/Documentation/devicetree/bindings/net/mediatek,net.yaml
/openbmc/linux/Documentation/filesystems/overlayfs.rst
/openbmc/linux/Documentation/networking/device_drivers/ethernet/amazon/ena.rst
/openbmc/linux/Documentation/userspace-api/media/mediactl/media-types.rst
/openbmc/linux/MAINTAINERS
/openbmc/linux/Makefile
/openbmc/linux/arch/Kconfig
/openbmc/linux/arch/arc/boot/dts/hsdk.dts
/openbmc/linux/arch/arm/Kconfig
/openbmc/linux/arch/arm/boot/dts/amazon/alpine.dtsi
/openbmc/linux/arch/arm/boot/dts/arm/arm-realview-pb1176.dts
/openbmc/linux/arch/arm/boot/dts/aspeed/aspeed-bmc-facebook-bletchley.dts
/openbmc/linux/arch/arm/boot/dts/aspeed/aspeed-bmc-facebook-wedge400.dts
/openbmc/linux/arch/arm/boot/dts/aspeed/aspeed-bmc-opp-tacoma.dts
/openbmc/linux/arch/arm/boot/dts/aspeed/aspeed-g4.dtsi
/openbmc/linux/arch/arm/boot/dts/aspeed/aspeed-g5.dtsi
/openbmc/linux/arch/arm/boot/dts/aspeed/aspeed-g6.dtsi
/openbmc/linux/arch/arm/boot/dts/aspeed/ast2600-facebook-netbmc-common.dtsi
/openbmc/linux/arch/arm/boot/dts/broadcom/bcm-cygnus.dtsi
/openbmc/linux/arch/arm/boot/dts/broadcom/bcm-hr2.dtsi
/openbmc/linux/arch/arm/boot/dts/broadcom/bcm-nsp.dtsi
/openbmc/linux/arch/arm/boot/dts/intel/ixp/intel-ixp42x-gateway-7001.dts
/openbmc/linux/arch/arm/boot/dts/intel/ixp/intel-ixp42x-goramo-multilink.dts
/openbmc/linux/arch/arm/boot/dts/marvell/kirkwood-l-50.dts
/openbmc/linux/arch/arm/boot/dts/marvell/mmp2-brownstone.dts
/openbmc/linux/arch/arm/boot/dts/microchip/at91-sama7g5ek.dts
/openbmc/linux/arch/arm/boot/dts/nuvoton/nuvoton-wpcm450.dtsi
/openbmc/linux/arch/arm/boot/dts/nvidia/tegra30-apalis-v1.1.dtsi
/openbmc/linux/arch/arm/boot/dts/nvidia/tegra30-apalis.dtsi
/openbmc/linux/arch/arm/boot/dts/nvidia/tegra30-colibri.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6dl-yapp4-common.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6q-b850v3.dts
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6q-bx50v3.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6qdl-apalis.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6qdl-colibri.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6qdl-emcon.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6qdl-phytec-pfla02.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6qdl-phytec-phycore-som.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx6ull-tarragon-common.dtsi
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx7d-flex-concentrator.dts
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx7d-pico-dwarf.dts
/openbmc/linux/arch/arm/boot/dts/nxp/imx/imx7s-warp.dts
/openbmc/linux/arch/arm/boot/dts/nxp/vf/vf610-zii-dev-rev-b.dts
/openbmc/linux/arch/arm/boot/dts/qcom/qcom-msm8974.dtsi
/openbmc/linux/arch/arm/boot/dts/qcom/qcom-sdx55.dtsi
/openbmc/linux/arch/arm/boot/dts/renesas/r8a73a4-ape6evm.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a73a4.dtsi
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7790-lager.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7790-stout.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7791-koelsch.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7791-porter.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7792-blanche.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7793-gose.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7794-alt.dts
/openbmc/linux/arch/arm/boot/dts/renesas/r8a7794-silk.dts
/openbmc/linux/arch/arm/boot/dts/rockchip/rk322x.dtsi
/openbmc/linux/arch/arm/boot/dts/rockchip/rk3288.dtsi
/openbmc/linux/arch/arm/boot/dts/rockchip/rv1108.dtsi
/openbmc/linux/arch/arm/boot/dts/st/stm32429i-eval.dts
/openbmc/linux/arch/arm/boot/dts/st/stm32mp157c-dk2.dts
/openbmc/linux/arch/arm/boot/dts/ti/omap/am335x-moxa-uc-2100-common.dtsi
/openbmc/linux/arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dts
/openbmc/linux/arch/arm/configs/imx_v6_v7_defconfig
/openbmc/linux/arch/arm/crypto/sha256_glue.c
/openbmc/linux/arch/arm/crypto/sha512-glue.c
/openbmc/linux/arch/arm/include/asm/mman.h
/openbmc/linux/arch/arm/kernel/Makefile
/openbmc/linux/arch/arm/kernel/iwmmxt.S
/openbmc/linux/arch/arm/kernel/sleep.S
/openbmc/linux/arch/arm/mach-ep93xx/core.c
/openbmc/linux/arch/arm/mach-omap2/board-n8x0.c
/openbmc/linux/arch/arm/mach-omap2/pdata-quirks.c
/openbmc/linux/arch/arm/mm/flush.c
/openbmc/linux/arch/arm64/Kconfig
/openbmc/linux/arch/arm64/boot/dts/allwinner/sun50i-h6-beelink-gs1.dts
/openbmc/linux/arch/arm64/boot/dts/allwinner/sun50i-h6-tanix.dtsi
/openbmc/linux/arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi
/openbmc/linux/arch/arm64/boot/dts/amazon/alpine-v2.dtsi
/openbmc/linux/arch/arm64/boot/dts/amazon/alpine-v3.dtsi
/openbmc/linux/arch/arm64/boot/dts/broadcom/bcmbca/bcm4908.dtsi
/openbmc/linux/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi
/openbmc/linux/arch/arm64/boot/dts/broadcom/stingray/stingray.dtsi
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8-ss-conn.dtsi
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8-ss-dma.dtsi
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8-ss-lsio.dtsi
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mm-kontron-bl-osm-s.dts
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mm-kontron-bl.dts
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mm-kontron-sl.dtsi
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mm-venice-gw71xx.dtsi
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mp-data-modul-edm-sbc.dts
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mp-evk.dts
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8mp-tqma8mpql-mba8mpxl.dts
/openbmc/linux/arch/arm64/boot/dts/freescale/imx8qm-ss-dma.dtsi
/openbmc/linux/arch/arm64/boot/dts/lg/lg1312.dtsi
/openbmc/linux/arch/arm64/boot/dts/lg/lg1313.dtsi
/openbmc/linux/arch/arm64/boot/dts/marvell/armada-37xx.dtsi
/openbmc/linux/arch/arm64/boot/dts/marvell/armada-ap80x.dtsi
/openbmc/linux/arch/arm64/boot/dts/marvell/armada-cp11x.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt2712-evb.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt2712e.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt7622.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt7986a-bananapi-bpi-r3.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt7986a-rfb.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt7986a.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt7986b-rfb.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8183-kukui-kakadu.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8183-kukui-kodama.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8183.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8186.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8192-asurada.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8192.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8195-cherry-tomato-r1.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8195-cherry-tomato-r2.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8195-cherry-tomato-r3.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8195-cherry.dtsi
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8195-demo.dts
/openbmc/linux/arch/arm64/boot/dts/mediatek/mt8195.dtsi
/openbmc/linux/arch/arm64/boot/dts/nvidia/tegra234-p3737-0000+p3701-0000.dts
/openbmc/linux/arch/arm64/boot/dts/qcom/ipq6018.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/ipq8074.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/qcm2290.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sa8155p-adp.dts
/openbmc/linux/arch/arm64/boot/dts/qcom/sa8540p.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sc7180-trogdor.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sc7280.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sc8180x.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
/openbmc/linux/arch/arm64/boot/dts/qcom/sc8280xp.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sdm845-db845c.dts
/openbmc/linux/arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sdm845.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sm6115.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sm8150.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sm8450.dtsi
/openbmc/linux/arch/arm64/boot/dts/qcom/sm8550-mtp.dts
/openbmc/linux/arch/arm64/boot/dts/qcom/sm8550-qrd.dts
/openbmc/linux/arch/arm64/boot/dts/qcom/sm8550.dtsi
/openbmc/linux/arch/arm64/boot/dts/renesas/r8a779a0.dtsi
/openbmc/linux/arch/arm64/boot/dts/renesas/r8a779g0.dtsi
/openbmc/linux/arch/arm64/boot/dts/renesas/r9a07g043u.dtsi
/openbmc/linux/arch/arm64/boot/dts/renesas/r9a07g044.dtsi
/openbmc/linux/arch/arm64/boot/dts/renesas/r9a07g054.dtsi
/openbmc/linux/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi
/openbmc/linux/arch/arm64/boot/dts/rockchip/px30.dtsi
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3328.dtsi
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3399.dtsi
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dts
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk356x.dtsi
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dts
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dts
/openbmc/linux/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am62p.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am64-phycore-som.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am642-evm.dts
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am642-phyboard-electra-rdk.dts
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am642-sk.dts
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am642-tqma64xxl-mbax4xxl.dts
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am642-tqma64xxl.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-am65-main.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dts
/openbmc/linux/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
/openbmc/linux/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
/openbmc/linux/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
/openbmc/linux/arch/arm64/boot/dts/ti/k3-j784s4-mcu-wakeup.dtsi
/openbmc/linux/arch/arm64/crypto/aes-neonbs-glue.c
/openbmc/linux/arch/arm64/include/asm/fpsimd.h
/openbmc/linux/arch/arm64/include/asm/tlbflush.h
/openbmc/linux/arch/arm64/kernel/fpsimd.c
/openbmc/linux/arch/arm64/kernel/head.S
/openbmc/linux/arch/arm64/kernel/ptrace.c
/openbmc/linux/arch/arm64/kernel/suspend.c
/openbmc/linux/arch/arm64/kvm/hyp/include/nvhe/gfp.h
/openbmc/linux/arch/arm64/kvm/hyp/pgtable.c
/openbmc/linux/arch/arm64/kvm/vgic/vgic-its.c
/openbmc/linux/arch/arm64/kvm/vgic/vgic-kvm-device.c
/openbmc/linux/arch/arm64/mm/pageattr.c
/openbmc/linux/arch/arm64/net/bpf_jit_comp.c
/openbmc/linux/arch/hexagon/kernel/vmlinux.lds.S
/openbmc/linux/arch/loongarch/Kconfig
/openbmc/linux/arch/loongarch/crypto/crc32-loongarch.c
/openbmc/linux/arch/loongarch/include/asm/Kbuild
/openbmc/linux/arch/loongarch/include/asm/acpi.h
/openbmc/linux/arch/loongarch/include/asm/io.h
/openbmc/linux/arch/loongarch/include/asm/percpu.h
/openbmc/linux/arch/loongarch/include/asm/perf_event.h
/openbmc/linux/arch/loongarch/kernel/acpi.c
/openbmc/linux/arch/loongarch/kernel/setup.c
/openbmc/linux/arch/loongarch/kernel/smp.c
/openbmc/linux/arch/loongarch/mm/fault.c
/openbmc/linux/arch/loongarch/vdso/Makefile
/openbmc/linux/arch/mips/include/asm/ptrace.h
/openbmc/linux/arch/mips/kernel/asm-offsets.c
/openbmc/linux/arch/mips/kernel/ptrace.c
/openbmc/linux/arch/mips/kernel/scall32-o32.S
/openbmc/linux/arch/mips/kernel/scall64-n32.S
/openbmc/linux/arch/mips/kernel/scall64-n64.S
/openbmc/linux/arch/mips/kernel/scall64-o32.S
/openbmc/linux/arch/mips/kernel/traps.c
/openbmc/linux/arch/parisc/include/asm/assembly.h
/openbmc/linux/arch/parisc/include/asm/checksum.h
/openbmc/linux/arch/parisc/include/asm/mman.h
/openbmc/linux/arch/parisc/kernel/ftrace.c
/openbmc/linux/arch/parisc/kernel/processor.c
/openbmc/linux/arch/parisc/kernel/unaligned.c
/openbmc/linux/arch/parisc/kernel/unwind.c
/openbmc/linux/arch/powerpc/crypto/chacha-p10-glue.c
/openbmc/linux/arch/powerpc/include/asm/ftrace.h
/openbmc/linux/arch/powerpc/include/asm/plpks.h
/openbmc/linux/arch/powerpc/include/asm/ppc-pci.h
/openbmc/linux/arch/powerpc/include/asm/reg_fsl_emb.h
/openbmc/linux/arch/powerpc/include/asm/rtas.h
/openbmc/linux/arch/powerpc/include/asm/sections.h
/openbmc/linux/arch/powerpc/include/asm/vmalloc.h
/openbmc/linux/arch/powerpc/kernel/iommu.c
/openbmc/linux/arch/powerpc/kernel/prom.c
/openbmc/linux/arch/powerpc/kernel/rtas.c
/openbmc/linux/arch/powerpc/kernel/trace/ftrace.c
/openbmc/linux/arch/powerpc/kernel/trace/ftrace_64_pg.c
/openbmc/linux/arch/powerpc/kernel/vmlinux.lds.S
/openbmc/linux/arch/powerpc/lib/Makefile
/openbmc/linux/arch/powerpc/mm/book3s64/pgtable.c
/openbmc/linux/arch/powerpc/perf/hv-gpci.c
/openbmc/linux/arch/powerpc/platforms/embedded6xx/linkstation.c
/openbmc/linux/arch/powerpc/platforms/embedded6xx/mpc10x.h
/openbmc/linux/arch/powerpc/platforms/ps3/Kconfig
/openbmc/linux/arch/powerpc/platforms/pseries/iommu.c
/openbmc/linux/arch/powerpc/platforms/pseries/papr_platform_attributes.c
/openbmc/linux/arch/powerpc/platforms/pseries/pci_dlpar.c
/openbmc/linux/arch/powerpc/platforms/pseries/plpks.c
/openbmc/linux/arch/riscv/Kconfig
/openbmc/linux/arch/riscv/boot/dts/sifive/hifive-unmatched-a00.dts
/openbmc/linux/arch/riscv/include/asm/ftrace.h
/openbmc/linux/arch/riscv/include/asm/hugetlb.h
/openbmc/linux/arch/riscv/include/asm/page.h
/openbmc/linux/arch/riscv/include/asm/pgtable.h
/openbmc/linux/arch/riscv/include/asm/uaccess.h
/openbmc/linux/arch/riscv/include/asm/vmalloc.h
/openbmc/linux/arch/riscv/include/uapi/asm/auxvec.h
/openbmc/linux/arch/riscv/kernel/Makefile
/openbmc/linux/arch/riscv/kernel/cpufeature.c
/openbmc/linux/arch/riscv/kernel/patch.c
/openbmc/linux/arch/riscv/kernel/process.c
/openbmc/linux/arch/riscv/kernel/return_address.c
/openbmc/linux/arch/riscv/kernel/setup.c
/openbmc/linux/arch/riscv/kvm/aia_aplic.c
/openbmc/linux/arch/riscv/mm/hugetlbpage.c
/openbmc/linux/arch/riscv/mm/init.c
/openbmc/linux/arch/riscv/net/bpf_jit_comp64.c
/openbmc/linux/arch/s390/boot/vmem.c
/openbmc/linux/arch/s390/include/asm/dwarf.h
/openbmc/linux/arch/s390/include/asm/kvm_host.h
/openbmc/linux/arch/s390/include/asm/pgtable.h
/openbmc/linux/arch/s390/kernel/cache.c
/openbmc/linux/arch/s390/kernel/entry.S
/openbmc/linux/arch/s390/kernel/perf_pai_crypto.c
/openbmc/linux/arch/s390/kernel/perf_pai_ext.c
/openbmc/linux/arch/s390/kernel/vdso32/Makefile
/openbmc/linux/arch/s390/kernel/vdso64/Makefile
/openbmc/linux/arch/s390/kernel/vdso64/vdso_user_wrapper.S
/openbmc/linux/arch/s390/kernel/vtime.c
/openbmc/linux/arch/s390/kvm/gaccess.c
/openbmc/linux/arch/s390/kvm/kvm-s390.c
/openbmc/linux/arch/s390/kvm/vsie.c
/openbmc/linux/arch/s390/mm/gmap.c
/openbmc/linux/arch/s390/mm/hugetlbpage.c
/openbmc/linux/arch/s390/mm/pageattr.c
/openbmc/linux/arch/s390/mm/pgtable.c
/openbmc/linux/arch/s390/mm/vmem.c
/openbmc/linux/arch/s390/net/bpf_jit_comp.c
/openbmc/linux/arch/s390/pci/pci.c
/openbmc/linux/arch/sparc/Makefile
/openbmc/linux/arch/sparc/include/asm/parport.h
/openbmc/linux/arch/sparc/include/asm/parport_64.h
/openbmc/linux/arch/sparc/kernel/leon_pci_grpci1.c
/openbmc/linux/arch/sparc/kernel/leon_pci_grpci2.c
/openbmc/linux/arch/sparc/kernel/nmi.c
/openbmc/linux/arch/sparc/kernel/traps_64.c
/openbmc/linux/arch/sparc/mm/init_64.c
/openbmc/linux/arch/sparc/vdso/vma.c
/openbmc/linux/arch/sparc/video/Makefile
/openbmc/linux/arch/x86/Kconfig
/openbmc/linux/arch/x86/boot/Makefile
/openbmc/linux/arch/x86/boot/compressed/Makefile
/openbmc/linux/arch/x86/boot/compressed/efi_mixed.S
/openbmc/linux/arch/x86/boot/compressed/misc.c
/openbmc/linux/arch/x86/boot/compressed/sev.c
/openbmc/linux/arch/x86/boot/compressed/vmlinux.lds.S
/openbmc/linux/arch/x86/boot/header.S
/openbmc/linux/arch/x86/boot/setup.ld
/openbmc/linux/arch/x86/boot/tools/build.c
/openbmc/linux/arch/x86/coco/core.c
/openbmc/linux/arch/x86/entry/common.c
/openbmc/linux/arch/x86/entry/entry.S
/openbmc/linux/arch/x86/entry/entry_32.S
/openbmc/linux/arch/x86/entry/entry_64.S
/openbmc/linux/arch/x86/entry/entry_64_compat.S
/openbmc/linux/arch/x86/entry/syscall_32.c
/openbmc/linux/arch/x86/entry/syscall_64.c
/openbmc/linux/arch/x86/entry/syscall_x32.c
/openbmc/linux/arch/x86/events/amd/core.c
/openbmc/linux/arch/x86/events/amd/lbr.c
/openbmc/linux/arch/x86/events/core.c
/openbmc/linux/arch/x86/events/intel/ds.c
/openbmc/linux/arch/x86/hyperv/hv_vtl.c
/openbmc/linux/arch/x86/include/asm/apic.h
/openbmc/linux/arch/x86/include/asm/asm-prototypes.h
/openbmc/linux/arch/x86/include/asm/asm.h
/openbmc/linux/arch/x86/include/asm/barrier.h
/openbmc/linux/arch/x86/include/asm/boot.h
/openbmc/linux/arch/x86/include/asm/coco.h
/openbmc/linux/arch/x86/include/asm/cpufeature.h
/openbmc/linux/arch/x86/include/asm/cpufeatures.h
/openbmc/linux/arch/x86/include/asm/disabled-features.h
/openbmc/linux/arch/x86/include/asm/entry-common.h
/openbmc/linux/arch/x86/include/asm/init.h
/openbmc/linux/arch/x86/include/asm/kvm_host.h
/openbmc/linux/arch/x86/include/asm/mem_encrypt.h
/openbmc/linux/arch/x86/include/asm/msr-index.h
/openbmc/linux/arch/x86/include/asm/nospec-branch.h
/openbmc/linux/arch/x86/include/asm/page.h
/openbmc/linux/arch/x86/include/asm/pgtable_types.h
/openbmc/linux/arch/x86/include/asm/processor.h
/openbmc/linux/arch/x86/include/asm/required-features.h
/openbmc/linux/arch/x86/include/asm/sev.h
/openbmc/linux/arch/x86/include/asm/suspend_32.h
/openbmc/linux/arch/x86/include/asm/syscall.h
/openbmc/linux/arch/x86/include/asm/vsyscall.h
/openbmc/linux/arch/x86/include/asm/x86_init.h
/openbmc/linux/arch/x86/include/asm/xen/hypervisor.h
/openbmc/linux/arch/x86/include/uapi/asm/bootparam.h
/openbmc/linux/arch/x86/kernel/acpi/cppc.c
/openbmc/linux/arch/x86/kernel/apic/apic.c
/openbmc/linux/arch/x86/kernel/cpu/amd.c
/openbmc/linux/arch/x86/kernel/cpu/bugs.c
/openbmc/linux/arch/x86/kernel/cpu/common.c
/openbmc/linux/arch/x86/kernel/cpu/cpuid-deps.c
/openbmc/linux/arch/x86/kernel/cpu/hygon.c
/openbmc/linux/arch/x86/kernel/cpu/intel.c
/openbmc/linux/arch/x86/kernel/cpu/mce/core.c
/openbmc/linux/arch/x86/kernel/cpu/resctrl/core.c
/openbmc/linux/arch/x86/kernel/cpu/resctrl/internal.h
/openbmc/linux/arch/x86/kernel/cpu/resctrl/monitor.c
/openbmc/linux/arch/x86/kernel/cpu/resctrl/rdtgroup.c
/openbmc/linux/arch/x86/kernel/cpu/scattered.c
/openbmc/linux/arch/x86/kernel/e820.c
/openbmc/linux/arch/x86/kernel/eisa.c
/openbmc/linux/arch/x86/kernel/fpu/xstate.c
/openbmc/linux/arch/x86/kernel/fpu/xstate.h
/openbmc/linux/arch/x86/kernel/head64.c
/openbmc/linux/arch/x86/kernel/kprobes/core.c
/openbmc/linux/arch/x86/kernel/nmi.c
/openbmc/linux/arch/x86/kernel/probe_roms.c
/openbmc/linux/arch/x86/kernel/process_64.c
/openbmc/linux/arch/x86/kernel/setup.c
/openbmc/linux/arch/x86/kernel/sev-shared.c
/openbmc/linux/arch/x86/kernel/sev.c
/openbmc/linux/arch/x86/kernel/vmlinux.lds.S
/openbmc/linux/arch/x86/kernel/x86_init.c
/openbmc/linux/arch/x86/kvm/cpuid.c
/openbmc/linux/arch/x86/kvm/cpuid.h
/openbmc/linux/arch/x86/kvm/lapic.c
/openbmc/linux/arch/x86/kvm/mmu/mmu.c
/openbmc/linux/arch/x86/kvm/mmu/tdp_mmu.c
/openbmc/linux/arch/x86/kvm/pmu.c
/openbmc/linux/arch/x86/kvm/reverse_cpuid.h
/openbmc/linux/arch/x86/kvm/svm/sev.c
/openbmc/linux/arch/x86/kvm/trace.h
/openbmc/linux/arch/x86/kvm/vmx/pmu_intel.c
/openbmc/linux/arch/x86/kvm/vmx/run_flags.h
/openbmc/linux/arch/x86/kvm/vmx/vmenter.S
/openbmc/linux/arch/x86/kvm/vmx/vmx.c
/openbmc/linux/arch/x86/kvm/x86.c
/openbmc/linux/arch/x86/kvm/xen.c
/openbmc/linux/arch/x86/kvm/xen.h
/openbmc/linux/arch/x86/lib/Makefile
/openbmc/linux/arch/x86/lib/retpoline.S
/openbmc/linux/arch/x86/mm/fault.c
/openbmc/linux/arch/x86/mm/ident_map.c
/openbmc/linux/arch/x86/mm/init_64.c
/openbmc/linux/arch/x86/mm/kasan_init_64.c
/openbmc/linux/arch/x86/mm/maccess.c
/openbmc/linux/arch/x86/mm/mem_encrypt_amd.c
/openbmc/linux/arch/x86/mm/mem_encrypt_identity.c
/openbmc/linux/arch/x86/mm/numa.c
/openbmc/linux/arch/x86/mm/pat/memtype.c
/openbmc/linux/arch/x86/mm/pat/set_memory.c
/openbmc/linux/arch/x86/mm/pgtable.c
/openbmc/linux/arch/x86/mm/pti.c
/openbmc/linux/arch/x86/net/bpf_jit_comp.c
/openbmc/linux/arch/x86/pci/fixup.c
/openbmc/linux/arch/x86/platform/pvh/enlighten.c
/openbmc/linux/arch/x86/power/hibernate.c
/openbmc/linux/arch/x86/tools/relocs.c
/openbmc/linux/arch/x86/xen/enlighten.c
/openbmc/linux/arch/x86/xen/enlighten_pvh.c
/openbmc/linux/arch/x86/xen/mmu_pv.c
/openbmc/linux/arch/x86/xen/setup.c
/openbmc/linux/arch/x86/xen/smp.c
/openbmc/linux/arch/x86/xen/xen-ops.h
/openbmc/linux/arch/xtensa/include/asm/processor.h
/openbmc/linux/arch/xtensa/include/asm/ptrace.h
/openbmc/linux/arch/xtensa/kernel/process.c
/openbmc/linux/arch/xtensa/kernel/stacktrace.c
/openbmc/linux/block/bdev.c
/openbmc/linux/block/bio.c
/openbmc/linux/block/blk-cgroup.c
/openbmc/linux/block/blk-cgroup.h
/openbmc/linux/block/blk-core.c
/openbmc/linux/block/blk-iocost.c
/openbmc/linux/block/blk-map.c
/openbmc/linux/block/blk-mq.c
/openbmc/linux/block/blk-settings.c
/openbmc/linux/block/blk-stat.c
/openbmc/linux/block/ioctl.c
/openbmc/linux/block/mq-deadline.c
/openbmc/linux/block/opal_proto.h
/openbmc/linux/block/sed-opal.c
/openbmc/linux/crypto/Kconfig
/openbmc/linux/drivers/accel/habanalabs/common/habanalabs.h
/openbmc/linux/drivers/accel/ivpu/ivpu_drv.c
/openbmc/linux/drivers/accel/ivpu/ivpu_hw_37xx.c
/openbmc/linux/drivers/accel/ivpu/ivpu_hw_40xx.c
/openbmc/linux/drivers/accel/ivpu/ivpu_mmu.c
/openbmc/linux/drivers/accessibility/speakup/main.c
/openbmc/linux/drivers/accessibility/speakup/synth.c
/openbmc/linux/drivers/acpi/acpica/dbnames.c
/openbmc/linux/drivers/acpi/cppc_acpi.c
/openbmc/linux/drivers/acpi/processor_idle.c
/openbmc/linux/drivers/acpi/resource.c
/openbmc/linux/drivers/acpi/scan.c
/openbmc/linux/drivers/acpi/sleep.c
/openbmc/linux/drivers/acpi/x86/utils.c
/openbmc/linux/drivers/android/binder.c
/openbmc/linux/drivers/ata/ahci.c
/openbmc/linux/drivers/ata/ahci.h
/openbmc/linux/drivers/ata/ahci_ceva.c
/openbmc/linux/drivers/ata/libata-core.c
/openbmc/linux/drivers/ata/libata-eh.c
/openbmc/linux/drivers/ata/libata-scsi.c
/openbmc/linux/drivers/ata/sata_gemini.c
/openbmc/linux/drivers/ata/sata_mv.c
/openbmc/linux/drivers/ata/sata_sx4.c
/openbmc/linux/drivers/base/core.c
/openbmc/linux/drivers/base/cpu.c
/openbmc/linux/drivers/base/power/wakeirq.c
/openbmc/linux/drivers/base/regmap/regcache-maple.c
/openbmc/linux/drivers/base/regmap/regmap-kunit.c
/openbmc/linux/drivers/base/regmap/regmap.c
/openbmc/linux/drivers/block/aoe/aoeblk.c
/openbmc/linux/drivers/block/aoe/aoecmd.c
/openbmc/linux/drivers/block/aoe/aoenet.c
/openbmc/linux/drivers/block/nbd.c
/openbmc/linux/drivers/block/ublk_drv.c
/openbmc/linux/drivers/block/virtio_blk.c
/openbmc/linux/drivers/bluetooth/btintel.c
/openbmc/linux/drivers/bluetooth/btmtk.c
/openbmc/linux/drivers/bluetooth/btmtk.h
/openbmc/linux/drivers/bluetooth/btnxpuart.c
/openbmc/linux/drivers/bluetooth/btqca.c
/openbmc/linux/drivers/bluetooth/btqca.h
/openbmc/linux/drivers/bluetooth/btusb.c
/openbmc/linux/drivers/bluetooth/hci_bcm4377.c
/openbmc/linux/drivers/bluetooth/hci_h5.c
/openbmc/linux/drivers/bluetooth/hci_qca.c
/openbmc/linux/drivers/bluetooth/hci_serdev.c
/openbmc/linux/drivers/bluetooth/hci_uart.h
/openbmc/linux/drivers/bus/Kconfig
/openbmc/linux/drivers/bus/imx-weim.c
/openbmc/linux/drivers/bus/mhi/ep/main.c
/openbmc/linux/drivers/bus/mhi/host/init.c
/openbmc/linux/drivers/bus/mhi/host/internal.h
/openbmc/linux/drivers/bus/mhi/host/pm.c
/openbmc/linux/drivers/cache/ax45mp_cache.c
/openbmc/linux/drivers/char/random.c
/openbmc/linux/drivers/char/tpm/tpm_tis_core.c
/openbmc/linux/drivers/clk/clk.c
/openbmc/linux/drivers/clk/hisilicon/clk-hi3519.c
/openbmc/linux/drivers/clk/hisilicon/clk-hi3559a.c
/openbmc/linux/drivers/clk/imx/clk-imx8mp-audiomix.c
/openbmc/linux/drivers/clk/mediatek/clk-mt7622-apmixedsys.c
/openbmc/linux/drivers/clk/mediatek/clk-mt7981-topckgen.c
/openbmc/linux/drivers/clk/mediatek/clk-mt8135-apmixedsys.c
/openbmc/linux/drivers/clk/mediatek/clk-mt8183.c
/openbmc/linux/drivers/clk/mediatek/clk-mtk.c
/openbmc/linux/drivers/clk/meson/axg.c
/openbmc/linux/drivers/clk/qcom/clk-smd-rpm.c
/openbmc/linux/drivers/clk/qcom/dispcc-sdm845.c
/openbmc/linux/drivers/clk/qcom/gcc-ipq5018.c
/openbmc/linux/drivers/clk/qcom/gcc-ipq6018.c
/openbmc/linux/drivers/clk/qcom/gcc-ipq8074.c
/openbmc/linux/drivers/clk/qcom/gcc-ipq9574.c
/openbmc/linux/drivers/clk/qcom/gcc-sdm845.c
/openbmc/linux/drivers/clk/qcom/mmcc-apq8084.c
/openbmc/linux/drivers/clk/qcom/mmcc-msm8974.c
/openbmc/linux/drivers/clk/qcom/reset.c
/openbmc/linux/drivers/clk/renesas/r8a779f0-cpg-mssr.c
/openbmc/linux/drivers/clk/renesas/r8a779g0-cpg-mssr.c
/openbmc/linux/drivers/clk/samsung/clk-exynos850.c
/openbmc/linux/drivers/clk/sunxi-ng/ccu-sun50i-a64.c
/openbmc/linux/drivers/clk/sunxi-ng/ccu-sun50i-h6.c
/openbmc/linux/drivers/clk/sunxi-ng/ccu_common.c
/openbmc/linux/drivers/clk/sunxi-ng/ccu_common.h
/openbmc/linux/drivers/clk/zynq/clkc.c
/openbmc/linux/drivers/clocksource/arm_global_timer.c
/openbmc/linux/drivers/comedi/drivers/comedi_test.c
/openbmc/linux/drivers/comedi/drivers/vmk80xx.c
/openbmc/linux/drivers/cpufreq/Kconfig.arm
/openbmc/linux/drivers/cpufreq/amd-pstate.c
/openbmc/linux/drivers/cpufreq/brcmstb-avs-cpufreq.c
/openbmc/linux/drivers/cpufreq/cpufreq-dt.c
/openbmc/linux/drivers/cpufreq/cpufreq.c
/openbmc/linux/drivers/cpufreq/freq_table.c
/openbmc/linux/drivers/cpufreq/intel_pstate.c
/openbmc/linux/drivers/cpufreq/mediatek-cpufreq-hw.c
/openbmc/linux/drivers/cpuidle/driver.c
/openbmc/linux/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c
/openbmc/linux/drivers/crypto/ccp/platform-access.c
/openbmc/linux/drivers/crypto/intel/qat/qat_4xxx/adf_4xxx_hw_data.c
/openbmc/linux/drivers/crypto/intel/qat/qat_common/Makefile
/openbmc/linux/drivers/crypto/intel/qat/qat_common/adf_aer.c
/openbmc/linux/drivers/crypto/intel/qat/qat_common/adf_cfg_services.c
/openbmc/linux/drivers/crypto/intel/qat/qat_common/adf_cfg_services.h
/openbmc/linux/drivers/crypto/intel/qat/qat_common/adf_clock.c
/openbmc/linux/drivers/crypto/rockchip/rk3288_crypto_ahash.c
/openbmc/linux/drivers/crypto/virtio/virtio_crypto_akcipher_algs.c
/openbmc/linux/drivers/crypto/xilinx/zynqmp-aes-gcm.c
/openbmc/linux/drivers/cxl/acpi.c
/openbmc/linux/drivers/cxl/core/mbox.c
/openbmc/linux/drivers/cxl/core/pci.c
/openbmc/linux/drivers/cxl/core/region.c
/openbmc/linux/drivers/cxl/core/regs.c
/openbmc/linux/drivers/cxl/core/trace.h
/openbmc/linux/drivers/dma-buf/st-dma-fence-chain.c
/openbmc/linux/drivers/dma/Kconfig
/openbmc/linux/drivers/dma/apple-admac.c
/openbmc/linux/drivers/dma/dw-edma/dw-edma-v0-core.c
/openbmc/linux/drivers/dma/dw-edma/dw-edma-v0-debugfs.c
/openbmc/linux/drivers/dma/dw-edma/dw-hdma-v0-core.c
/openbmc/linux/drivers/dma/dw-edma/dw-hdma-v0-debugfs.c
/openbmc/linux/drivers/dma/dw-edma/dw-hdma-v0-regs.h
/openbmc/linux/drivers/dma/fsl-edma-common.c
/openbmc/linux/drivers/dma/fsl-edma-common.h
/openbmc/linux/drivers/dma/fsl-edma-main.c
/openbmc/linux/drivers/dma/fsl-qdma.c
/openbmc/linux/drivers/dma/idma64.c
/openbmc/linux/drivers/dma/idxd/cdev.c
/openbmc/linux/drivers/dma/idxd/debugfs.c
/openbmc/linux/drivers/dma/idxd/device.c
/openbmc/linux/drivers/dma/idxd/idxd.h
/openbmc/linux/drivers/dma/idxd/init.c
/openbmc/linux/drivers/dma/idxd/irq.c
/openbmc/linux/drivers/dma/idxd/perfmon.c
/openbmc/linux/drivers/dma/owl-dma.c
/openbmc/linux/drivers/dma/ptdma/ptdma-dmaengine.c
/openbmc/linux/drivers/dma/sh/shdma.h
/openbmc/linux/drivers/dma/tegra186-gpc-dma.c
/openbmc/linux/drivers/dma/ti/edma.c
/openbmc/linux/drivers/dma/xilinx/xilinx_dpdma.c
/openbmc/linux/drivers/firewire/core-card.c
/openbmc/linux/drivers/firewire/nosy.c
/openbmc/linux/drivers/firewire/ohci.c
/openbmc/linux/drivers/firmware/arm_scmi/raw_mode.c
/openbmc/linux/drivers/firmware/arm_scmi/smc.c
/openbmc/linux/drivers/firmware/efi/arm-runtime.c
/openbmc/linux/drivers/firmware/efi/capsule-loader.c
/openbmc/linux/drivers/firmware/efi/efi-init.c
/openbmc/linux/drivers/firmware/efi/efi.c
/openbmc/linux/drivers/firmware/efi/libstub/Makefile
/openbmc/linux/drivers/firmware/efi/libstub/efi-stub-helper.c
/openbmc/linux/drivers/firmware/efi/libstub/efistub.h
/openbmc/linux/drivers/firmware/efi/libstub/randomalloc.c
/openbmc/linux/drivers/firmware/efi/libstub/x86-stub.c
/openbmc/linux/drivers/firmware/efi/riscv-runtime.c
/openbmc/linux/drivers/firmware/tegra/bpmp-debugfs.c
/openbmc/linux/drivers/gpio/Kconfig
/openbmc/linux/drivers/gpio/gpio-74x164.c
/openbmc/linux/drivers/gpio/gpio-crystalcove.c
/openbmc/linux/drivers/gpio/gpio-lpc32xx.c
/openbmc/linux/drivers/gpio/gpio-tangier.c
/openbmc/linux/drivers/gpio/gpio-tegra186.c
/openbmc/linux/drivers/gpio/gpio-wcove.c
/openbmc/linux/drivers/gpio/gpiolib-cdev.c
/openbmc/linux/drivers/gpio/gpiolib-devres.c
/openbmc/linux/drivers/gpio/gpiolib.c
/openbmc/linux/drivers/gpio/gpiolib.h
/openbmc/linux/drivers/gpu/drm/Kconfig
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu.h
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_fdinfo.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_hmm.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_job.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_psp_ta.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/aqua_vanjaram.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/atom.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/nbio_v7_9.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/soc15.c
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/soc21.c
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_device.c
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_int_process_v10.c
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_int_process_v11.c
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_int_process_v9.c
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_priv.h
/openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_process.c
/openbmc/linux/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
/openbmc/linux/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
/openbmc/linux/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn316/dcn316_clk_mgr.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/core/dc_link_exports.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dc.h
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dc_dp_types.h
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dc_types.h
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hwseq.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hpo_dp_link_encoder.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_optc.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/link/link_dpms.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/link/link_validation.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.c
/openbmc/linux/drivers/gpu/drm/amd/display/dc/link/protocols/link_dp_dpia_bw.h
/openbmc/linux/drivers/gpu/drm/amd/display/dc/link/protocols/link_edp_panel_control.c
/openbmc/linux/drivers/gpu/drm/amd/display/modules/hdcp/hdcp_psp.c
/openbmc/linux/drivers/gpu/drm/amd/display/modules/inc/mod_stats.h
/openbmc/linux/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
/openbmc/linux/drivers/gpu/drm/amd/include/amd_shared.h
/openbmc/linux/drivers/gpu/drm/amd/pm/amdgpu_pm.c
/openbmc/linux/drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c
/openbmc/linux/drivers/gpu/drm/amd/pm/swsmu/smu11/arcturus_ppt.c
/openbmc/linux/drivers/gpu/drm/amd/pm/swsmu/smu13/aldebaran_ppt.c
/openbmc/linux/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_4_ppt.c
/openbmc/linux/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c
/openbmc/linux/drivers/gpu/drm/ast/ast_dp.c
/openbmc/linux/drivers/gpu/drm/bridge/lontium-lt8912b.c
/openbmc/linux/drivers/gpu/drm/ci/test.yml
/openbmc/linux/drivers/gpu/drm/drm_bridge.c
/openbmc/linux/drivers/gpu/drm/drm_buddy.c
/openbmc/linux/drivers/gpu/drm/drm_client_modeset.c
/openbmc/linux/drivers/gpu/drm/drm_connector.c
/openbmc/linux/drivers/gpu/drm/drm_modeset_helper.c
/openbmc/linux/drivers/gpu/drm/drm_panel.c
/openbmc/linux/drivers/gpu/drm/drm_panel_orientation_quirks.c
/openbmc/linux/drivers/gpu/drm/drm_prime.c
/openbmc/linux/drivers/gpu/drm/drm_probe_helper.c
/openbmc/linux/drivers/gpu/drm/drm_syncobj.c
/openbmc/linux/drivers/gpu/drm/etnaviv/etnaviv_drv.c
/openbmc/linux/drivers/gpu/drm/etnaviv/etnaviv_hwdb.c
/openbmc/linux/drivers/gpu/drm/exynos/exynos_drm_vidi.c
/openbmc/linux/drivers/gpu/drm/exynos/exynos_hdmi.c
/openbmc/linux/drivers/gpu/drm/gma500/Makefile
/openbmc/linux/drivers/gpu/drm/gma500/psb_device.c
/openbmc/linux/drivers/gpu/drm/gma500/psb_drv.h
/openbmc/linux/drivers/gpu/drm/i915/Makefile
/openbmc/linux/drivers/gpu/drm/i915/display/icl_dsi.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_atomic.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_audio.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_bios.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_cdclk.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_cdclk.h
/openbmc/linux/drivers/gpu/drm/i915/display/intel_crtc.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_crtc.h
/openbmc/linux/drivers/gpu/drm/i915/display/intel_cursor.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_ddi.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_display.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_display_device.h
/openbmc/linux/drivers/gpu/drm/i915/display/intel_display_power_well.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_display_trace.h
/openbmc/linux/drivers/gpu/drm/i915/display/intel_display_types.h
/openbmc/linux/drivers/gpu/drm/i915/display/intel_dp.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_dp_mst.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_dpll_mgr.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_fb_pin.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_sdvo.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_tv.c
/openbmc/linux/drivers/gpu/drm/i915/display/intel_vbt_defs.h
/openbmc/linux/drivers/gpu/drm/i915/display/intel_vrr.c
/openbmc/linux/drivers/gpu/drm/i915/display/skl_universal_plane.c
/openbmc/linux/drivers/gpu/drm/i915/gem/i915_gem_create.c
/openbmc/linux/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
/openbmc/linux/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_engine_cs.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_engine_pm.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_gt.h
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.h
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_gt_mcr.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_gt_regs.h
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_lrc.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_mocs.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_rc6.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_reset.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_reset.h
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_rps.c
/openbmc/linux/drivers/gpu/drm/i915/gt/intel_workarounds.c
/openbmc/linux/drivers/gpu/drm/i915/gt/uc/intel_guc.c
/openbmc/linux/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
/openbmc/linux/drivers/gpu/drm/i915/i915_debugfs.c
/openbmc/linux/drivers/gpu/drm/i915/i915_drv.h
/openbmc/linux/drivers/gpu/drm/i915/i915_hwmon.c
/openbmc/linux/drivers/gpu/drm/i915/i915_perf.c
/openbmc/linux/drivers/gpu/drm/i915/i915_vma.c
/openbmc/linux/drivers/gpu/drm/i915/intel_clock_gating.c
/openbmc/linux/drivers/gpu/drm/imx/ipuv3/parallel-display.c
/openbmc/linux/drivers/gpu/drm/lima/lima_gem.c
/openbmc/linux/drivers/gpu/drm/mediatek/mtk_drm_crtc.c
/openbmc/linux/drivers/gpu/drm/mediatek/mtk_dsi.c
/openbmc/linux/drivers/gpu/drm/meson/meson_dw_hdmi.c
/openbmc/linux/drivers/gpu/drm/meson/meson_encoder_cvbs.c
/openbmc/linux/drivers/gpu/drm/meson/meson_encoder_dsi.c
/openbmc/linux/drivers/gpu/drm/meson/meson_encoder_hdmi.c
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_5_0_sm8150.h
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_5_1_sc8180x.h
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_8_1_sm8450.h
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.c
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.h
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_intf.c
/openbmc/linux/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_intf.h
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvkm/core/client.h
/openbmc/linux/drivers/gpu/drm/nouveau/nouveau_bios.c
/openbmc/linux/drivers/gpu/drm/nouveau/nouveau_bo.c
/openbmc/linux/drivers/gpu/drm/nouveau/nouveau_dmem.c
/openbmc/linux/drivers/gpu/drm/nouveau/nouveau_dp.c
/openbmc/linux/drivers/gpu/drm/nouveau/nouveau_drm.c
/openbmc/linux/drivers/gpu/drm/nouveau/nouveau_gem.c
/openbmc/linux/drivers/gpu/drm/nouveau/nouveau_uvmm.c
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/core/client.c
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/core/object.c
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.c
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.c
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv50.c
/openbmc/linux/drivers/gpu/drm/panel/Kconfig
/openbmc/linux/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c
/openbmc/linux/drivers/gpu/drm/panel/panel-edp.c
/openbmc/linux/drivers/gpu/drm/panel/panel-ilitek-ili9341.c
/openbmc/linux/drivers/gpu/drm/panel/panel-visionox-rm69299.c
/openbmc/linux/drivers/gpu/drm/panfrost/panfrost_gpu.c
/openbmc/linux/drivers/gpu/drm/panfrost/panfrost_mmu.c
/openbmc/linux/drivers/gpu/drm/radeon/ni.c
/openbmc/linux/drivers/gpu/drm/radeon/pptable.h
/openbmc/linux/drivers/gpu/drm/radeon/radeon_atombios.c
/openbmc/linux/drivers/gpu/drm/rockchip/inno_hdmi.c
/openbmc/linux/drivers/gpu/drm/rockchip/rockchip_lvds.c
/openbmc/linux/drivers/gpu/drm/tegra/dpaux.c
/openbmc/linux/drivers/gpu/drm/tegra/drm.c
/openbmc/linux/drivers/gpu/drm/tegra/dsi.c
/openbmc/linux/drivers/gpu/drm/tegra/fb.c
/openbmc/linux/drivers/gpu/drm/tegra/hdmi.c
/openbmc/linux/drivers/gpu/drm/tegra/output.c
/openbmc/linux/drivers/gpu/drm/tegra/rgb.c
/openbmc/linux/drivers/gpu/drm/tidss/tidss_crtc.c
/openbmc/linux/drivers/gpu/drm/tidss/tidss_plane.c
/openbmc/linux/drivers/gpu/drm/ttm/tests/ttm_device_test.c
/openbmc/linux/drivers/gpu/drm/ttm/ttm_bo.c
/openbmc/linux/drivers/gpu/drm/ttm/ttm_bo_util.c
/openbmc/linux/drivers/gpu/drm/ttm/ttm_pool.c
/openbmc/linux/drivers/gpu/drm/ttm/ttm_tt.c
/openbmc/linux/drivers/gpu/drm/vc4/vc4_hdmi.c
/openbmc/linux/drivers/gpu/drm/vc4/vc4_plane.c
/openbmc/linux/drivers/gpu/drm/vkms/vkms_composer.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_blit.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_bo.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_bo.h
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_gem.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_gmrid_manager.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_kms.h
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_prime.c
/openbmc/linux/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
/openbmc/linux/drivers/gpu/host1x/bus.c
/openbmc/linux/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
/openbmc/linux/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
/openbmc/linux/drivers/hid/hid-ids.h
/openbmc/linux/drivers/hid/hid-input.c
/openbmc/linux/drivers/hid/hid-lenovo.c
/openbmc/linux/drivers/hid/hid-logitech-dj.c
/openbmc/linux/drivers/hid/hid-logitech-hidpp.c
/openbmc/linux/drivers/hid/hid-multitouch.c
/openbmc/linux/drivers/hid/hid-nvidia-shield.c
/openbmc/linux/drivers/hid/i2c-hid/i2c-hid-core.c
/openbmc/linux/drivers/hid/intel-ish-hid/ipc/ipc.c
/openbmc/linux/drivers/hv/Kconfig
/openbmc/linux/drivers/hv/channel.c
/openbmc/linux/drivers/hv/connection.c
/openbmc/linux/drivers/hwmon/amc6821.c
/openbmc/linux/drivers/hwmon/coretemp.c
/openbmc/linux/drivers/hwmon/corsair-cpro.c
/openbmc/linux/drivers/hwmon/nct6775-core.c
/openbmc/linux/drivers/hwmon/pmbus/ucd9000.c
/openbmc/linux/drivers/hwtracing/coresight/coresight-core.c
/openbmc/linux/drivers/hwtracing/coresight/coresight-etm-perf.c
/openbmc/linux/drivers/hwtracing/coresight/coresight-etm4x-core.c
/openbmc/linux/drivers/hwtracing/coresight/coresight-priv.h
/openbmc/linux/drivers/hwtracing/ptt/hisi_ptt.c
/openbmc/linux/drivers/i2c/busses/i2c-designware-core.h
/openbmc/linux/drivers/i2c/busses/i2c-i801.c
/openbmc/linux/drivers/i2c/busses/i2c-imx.c
/openbmc/linux/drivers/i2c/i2c-core-base.c
/openbmc/linux/drivers/i3c/master/dw-i3c-master.c
/openbmc/linux/drivers/iio/accel/adxl367.c
/openbmc/linux/drivers/iio/accel/adxl367_i2c.c
/openbmc/linux/drivers/iio/accel/mxc4005.c
/openbmc/linux/drivers/iio/adc/rockchip_saradc.c
/openbmc/linux/drivers/iio/imu/adis16475.c
/openbmc/linux/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
/openbmc/linux/drivers/iio/imu/inv_mpu6050/inv_mpu_trigger.c
/openbmc/linux/drivers/iio/industrialio-gts-helper.c
/openbmc/linux/drivers/iio/pressure/bmp280-spi.c
/openbmc/linux/drivers/iio/pressure/mprls0025pa.c
/openbmc/linux/drivers/infiniband/core/cm.c
/openbmc/linux/drivers/infiniband/core/device.c
/openbmc/linux/drivers/infiniband/hw/bnxt_re/ib_verbs.c
/openbmc/linux/drivers/infiniband/hw/bnxt_re/qplib_fp.c
/openbmc/linux/drivers/infiniband/hw/hfi1/pio.c
/openbmc/linux/drivers/infiniband/hw/hfi1/sdma.c
/openbmc/linux/drivers/infiniband/hw/hns/hns_roce_device.h
/openbmc/linux/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
/openbmc/linux/drivers/infiniband/hw/irdma/defs.h
/openbmc/linux/drivers/infiniband/hw/irdma/hw.c
/openbmc/linux/drivers/infiniband/hw/irdma/verbs.c
/openbmc/linux/drivers/infiniband/hw/mana/main.c
/openbmc/linux/drivers/infiniband/hw/mlx5/cong.c
/openbmc/linux/drivers/infiniband/hw/mlx5/devx.c
/openbmc/linux/drivers/infiniband/hw/mlx5/mad.c
/openbmc/linux/drivers/infiniband/hw/mlx5/wr.c
/openbmc/linux/drivers/infiniband/hw/qedr/verbs.c
/openbmc/linux/drivers/infiniband/hw/qib/qib_fs.c
/openbmc/linux/drivers/infiniband/sw/rxe/rxe.c
/openbmc/linux/drivers/infiniband/ulp/rtrs/rtrs-clt-sysfs.c
/openbmc/linux/drivers/infiniband/ulp/srpt/ib_srpt.c
/openbmc/linux/drivers/input/joystick/xpad.c
/openbmc/linux/drivers/input/keyboard/gpio_keys_polled.c
/openbmc/linux/drivers/input/misc/iqs7222.c
/openbmc/linux/drivers/input/rmi4/rmi_driver.c
/openbmc/linux/drivers/input/serio/i8042-acpipnpio.h
/openbmc/linux/drivers/input/touchscreen/goodix.c
/openbmc/linux/drivers/input/touchscreen/imagis.c
/openbmc/linux/drivers/interconnect/core.c
/openbmc/linux/drivers/iommu/Kconfig
/openbmc/linux/drivers/iommu/amd/init.c
/openbmc/linux/drivers/iommu/dma-iommu.c
/openbmc/linux/drivers/iommu/intel/Makefile
/openbmc/linux/drivers/iommu/intel/pasid.c
/openbmc/linux/drivers/iommu/intel/perfmon.c
/openbmc/linux/drivers/iommu/intel/svm.c
/openbmc/linux/drivers/iommu/iommufd/io_pagetable.c
/openbmc/linux/drivers/iommu/irq_remapping.c
/openbmc/linux/drivers/iommu/mtk_iommu.c
/openbmc/linux/drivers/iommu/mtk_iommu_v1.c
/openbmc/linux/drivers/irqchip/irq-gic-v3-its.c
/openbmc/linux/drivers/irqchip/irq-mbigen.c
/openbmc/linux/drivers/irqchip/irq-renesas-rzg2l.c
/openbmc/linux/drivers/irqchip/irq-sifive-plic.c
/openbmc/linux/drivers/leds/flash/leds-sgm3140.c
/openbmc/linux/drivers/leds/leds-aw2013.c
/openbmc/linux/drivers/leds/trigger/ledtrig-netdev.c
/openbmc/linux/drivers/md/dm-bufio.c
/openbmc/linux/drivers/md/dm-core.h
/openbmc/linux/drivers/md/dm-crypt.c
/openbmc/linux/drivers/md/dm-integrity.c
/openbmc/linux/drivers/md/dm-io.c
/openbmc/linux/drivers/md/dm-ioctl.c
/openbmc/linux/drivers/md/dm-kcopyd.c
/openbmc/linux/drivers/md/dm-log.c
/openbmc/linux/drivers/md/dm-raid.c
/openbmc/linux/drivers/md/dm-raid1.c
/openbmc/linux/drivers/md/dm-snap-persistent.c
/openbmc/linux/drivers/md/dm-snap.c
/openbmc/linux/drivers/md/dm-table.c
/openbmc/linux/drivers/md/dm-verity-target.c
/openbmc/linux/drivers/md/dm-verity.h
/openbmc/linux/drivers/md/dm-writecache.c
/openbmc/linux/drivers/md/dm.c
/openbmc/linux/drivers/md/md-bitmap.c
/openbmc/linux/drivers/md/md.c
/openbmc/linux/drivers/md/raid1.c
/openbmc/linux/drivers/md/raid5.c
/openbmc/linux/drivers/media/cec/core/cec-adap.c
/openbmc/linux/drivers/media/common/v4l2-tpg/v4l2-tpg-core.c
/openbmc/linux/drivers/media/common/videobuf2/videobuf2-core.c
/openbmc/linux/drivers/media/dvb-core/dvbdev.c
/openbmc/linux/drivers/media/dvb-frontends/stv0367.c
/openbmc/linux/drivers/media/i2c/imx290.c
/openbmc/linux/drivers/media/i2c/tc358743.c
/openbmc/linux/drivers/media/mc/mc-entity.c
/openbmc/linux/drivers/media/pci/intel/ivsc/mei_csi.c
/openbmc/linux/drivers/media/pci/sta2x11/sta2x11_vip.c
/openbmc/linux/drivers/media/pci/ttpci/budget-av.c
/openbmc/linux/drivers/media/platform/cadence/cdns-csi2rx.c
/openbmc/linux/drivers/media/platform/mediatek/mdp/mtk_mdp_vpu.c
/openbmc/linux/drivers/media/platform/mediatek/vcodec/common/mtk_vcodec_fw_vpu.c
/openbmc/linux/drivers/media/platform/mediatek/vcodec/decoder/mtk_vcodec_dec_drv.c
/openbmc/linux/drivers/media/platform/mediatek/vcodec/decoder/mtk_vcodec_dec_drv.h
/openbmc/linux/drivers/media/platform/mediatek/vcodec/decoder/vdec/vdec_hevc_req_multi_if.c
/openbmc/linux/drivers/media/platform/mediatek/vcodec/decoder/vdec_vpu_if.c
/openbmc/linux/drivers/media/platform/mediatek/vcodec/encoder/mtk_vcodec_enc_drv.c
/openbmc/linux/drivers/media/platform/mediatek/vcodec/encoder/mtk_vcodec_enc_drv.h
/openbmc/linux/drivers/media/platform/mediatek/vcodec/encoder/venc_vpu_if.c
/openbmc/linux/drivers/media/platform/mediatek/vpu/mtk_vpu.c
/openbmc/linux/drivers/media/platform/mediatek/vpu/mtk_vpu.h
/openbmc/linux/drivers/media/platform/nxp/imx8-isi/imx8-isi-crossbar.c
/openbmc/linux/drivers/media/platform/rockchip/rkisp1/rkisp1-capture.c
/openbmc/linux/drivers/media/platform/rockchip/rkisp1/rkisp1-common.h
/openbmc/linux/drivers/media/platform/rockchip/rkisp1/rkisp1-csi.c
/openbmc/linux/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c
/openbmc/linux/drivers/media/platform/rockchip/rkisp1/rkisp1-isp.c
/openbmc/linux/drivers/media/platform/sunxi/sun8i-di/sun8i-di.c
/openbmc/linux/drivers/media/tuners/xc4000.c
/openbmc/linux/drivers/media/usb/em28xx/em28xx-cards.c
/openbmc/linux/drivers/media/usb/go7007/go7007-driver.c
/openbmc/linux/drivers/media/usb/go7007/go7007-usb.c
/openbmc/linux/drivers/media/usb/pvrusb2/pvrusb2-context.c
/openbmc/linux/drivers/media/usb/pvrusb2/pvrusb2-dvb.c
/openbmc/linux/drivers/media/usb/pvrusb2/pvrusb2-v4l2.c
/openbmc/linux/drivers/media/v4l2-core/v4l2-cci.c
/openbmc/linux/drivers/media/v4l2-core/v4l2-mem2mem.c
/openbmc/linux/drivers/memory/tegra/tegra234.c
/openbmc/linux/drivers/mfd/altera-sysmgr.c
/openbmc/linux/drivers/mfd/cs42l43.c
/openbmc/linux/drivers/mfd/syscon.c
/openbmc/linux/drivers/misc/eeprom/at24.c
/openbmc/linux/drivers/misc/fastrpc.c
/openbmc/linux/drivers/misc/lis3lv02d/lis3lv02d_i2c.c
/openbmc/linux/drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c
/openbmc/linux/drivers/misc/mei/hw-me-regs.h
/openbmc/linux/drivers/misc/mei/pci-me.c
/openbmc/linux/drivers/misc/open-dice.c
/openbmc/linux/drivers/misc/vmw_vmci/vmci_datagram.c
/openbmc/linux/drivers/mmc/core/block.c
/openbmc/linux/drivers/mmc/core/mmc.c
/openbmc/linux/drivers/mmc/host/mmci_stm32_sdmmc.c
/openbmc/linux/drivers/mmc/host/omap.c
/openbmc/linux/drivers/mmc/host/sdhci-msm.c
/openbmc/linux/drivers/mmc/host/sdhci-of-dwcmshc.c
/openbmc/linux/drivers/mmc/host/sdhci-omap.c
/openbmc/linux/drivers/mmc/host/sdhci-xenon-phy.c
/openbmc/linux/drivers/mmc/host/tmio_mmc_core.c
/openbmc/linux/drivers/mmc/host/wmt-sdmmc.c
/openbmc/linux/drivers/mtd/maps/physmap-core.c
/openbmc/linux/drivers/mtd/mtdcore.c
/openbmc/linux/drivers/mtd/nand/raw/diskonchip.c
/openbmc/linux/drivers/mtd/nand/raw/lpc32xx_mlc.c
/openbmc/linux/drivers/mtd/nand/raw/marvell_nand.c
/openbmc/linux/drivers/mtd/nand/raw/meson_nand.c
/openbmc/linux/drivers/mtd/nand/raw/nand_base.c
/openbmc/linux/drivers/mtd/nand/raw/qcom_nandc.c
/openbmc/linux/drivers/mtd/nand/spi/esmt.c
/openbmc/linux/drivers/mtd/nand/spi/gigadevice.c
/openbmc/linux/drivers/mtd/ubi/fastmap.c
/openbmc/linux/drivers/mtd/ubi/vtbl.c
/openbmc/linux/drivers/net/bonding/bond_main.c
/openbmc/linux/drivers/net/can/m_can/m_can.c
/openbmc/linux/drivers/net/dsa/microchip/ksz8795.c
/openbmc/linux/drivers/net/dsa/mt7530.c
/openbmc/linux/drivers/net/dsa/mt7530.h
/openbmc/linux/drivers/net/dsa/mv88e6xxx/chip.c
/openbmc/linux/drivers/net/dsa/mv88e6xxx/port.h
/openbmc/linux/drivers/net/dsa/sja1105/sja1105_mdio.c
/openbmc/linux/drivers/net/dummy.c
/openbmc/linux/drivers/net/ethernet/amazon/ena/Makefile
/openbmc/linux/drivers/net/ethernet/amazon/ena/ena_com.c
/openbmc/linux/drivers/net/ethernet/amazon/ena/ena_ethtool.c
/openbmc/linux/drivers/net/ethernet/amazon/ena/ena_netdev.c
/openbmc/linux/drivers/net/ethernet/amazon/ena/ena_netdev.h
/openbmc/linux/drivers/net/ethernet/amazon/ena/ena_xdp.c
/openbmc/linux/drivers/net/ethernet/amazon/ena/ena_xdp.h
/openbmc/linux/drivers/net/ethernet/amd/pds_core/auxbus.c
/openbmc/linux/drivers/net/ethernet/broadcom/asp2/bcmasp.c
/openbmc/linux/drivers/net/ethernet/broadcom/asp2/bcmasp_intf.c
/openbmc/linux/drivers/net/ethernet/broadcom/b44.c
/openbmc/linux/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
/openbmc/linux/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.h
/openbmc/linux/drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.c
/openbmc/linux/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.c
/openbmc/linux/drivers/net/ethernet/broadcom/bnxt/bnxt.c
/openbmc/linux/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c
/openbmc/linux/drivers/net/ethernet/broadcom/genet/bcmgenet.c
/openbmc/linux/drivers/net/ethernet/broadcom/genet/bcmgenet.h
/openbmc/linux/drivers/net/ethernet/broadcom/genet/bcmgenet_wol.c
/openbmc/linux/drivers/net/ethernet/broadcom/genet/bcmmii.c
/openbmc/linux/drivers/net/ethernet/brocade/bna/bnad_debugfs.c
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/sge.c
/openbmc/linux/drivers/net/ethernet/freescale/fec_main.c
/openbmc/linux/drivers/net/ethernet/freescale/fman/fman_memac.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hnae3.h
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3_common/hclge_comm_tqp_stats.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3_dcbnl.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_ptp.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h
/openbmc/linux/drivers/net/ethernet/intel/e1000/e1000_hw.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/80003es2lan.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/82571.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/ethtool.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/hw.h
/openbmc/linux/drivers/net/ethernet/intel/e1000e/ich8lan.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/mac.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/netdev.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/phy.c
/openbmc/linux/drivers/net/ethernet/intel/e1000e/phy.h
/openbmc/linux/drivers/net/ethernet/intel/fm10k/fm10k_pf.c
/openbmc/linux/drivers/net/ethernet/intel/fm10k/fm10k_vf.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_adminq.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_adminq.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_adminq_cmd.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_alloc.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_client.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_common.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_dcb.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_dcb_nl.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_ddp.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_debug.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_debugfs.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_diag.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_ethtool.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_hmc.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_hmc.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_io.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_lan_hmc.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_main.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_nvm.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_prototype.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_ptp.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_register.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_txrx.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_txrx.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_txrx_common.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_type.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_xsk.c
/openbmc/linux/drivers/net/ethernet/intel/i40e/i40e_xsk.h
/openbmc/linux/drivers/net/ethernet/intel/iavf/iavf_common.c
/openbmc/linux/drivers/net/ethernet/intel/iavf/iavf_ethtool.c
/openbmc/linux/drivers/net/ethernet/intel/iavf/iavf_fdir.c
/openbmc/linux/drivers/net/ethernet/intel/iavf/iavf_main.c
/openbmc/linux/drivers/net/ethernet/intel/iavf/iavf_txrx.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_lag.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_lib.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_main.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_switch.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_switch.h
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_tc_lib.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_vf_lib.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_vf_vsi_vlan_ops.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_virtchnl.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_virtchnl.h
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_virtchnl_allowlist.c
/openbmc/linux/drivers/net/ethernet/intel/ice/ice_xsk.c
/openbmc/linux/drivers/net/ethernet/intel/igb/e1000_82575.c
/openbmc/linux/drivers/net/ethernet/intel/igb/e1000_i210.c
/openbmc/linux/drivers/net/ethernet/intel/igb/e1000_mac.c
/openbmc/linux/drivers/net/ethernet/intel/igb/e1000_nvm.c
/openbmc/linux/drivers/net/ethernet/intel/igb/e1000_phy.c
/openbmc/linux/drivers/net/ethernet/intel/igb/igb_ethtool.c
/openbmc/linux/drivers/net/ethernet/intel/igb/igb_main.c
/openbmc/linux/drivers/net/ethernet/intel/igb/igb_ptp.c
/openbmc/linux/drivers/net/ethernet/intel/igbvf/mbx.c
/openbmc/linux/drivers/net/ethernet/intel/igbvf/netdev.c
/openbmc/linux/drivers/net/ethernet/intel/igc/igc_i225.c
/openbmc/linux/drivers/net/ethernet/intel/igc/igc_main.c
/openbmc/linux/drivers/net/ethernet/intel/igc/igc_phy.c
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/cgx.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/mbox.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/mbox.h
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/mcs_rvu_if.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/rvu.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/rvu.h
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/rvu_debugfs.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/nic/otx2_tc.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/nic/qos.c
/openbmc/linux/drivers/net/ethernet/mediatek/mtk_eth_soc.c
/openbmc/linux/drivers/net/ethernet/mediatek/mtk_ppe.c
/openbmc/linux/drivers/net/ethernet/mediatek/mtk_wed.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/ptp.h
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/qos.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/selq.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en_main.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en_tx.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/eswitch.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/lag/lag.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/main.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/sf/dev/driver.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/core.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_keys.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/core_env.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.h
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
/openbmc/linux/drivers/net/ethernet/micrel/ks8851.h
/openbmc/linux/drivers/net/ethernet/micrel/ks8851_common.c
/openbmc/linux/drivers/net/ethernet/micrel/ks8851_par.c
/openbmc/linux/drivers/net/ethernet/micrel/ks8851_spi.c
/openbmc/linux/drivers/net/ethernet/microchip/lan743x_main.c
/openbmc/linux/drivers/net/ethernet/microchip/lan743x_main.h
/openbmc/linux/drivers/net/ethernet/microchip/sparx5/sparx5_mactable.c
/openbmc/linux/drivers/net/ethernet/microchip/sparx5/sparx5_main.c
/openbmc/linux/drivers/net/ethernet/microchip/sparx5/sparx5_main.h
/openbmc/linux/drivers/net/ethernet/microchip/sparx5/sparx5_packet.c
/openbmc/linux/drivers/net/ethernet/microchip/sparx5/sparx5_port.c
/openbmc/linux/drivers/net/ethernet/microchip/sparx5/sparx5_tc_flower.c
/openbmc/linux/drivers/net/ethernet/microsoft/mana/mana_en.c
/openbmc/linux/drivers/net/ethernet/netronome/nfp/flower/lag_conf.c
/openbmc/linux/drivers/net/ethernet/pensando/ionic/ionic_lif.c
/openbmc/linux/drivers/net/ethernet/qlogic/qede/qede_filter.c
/openbmc/linux/drivers/net/ethernet/realtek/r8169_main.c
/openbmc/linux/drivers/net/ethernet/renesas/ravb_main.c
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/Kconfig
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/common.h
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/dwmac100_core.c
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c
/openbmc/linux/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
/openbmc/linux/drivers/net/ethernet/ti/am65-cpsw-nuss.c
/openbmc/linux/drivers/net/ethernet/ti/am65-cpts.c
/openbmc/linux/drivers/net/ethernet/ti/icssg/icssg_prueth.c
/openbmc/linux/drivers/net/ethernet/wangxun/libwx/wx_lib.c
/openbmc/linux/drivers/net/ethernet/wangxun/txgbe/txgbe_phy.c
/openbmc/linux/drivers/net/ethernet/xilinx/ll_temac_main.c
/openbmc/linux/drivers/net/geneve.c
/openbmc/linux/drivers/net/gtp.c
/openbmc/linux/drivers/net/hyperv/netvsc.c
/openbmc/linux/drivers/net/ipa/ipa_interrupt.c
/openbmc/linux/drivers/net/loopback.c
/openbmc/linux/drivers/net/macsec.c
/openbmc/linux/drivers/net/pcs/pcs-xpcs.c
/openbmc/linux/drivers/net/phy/dp83822.c
/openbmc/linux/drivers/net/phy/dp83869.c
/openbmc/linux/drivers/net/phy/mediatek-ge-soc.c
/openbmc/linux/drivers/net/phy/micrel.c
/openbmc/linux/drivers/net/phy/phy_device.c
/openbmc/linux/drivers/net/phy/realtek.c
/openbmc/linux/drivers/net/tun.c
/openbmc/linux/drivers/net/usb/ax88179_178a.c
/openbmc/linux/drivers/net/usb/dm9601.c
/openbmc/linux/drivers/net/usb/lan78xx.c
/openbmc/linux/drivers/net/usb/qmi_wwan.c
/openbmc/linux/drivers/net/usb/smsc95xx.c
/openbmc/linux/drivers/net/usb/sr9800.c
/openbmc/linux/drivers/net/veth.c
/openbmc/linux/drivers/net/virtio_net.c
/openbmc/linux/drivers/net/vmxnet3/vmxnet3_xdp.c
/openbmc/linux/drivers/net/vxlan/vxlan_core.c
/openbmc/linux/drivers/net/wireguard/netlink.c
/openbmc/linux/drivers/net/wireguard/receive.c
/openbmc/linux/drivers/net/wireless/ath/ath10k/wmi-tlv.c
/openbmc/linux/drivers/net/wireless/ath/ath11k/mac.c
/openbmc/linux/drivers/net/wireless/ath/ath11k/mhi.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/core.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/dbring.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/debug.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/dp_tx.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/hal.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/hal.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/hal_rx.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/hif.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/hw.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/hw.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/mac.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/mac.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/mhi.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/pci.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/pci.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/peer.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/qmi.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/qmi.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/reg.c
/openbmc/linux/drivers/net/wireless/ath/ath12k/reg.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/rx_desc.h
/openbmc/linux/drivers/net/wireless/ath/ath12k/wmi.c
/openbmc/linux/drivers/net/wireless/ath/ath9k/antenna.c
/openbmc/linux/drivers/net/wireless/ath/ath9k/htc.h
/openbmc/linux/drivers/net/wireless/ath/ath9k/htc_drv_init.c
/openbmc/linux/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c
/openbmc/linux/drivers/net/wireless/ath/ath9k/wmi.c
/openbmc/linux/drivers/net/wireless/broadcom/b43/b43.h
/openbmc/linux/drivers/net/wireless/broadcom/b43/dma.c
/openbmc/linux/drivers/net/wireless/broadcom/b43/main.c
/openbmc/linux/drivers/net/wireless/broadcom/b43/pio.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/bca/core.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.h
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cyw/core.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/feature.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil_types.h
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwvid.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwvid.h
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/wcc/core.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_cmn.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.c
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.h
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/cfg/ax210.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/cfg/bz.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/fw/acpi.h
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/fw/dbg.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/fw/pnvm.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/iwl-trans.h
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/d3.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/mld-key.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/mld-mac.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/mld-sta.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/scan.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/tx.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/pcie/drv.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/pcie/internal.h
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/pcie/rx.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/queue/tx.c
/openbmc/linux/drivers/net/wireless/marvell/libertas/cmd.c
/openbmc/linux/drivers/net/wireless/marvell/mwifiex/debugfs.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7915/mmio.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7915/mt7915.h
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7921/pci.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt792x_acpi_sar.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt792x_core.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt792x_dma.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7996/init.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7996/mac.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7996/mcu.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7996/mmio.c
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7996/mt7996.h
/openbmc/linux/drivers/net/wireless/microchip/wilc1000/cfg80211.c
/openbmc/linux/drivers/net/wireless/microchip/wilc1000/hif.c
/openbmc/linux/drivers/net/wireless/microchip/wilc1000/netdev.c
/openbmc/linux/drivers/net/wireless/microchip/wilc1000/spi.c
/openbmc/linux/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
/openbmc/linux/drivers/net/wireless/realtek/rtw88/mac.c
/openbmc/linux/drivers/net/wireless/realtek/rtw88/main.c
/openbmc/linux/drivers/net/wireless/realtek/rtw88/phy.c
/openbmc/linux/drivers/net/wireless/realtek/rtw88/rtw8821c.c
/openbmc/linux/drivers/net/wireless/realtek/rtw88/rtw8821cu.c
/openbmc/linux/drivers/net/wireless/realtek/rtw88/usb.c
/openbmc/linux/drivers/net/wireless/realtek/rtw89/mac80211.c
/openbmc/linux/drivers/net/wireless/realtek/rtw89/pci.h
/openbmc/linux/drivers/net/wireless/silabs/wfx/sta.c
/openbmc/linux/drivers/net/wireless/virtual/mac80211_hwsim.c
/openbmc/linux/drivers/net/wwan/t7xx/t7xx_cldma.c
/openbmc/linux/drivers/net/wwan/t7xx/t7xx_hif_cldma.c
/openbmc/linux/drivers/net/wwan/t7xx/t7xx_pcie_mac.c
/openbmc/linux/drivers/net/xen-netfront.c
/openbmc/linux/drivers/nfc/trf7970a.c
/openbmc/linux/drivers/ntb/core.c
/openbmc/linux/drivers/nvme/host/core.c
/openbmc/linux/drivers/nvme/host/fabrics.h
/openbmc/linux/drivers/nvme/host/fc.c
/openbmc/linux/drivers/nvme/host/nvme.h
/openbmc/linux/drivers/nvme/host/pci.c
/openbmc/linux/drivers/nvme/target/fc.c
/openbmc/linux/drivers/nvme/target/fcloop.c
/openbmc/linux/drivers/nvme/target/tcp.c
/openbmc/linux/drivers/nvmem/apple-efuses.c
/openbmc/linux/drivers/nvmem/core.c
/openbmc/linux/drivers/nvmem/imx-ocotp-scu.c
/openbmc/linux/drivers/nvmem/imx-ocotp.c
/openbmc/linux/drivers/nvmem/meson-efuse.c
/openbmc/linux/drivers/nvmem/meson-mx-efuse.c
/openbmc/linux/drivers/nvmem/microchip-otpc.c
/openbmc/linux/drivers/nvmem/mtk-efuse.c
/openbmc/linux/drivers/nvmem/qcom-spmi-sdam.c
/openbmc/linux/drivers/nvmem/qfprom.c
/openbmc/linux/drivers/nvmem/rave-sp-eeprom.c
/openbmc/linux/drivers/nvmem/rockchip-efuse.c
/openbmc/linux/drivers/nvmem/sc27xx-efuse.c
/openbmc/linux/drivers/nvmem/sec-qfprom.c
/openbmc/linux/drivers/nvmem/sprd-efuse.c
/openbmc/linux/drivers/nvmem/stm32-romem.c
/openbmc/linux/drivers/nvmem/sunplus-ocotp.c
/openbmc/linux/drivers/nvmem/sunxi_sid.c
/openbmc/linux/drivers/nvmem/uniphier-efuse.c
/openbmc/linux/drivers/nvmem/zynqmp_nvmem.c
/openbmc/linux/drivers/of/dynamic.c
/openbmc/linux/drivers/of/module.c
/openbmc/linux/drivers/of/property.c
/openbmc/linux/drivers/opp/debugfs.c
/openbmc/linux/drivers/pci/bus.c
/openbmc/linux/drivers/pci/controller/dwc/pcie-designware-ep.c
/openbmc/linux/drivers/pci/controller/dwc/pcie-qcom.c
/openbmc/linux/drivers/pci/controller/pci-hyperv.c
/openbmc/linux/drivers/pci/controller/pcie-brcmstb.c
/openbmc/linux/drivers/pci/endpoint/functions/pci-epf-vntb.c
/openbmc/linux/drivers/pci/msi/irqdomain.c
/openbmc/linux/drivers/pci/p2pdma.c
/openbmc/linux/drivers/pci/pci-driver.c
/openbmc/linux/drivers/pci/pci.c
/openbmc/linux/drivers/pci/pci.h
/openbmc/linux/drivers/pci/pcie/aspm.c
/openbmc/linux/drivers/pci/pcie/dpc.c
/openbmc/linux/drivers/pci/pcie/err.c
/openbmc/linux/drivers/pci/quirks.c
/openbmc/linux/drivers/pci/switch/switchtec.c
/openbmc/linux/drivers/perf/arm-cmn.c
/openbmc/linux/drivers/perf/cxl_pmu.c
/openbmc/linux/drivers/perf/hisilicon/hisi_uncore_uc_pmu.c
/openbmc/linux/drivers/perf/riscv_pmu.c
/openbmc/linux/drivers/perf/riscv_pmu_legacy.c
/openbmc/linux/drivers/perf/riscv_pmu_sbi.c
/openbmc/linux/drivers/phy/freescale/phy-fsl-imx8-mipi-dphy.c
/openbmc/linux/drivers/phy/freescale/phy-fsl-imx8m-pcie.c
/openbmc/linux/drivers/phy/marvell/phy-mvebu-a3700-comphy.c
/openbmc/linux/drivers/phy/qualcomm/phy-qcom-m31.c
/openbmc/linux/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
/openbmc/linux/drivers/phy/qualcomm/phy-qcom-qmp.h
/openbmc/linux/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
/openbmc/linux/drivers/phy/rockchip/phy-rockchip-snps-pcie3.c
/openbmc/linux/drivers/phy/tegra/xusb.c
/openbmc/linux/drivers/phy/ti/phy-tusb1210.c
/openbmc/linux/drivers/pinctrl/aspeed/pinctrl-aspeed-g6.c
/openbmc/linux/drivers/pinctrl/core.c
/openbmc/linux/drivers/pinctrl/devicetree.c
/openbmc/linux/drivers/pinctrl/intel/pinctrl-baytrail.c
/openbmc/linux/drivers/pinctrl/intel/pinctrl-intel.h
/openbmc/linux/drivers/pinctrl/mediatek/pinctrl-mt8186.c
/openbmc/linux/drivers/pinctrl/mediatek/pinctrl-mt8192.c
/openbmc/linux/drivers/pinctrl/mediatek/pinctrl-paris.c
/openbmc/linux/drivers/pinctrl/meson/pinctrl-meson-a1.c
/openbmc/linux/drivers/pinctrl/nomadik/pinctrl-nomadik.c
/openbmc/linux/drivers/pinctrl/renesas/core.c
/openbmc/linux/drivers/pinctrl/renesas/pfc-r8a779g0.c
/openbmc/linux/drivers/platform/chrome/cros_ec_uart.c
/openbmc/linux/drivers/platform/mellanox/mlxbf-tmfifo.c
/openbmc/linux/drivers/platform/x86/amd/pmc/pmc-quirks.c
/openbmc/linux/drivers/platform/x86/intel/speed_select_if/isst_if_common.c
/openbmc/linux/drivers/platform/x86/intel/tpmi.c
/openbmc/linux/drivers/platform/x86/intel/vbtn.c
/openbmc/linux/drivers/platform/x86/p2sb.c
/openbmc/linux/drivers/platform/x86/thinkpad_acpi.c
/openbmc/linux/drivers/platform/x86/touchscreen_dmi.c
/openbmc/linux/drivers/platform/x86/x86-android-tablets/other.c
/openbmc/linux/drivers/pmdomain/imx/imx8mp-blk-ctrl.c
/openbmc/linux/drivers/pmdomain/qcom/rpmhpd.c
/openbmc/linux/drivers/pmdomain/ti/omap_prm.c
/openbmc/linux/drivers/power/supply/bq27xxx_battery_i2c.c
/openbmc/linux/drivers/power/supply/mt6360_charger.c
/openbmc/linux/drivers/power/supply/rt9455_charger.c
/openbmc/linux/drivers/powercap/dtpm_cpu.c
/openbmc/linux/drivers/powercap/intel_rapl_common.c
/openbmc/linux/drivers/powercap/intel_rapl_msr.c
/openbmc/linux/drivers/powercap/intel_rapl_tpmi.c
/openbmc/linux/drivers/pwm/pwm-atmel-hlcdc.c
/openbmc/linux/drivers/pwm/pwm-img.c
/openbmc/linux/drivers/pwm/pwm-sti.c
/openbmc/linux/drivers/regulator/core.c
/openbmc/linux/drivers/regulator/max5970-regulator.c
/openbmc/linux/drivers/regulator/mt6360-regulator.c
/openbmc/linux/drivers/regulator/pwm-regulator.c
/openbmc/linux/drivers/regulator/tps65132-regulator.c
/openbmc/linux/drivers/regulator/userspace-consumer.c
/openbmc/linux/drivers/remoteproc/remoteproc_virtio.c
/openbmc/linux/drivers/remoteproc/stm32_rproc.c
/openbmc/linux/drivers/rtc/Kconfig
/openbmc/linux/drivers/rtc/lib_test.c
/openbmc/linux/drivers/rtc/nvmem.c
/openbmc/linux/drivers/s390/block/dasd.c
/openbmc/linux/drivers/s390/cio/cio_inject.c
/openbmc/linux/drivers/s390/cio/device.c
/openbmc/linux/drivers/s390/cio/device_ops.c
/openbmc/linux/drivers/s390/cio/qdio_main.c
/openbmc/linux/drivers/s390/crypto/zcrypt_api.c
/openbmc/linux/drivers/s390/net/ism_drv.c
/openbmc/linux/drivers/s390/net/qeth_core_main.c
/openbmc/linux/drivers/scsi/Kconfig
/openbmc/linux/drivers/scsi/bfa/bfa.h
/openbmc/linux/drivers/scsi/bfa/bfa_core.c
/openbmc/linux/drivers/scsi/bfa/bfa_ioc.h
/openbmc/linux/drivers/scsi/bfa/bfad_bsg.c
/openbmc/linux/drivers/scsi/bnx2fc/bnx2fc_tgt.c
/openbmc/linux/drivers/scsi/csiostor/csio_defs.h
/openbmc/linux/drivers/scsi/csiostor/csio_lnode.c
/openbmc/linux/drivers/scsi/csiostor/csio_lnode.h
/openbmc/linux/drivers/scsi/hisi_sas/hisi_sas_main.c
/openbmc/linux/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
/openbmc/linux/drivers/scsi/hosts.c
/openbmc/linux/drivers/scsi/libsas/sas_expander.c
/openbmc/linux/drivers/scsi/lpfc/lpfc.h
/openbmc/linux/drivers/scsi/lpfc/lpfc_attr.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_bsg.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_debugfs.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_els.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_hbadisc.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_init.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_nportdisc.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_nvme.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_nvmet.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_scsi.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_sli.c
/openbmc/linux/drivers/scsi/lpfc/lpfc_vport.c
/openbmc/linux/drivers/scsi/mpi3mr/mpi3mr_app.c
/openbmc/linux/drivers/scsi/mpt3sas/mpt3sas_base.c
/openbmc/linux/drivers/scsi/myrb.c
/openbmc/linux/drivers/scsi/myrs.c
/openbmc/linux/drivers/scsi/qla2xxx/qla_attr.c
/openbmc/linux/drivers/scsi/qla2xxx/qla_def.h
/openbmc/linux/drivers/scsi/qla2xxx/qla_edif.c
/openbmc/linux/drivers/scsi/qla2xxx/qla_gbl.h
/openbmc/linux/drivers/scsi/qla2xxx/qla_init.c
/openbmc/linux/drivers/scsi/qla2xxx/qla_iocb.c
/openbmc/linux/drivers/scsi/qla2xxx/qla_mbx.c
/openbmc/linux/drivers/scsi/qla2xxx/qla_os.c
/openbmc/linux/drivers/scsi/qla2xxx/qla_target.c
/openbmc/linux/drivers/scsi/scsi.c
/openbmc/linux/drivers/scsi/scsi_lib.c
/openbmc/linux/drivers/scsi/scsi_scan.c
/openbmc/linux/drivers/scsi/sd.c
/openbmc/linux/drivers/scsi/sg.c
/openbmc/linux/drivers/scsi/smartpqi/smartpqi.h
/openbmc/linux/drivers/scsi/smartpqi/smartpqi_init.c
/openbmc/linux/drivers/slimbus/core.c
/openbmc/linux/drivers/slimbus/qcom-ngd-ctrl.c
/openbmc/linux/drivers/soc/fsl/dpio/dpio-service.c
/openbmc/linux/drivers/soc/fsl/qbman/qman.c
/openbmc/linux/drivers/soc/microchip/Kconfig
/openbmc/linux/drivers/soc/qcom/llcc-qcom.c
/openbmc/linux/drivers/soc/qcom/pmic_glink.c
/openbmc/linux/drivers/soc/qcom/pmic_glink_altmode.c
/openbmc/linux/drivers/soc/qcom/socinfo.c
/openbmc/linux/drivers/soundwire/amd_manager.c
/openbmc/linux/drivers/soundwire/amd_manager.h
/openbmc/linux/drivers/soundwire/dmi-quirks.c
/openbmc/linux/drivers/spi/spi-axi-spi-engine.c
/openbmc/linux/drivers/spi/spi-cadence-quadspi.c
/openbmc/linux/drivers/spi/spi-cs42l43.c
/openbmc/linux/drivers/spi/spi-fsl-lpspi.c
/openbmc/linux/drivers/spi/spi-hisi-kunpeng.c
/openbmc/linux/drivers/spi/spi-hisi-sfc-v3xx.c
/openbmc/linux/drivers/spi/spi-imx.c
/openbmc/linux/drivers/spi/spi-intel-pci.c
/openbmc/linux/drivers/spi/spi-microchip-core-qspi.c
/openbmc/linux/drivers/spi/spi-mt65xx.c
/openbmc/linux/drivers/spi/spi-pci1xxxx.c
/openbmc/linux/drivers/spi/spi-s3c64xx.c
/openbmc/linux/drivers/spi/spi-sh-msiof.c
/openbmc/linux/drivers/spi/spi.c
/openbmc/linux/drivers/staging/greybus/light.c
/openbmc/linux/drivers/staging/media/imx/imx-media-csc-scaler.c
/openbmc/linux/drivers/staging/media/ipu3/ipu3-v4l2.c
/openbmc/linux/drivers/staging/media/sunxi/cedrus/cedrus_h265.c
/openbmc/linux/drivers/staging/vc04_services/vchiq-mmal/mmal-vchiq.c
/openbmc/linux/drivers/target/target_core_configfs.c
/openbmc/linux/drivers/target/target_core_device.c
/openbmc/linux/drivers/target/target_core_pscsi.c
/openbmc/linux/drivers/target/target_core_transport.c
/openbmc/linux/drivers/tee/optee/device.c
/openbmc/linux/drivers/thermal/devfreq_cooling.c
/openbmc/linux/drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
/openbmc/linux/drivers/thermal/intel/int340x_thermal/processor_thermal_rapl.c
/openbmc/linux/drivers/thermal/intel/intel_tcc.c
/openbmc/linux/drivers/thermal/intel/x86_pkg_temp_thermal.c
/openbmc/linux/drivers/thermal/mediatek/auxadc_thermal.c
/openbmc/linux/drivers/thermal/mediatek/lvts_thermal.c
/openbmc/linux/drivers/thermal/qoriq_thermal.c
/openbmc/linux/drivers/thermal/thermal_of.c
/openbmc/linux/drivers/thunderbolt/domain.c
/openbmc/linux/drivers/thunderbolt/icm.c
/openbmc/linux/drivers/thunderbolt/lc.c
/openbmc/linux/drivers/thunderbolt/nhi.c
/openbmc/linux/drivers/thunderbolt/path.c
/openbmc/linux/drivers/thunderbolt/quirks.c
/openbmc/linux/drivers/thunderbolt/switch.c
/openbmc/linux/drivers/thunderbolt/tb.c
/openbmc/linux/drivers/thunderbolt/tb.h
/openbmc/linux/drivers/thunderbolt/tb_regs.h
/openbmc/linux/drivers/thunderbolt/usb4.c
/openbmc/linux/drivers/tty/serial/8250/8250_exar.c
/openbmc/linux/drivers/tty/serial/8250/8250_port.c
/openbmc/linux/drivers/tty/serial/amba-pl011.c
/openbmc/linux/drivers/tty/serial/fsl_lpuart.c
/openbmc/linux/drivers/tty/serial/imx.c
/openbmc/linux/drivers/tty/serial/max310x.c
/openbmc/linux/drivers/tty/serial/mxs-auart.c
/openbmc/linux/drivers/tty/serial/pmac_zilog.c
/openbmc/linux/drivers/tty/serial/qcom_geni_serial.c
/openbmc/linux/drivers/tty/serial/samsung_tty.c
/openbmc/linux/drivers/tty/serial/serial_base.h
/openbmc/linux/drivers/tty/serial/serial_core.c
/openbmc/linux/drivers/tty/serial/serial_port.c
/openbmc/linux/drivers/tty/serial/stm32-usart.c
/openbmc/linux/drivers/tty/vt/vt.c
/openbmc/linux/drivers/ufs/core/ufs-mcq.c
/openbmc/linux/drivers/ufs/core/ufshcd.c
/openbmc/linux/drivers/ufs/host/ufs-qcom.c
/openbmc/linux/drivers/uio/uio_hv_generic.c
/openbmc/linux/drivers/usb/cdns3/cdns3-gadget.c
/openbmc/linux/drivers/usb/cdns3/core.c
/openbmc/linux/drivers/usb/cdns3/drd.c
/openbmc/linux/drivers/usb/cdns3/drd.h
/openbmc/linux/drivers/usb/cdns3/host.c
/openbmc/linux/drivers/usb/core/hub.c
/openbmc/linux/drivers/usb/core/hub.h
/openbmc/linux/drivers/usb/core/port.c
/openbmc/linux/drivers/usb/core/quirks.c
/openbmc/linux/drivers/usb/core/sysfs.c
/openbmc/linux/drivers/usb/dwc2/core.h
/openbmc/linux/drivers/usb/dwc2/core_intr.c
/openbmc/linux/drivers/usb/dwc2/gadget.c
/openbmc/linux/drivers/usb/dwc2/hcd.c
/openbmc/linux/drivers/usb/dwc2/hcd_ddma.c
/openbmc/linux/drivers/usb/dwc2/hw.h
/openbmc/linux/drivers/usb/dwc2/platform.c
/openbmc/linux/drivers/usb/dwc3/core.c
/openbmc/linux/drivers/usb/dwc3/core.h
/openbmc/linux/drivers/usb/dwc3/dwc3-am62.c
/openbmc/linux/drivers/usb/dwc3/dwc3-pci.c
/openbmc/linux/drivers/usb/dwc3/gadget.c
/openbmc/linux/drivers/usb/dwc3/host.c
/openbmc/linux/drivers/usb/gadget/composite.c
/openbmc/linux/drivers/usb/gadget/function/f_fs.c
/openbmc/linux/drivers/usb/gadget/function/f_ncm.c
/openbmc/linux/drivers/usb/gadget/function/uvc_configfs.c
/openbmc/linux/drivers/usb/gadget/function/uvc_video.c
/openbmc/linux/drivers/usb/gadget/udc/core.c
/openbmc/linux/drivers/usb/gadget/udc/net2272.c
/openbmc/linux/drivers/usb/gadget/udc/omap_udc.c
/openbmc/linux/drivers/usb/gadget/udc/tegra-xudc.c
/openbmc/linux/drivers/usb/host/ohci-hcd.c
/openbmc/linux/drivers/usb/host/sl811-hcd.c
/openbmc/linux/drivers/usb/host/xhci-mem.c
/openbmc/linux/drivers/usb/host/xhci-plat.h
/openbmc/linux/drivers/usb/host/xhci-ring.c
/openbmc/linux/drivers/usb/host/xhci-rzv2m.c
/openbmc/linux/drivers/usb/host/xhci.c
/openbmc/linux/drivers/usb/host/xhci.h
/openbmc/linux/drivers/usb/roles/class.c
/openbmc/linux/drivers/usb/serial/cp210x.c
/openbmc/linux/drivers/usb/serial/ftdi_sio.c
/openbmc/linux/drivers/usb/serial/ftdi_sio_ids.h
/openbmc/linux/drivers/usb/serial/option.c
/openbmc/linux/drivers/usb/storage/isd200.c
/openbmc/linux/drivers/usb/storage/scsiglue.c
/openbmc/linux/drivers/usb/storage/uas.c
/openbmc/linux/drivers/usb/typec/altmodes/displayport.c
/openbmc/linux/drivers/usb/typec/class.c
/openbmc/linux/drivers/usb/typec/tcpm/tcpci.c
/openbmc/linux/drivers/usb/typec/tcpm/tcpm.c
/openbmc/linux/drivers/usb/typec/ucsi/ucsi.c
/openbmc/linux/drivers/usb/typec/ucsi/ucsi.h
/openbmc/linux/drivers/usb/typec/ucsi/ucsi_acpi.c
/openbmc/linux/drivers/usb/typec/ucsi/ucsi_glink.c
/openbmc/linux/drivers/vdpa/mlx5/net/mlx5_vnet.c
/openbmc/linux/drivers/vdpa/vdpa_sim/vdpa_sim.c
/openbmc/linux/drivers/vfio/fsl-mc/vfio_fsl_mc_intr.c
/openbmc/linux/drivers/vfio/iova_bitmap.c
/openbmc/linux/drivers/vfio/pci/pds/lm.c
/openbmc/linux/drivers/vfio/pci/pds/lm.h
/openbmc/linux/drivers/vfio/pci/pds/vfio_dev.c
/openbmc/linux/drivers/vfio/pci/vfio_pci_intrs.c
/openbmc/linux/drivers/vfio/platform/vfio_platform_irq.c
/openbmc/linux/drivers/vfio/virqfd.c
/openbmc/linux/drivers/vhost/vhost.c
/openbmc/linux/drivers/video/backlight/da9052_bl.c
/openbmc/linux/drivers/video/backlight/ktz8866.c
/openbmc/linux/drivers/video/backlight/lm3630a_bl.c
/openbmc/linux/drivers/video/backlight/lm3639_bl.c
/openbmc/linux/drivers/video/backlight/lp8788_bl.c
/openbmc/linux/drivers/video/fbdev/core/fb_defio.c
/openbmc/linux/drivers/video/fbdev/core/fbcon.c
/openbmc/linux/drivers/video/fbdev/core/fbmon.c
/openbmc/linux/drivers/video/fbdev/savage/savagefb_driver.c
/openbmc/linux/drivers/video/fbdev/sis/sis_main.c
/openbmc/linux/drivers/video/fbdev/via/accel.c
/openbmc/linux/drivers/virtio/virtio.c
/openbmc/linux/drivers/virtio/virtio_ring.c
/openbmc/linux/drivers/w1/slaves/w1_ds250x.c
/openbmc/linux/drivers/watchdog/starfive-wdt.c
/openbmc/linux/drivers/watchdog/stm32_iwdg.c
/openbmc/linux/drivers/xen/balloon.c
/openbmc/linux/drivers/xen/events/events_2l.c
/openbmc/linux/drivers/xen/events/events_base.c
/openbmc/linux/drivers/xen/events/events_internal.h
/openbmc/linux/drivers/xen/evtchn.c
/openbmc/linux/fs/9p/fid.h
/openbmc/linux/fs/9p/vfs_file.c
/openbmc/linux/fs/9p/vfs_inode.c
/openbmc/linux/fs/9p/vfs_super.c
/openbmc/linux/fs/afs/dir.c
/openbmc/linux/fs/afs/volume.c
/openbmc/linux/fs/aio.c
/openbmc/linux/fs/btrfs/backref.c
/openbmc/linux/fs/btrfs/block-group.c
/openbmc/linux/fs/btrfs/block-rsv.c
/openbmc/linux/fs/btrfs/block-rsv.h
/openbmc/linux/fs/btrfs/defrag.c
/openbmc/linux/fs/btrfs/delayed-inode.c
/openbmc/linux/fs/btrfs/dev-replace.c
/openbmc/linux/fs/btrfs/disk-io.c
/openbmc/linux/fs/btrfs/disk-io.h
/openbmc/linux/fs/btrfs/export.c
/openbmc/linux/fs/btrfs/extent_io.c
/openbmc/linux/fs/btrfs/extent_map.c
/openbmc/linux/fs/btrfs/inode.c
/openbmc/linux/fs/btrfs/ioctl.c
/openbmc/linux/fs/btrfs/ordered-data.c
/openbmc/linux/fs/btrfs/qgroup.c
/openbmc/linux/fs/btrfs/root-tree.c
/openbmc/linux/fs/btrfs/root-tree.h
/openbmc/linux/fs/btrfs/scrub.c
/openbmc/linux/fs/btrfs/send.c
/openbmc/linux/fs/btrfs/space-info.c
/openbmc/linux/fs/btrfs/tests/extent-map-tests.c
/openbmc/linux/fs/btrfs/transaction.c
/openbmc/linux/fs/btrfs/volumes.c
/openbmc/linux/fs/cachefiles/cache.c
/openbmc/linux/fs/cachefiles/daemon.c
/openbmc/linux/fs/ceph/addr.c
/openbmc/linux/fs/ceph/cache.c
/openbmc/linux/fs/ceph/caps.c
/openbmc/linux/fs/ceph/crypto.c
/openbmc/linux/fs/ceph/debugfs.c
/openbmc/linux/fs/ceph/dir.c
/openbmc/linux/fs/ceph/export.c
/openbmc/linux/fs/ceph/file.c
/openbmc/linux/fs/ceph/inode.c
/openbmc/linux/fs/ceph/ioctl.c
/openbmc/linux/fs/ceph/mds_client.c
/openbmc/linux/fs/ceph/mds_client.h
/openbmc/linux/fs/ceph/mdsmap.c
/openbmc/linux/fs/ceph/snap.c
/openbmc/linux/fs/ceph/super.c
/openbmc/linux/fs/ceph/super.h
/openbmc/linux/fs/ceph/xattr.c
/openbmc/linux/fs/dlm/user.c
/openbmc/linux/fs/efivarfs/vars.c
/openbmc/linux/fs/erofs/data.c
/openbmc/linux/fs/erofs/fscache.c
/openbmc/linux/fs/erofs/internal.h
/openbmc/linux/fs/erofs/namei.c
/openbmc/linux/fs/erofs/super.c
/openbmc/linux/fs/exec.c
/openbmc/linux/fs/ext2/ext2.h
/openbmc/linux/fs/ext2/super.c
/openbmc/linux/fs/ext4/ext4.h
/openbmc/linux/fs/ext4/extents.c
/openbmc/linux/fs/ext4/mballoc.c
/openbmc/linux/fs/ext4/resize.c
/openbmc/linux/fs/ext4/super.c
/openbmc/linux/fs/f2fs/checkpoint.c
/openbmc/linux/fs/f2fs/compress.c
/openbmc/linux/fs/f2fs/data.c
/openbmc/linux/fs/f2fs/dir.c
/openbmc/linux/fs/f2fs/f2fs.h
/openbmc/linux/fs/f2fs/file.c
/openbmc/linux/fs/f2fs/gc.c
/openbmc/linux/fs/f2fs/inode.c
/openbmc/linux/fs/f2fs/namei.c
/openbmc/linux/fs/f2fs/node.c
/openbmc/linux/fs/f2fs/recovery.c
/openbmc/linux/fs/f2fs/segment.c
/openbmc/linux/fs/f2fs/segment.h
/openbmc/linux/fs/f2fs/super.c
/openbmc/linux/fs/fat/nfs.c
/openbmc/linux/fs/fcntl.c
/openbmc/linux/fs/fhandle.c
/openbmc/linux/fs/fuse/dir.c
/openbmc/linux/fs/fuse/file.c
/openbmc/linux/fs/fuse/fuse_i.h
/openbmc/linux/fs/fuse/inode.c
/openbmc/linux/fs/gfs2/bmap.c
/openbmc/linux/fs/iomap/buffered-io.c
/openbmc/linux/fs/isofs/inode.c
/openbmc/linux/fs/jfs/jfs_incore.h
/openbmc/linux/fs/jfs/super.c
/openbmc/linux/fs/kernfs/dir.c
/openbmc/linux/fs/kernfs/kernfs-internal.h
/openbmc/linux/fs/nfs/client.c
/openbmc/linux/fs/nfs/direct.c
/openbmc/linux/fs/nfs/flexfilelayout/flexfilelayout.c
/openbmc/linux/fs/nfs/fscache.c
/openbmc/linux/fs/nfs/inode.c
/openbmc/linux/fs/nfs/internal.h
/openbmc/linux/fs/nfs/netns.h
/openbmc/linux/fs/nfs/nfs42.h
/openbmc/linux/fs/nfs/nfs4proc.c
/openbmc/linux/fs/nfs/nfsroot.c
/openbmc/linux/fs/nfs/pnfs_nfs.c
/openbmc/linux/fs/nfs/read.c
/openbmc/linux/fs/nfs/write.c
/openbmc/linux/fs/nfsd/nfs4state.c
/openbmc/linux/fs/nfsd/trace.h
/openbmc/linux/fs/nilfs2/btree.c
/openbmc/linux/fs/nilfs2/dir.c
/openbmc/linux/fs/nilfs2/direct.c
/openbmc/linux/fs/nilfs2/inode.c
/openbmc/linux/fs/nilfs2/segment.c
/openbmc/linux/fs/ntfs3/attrib.c
/openbmc/linux/fs/ntfs3/attrlist.c
/openbmc/linux/fs/ntfs3/bitmap.c
/openbmc/linux/fs/ntfs3/dir.c
/openbmc/linux/fs/ntfs3/file.c
/openbmc/linux/fs/ntfs3/frecord.c
/openbmc/linux/fs/ntfs3/fslog.c
/openbmc/linux/fs/ntfs3/fsntfs.c
/openbmc/linux/fs/ntfs3/index.c
/openbmc/linux/fs/ntfs3/inode.c
/openbmc/linux/fs/ntfs3/namei.c
/openbmc/linux/fs/ntfs3/ntfs.h
/openbmc/linux/fs/ntfs3/ntfs_fs.h
/openbmc/linux/fs/ntfs3/record.c
/openbmc/linux/fs/ntfs3/super.c
/openbmc/linux/fs/ntfs3/xattr.c
/openbmc/linux/fs/ocfs2/inode.h
/openbmc/linux/fs/ocfs2/super.c
/openbmc/linux/fs/orangefs/super.c
/openbmc/linux/fs/overlayfs/params.c
/openbmc/linux/fs/overlayfs/params.h
/openbmc/linux/fs/overlayfs/super.c
/openbmc/linux/fs/pipe.c
/openbmc/linux/fs/proc/page.c
/openbmc/linux/fs/pstore/inode.c
/openbmc/linux/fs/pstore/zone.c
/openbmc/linux/fs/quota/dquot.c
/openbmc/linux/fs/reiserfs/reiserfs.h
/openbmc/linux/fs/reiserfs/super.c
/openbmc/linux/fs/select.c
/openbmc/linux/fs/smb/client/cached_dir.c
/openbmc/linux/fs/smb/client/cifs_debug.c
/openbmc/linux/fs/smb/client/cifsencrypt.c
/openbmc/linux/fs/smb/client/cifsfs.c
/openbmc/linux/fs/smb/client/cifsglob.h
/openbmc/linux/fs/smb/client/cifspdu.h
/openbmc/linux/fs/smb/client/cifsproto.h
/openbmc/linux/fs/smb/client/connect.c
/openbmc/linux/fs/smb/client/dfs.c
/openbmc/linux/fs/smb/client/dfs.h
/openbmc/linux/fs/smb/client/dfs_cache.c
/openbmc/linux/fs/smb/client/dir.c
/openbmc/linux/fs/smb/client/file.c
/openbmc/linux/fs/smb/client/fs_context.c
/openbmc/linux/fs/smb/client/fs_context.h
/openbmc/linux/fs/smb/client/fscache.c
/openbmc/linux/fs/smb/client/fscache.h
/openbmc/linux/fs/smb/client/inode.c
/openbmc/linux/fs/smb/client/ioctl.c
/openbmc/linux/fs/smb/client/misc.c
/openbmc/linux/fs/smb/client/readdir.c
/openbmc/linux/fs/smb/client/sess.c
/openbmc/linux/fs/smb/client/smb1ops.c
/openbmc/linux/fs/smb/client/smb2misc.c
/openbmc/linux/fs/smb/client/smb2ops.c
/openbmc/linux/fs/smb/client/smb2pdu.c
/openbmc/linux/fs/smb/client/smb2pdu.h
/openbmc/linux/fs/smb/client/transport.c
/openbmc/linux/fs/smb/common/smb2pdu.h
/openbmc/linux/fs/smb/server/ksmbd_netlink.h
/openbmc/linux/fs/smb/server/mgmt/share_config.c
/openbmc/linux/fs/smb/server/oplock.c
/openbmc/linux/fs/smb/server/server.c
/openbmc/linux/fs/smb/server/smb2ops.c
/openbmc/linux/fs/smb/server/smb2pdu.c
/openbmc/linux/fs/smb/server/smb_common.c
/openbmc/linux/fs/smb/server/transport_ipc.c
/openbmc/linux/fs/smb/server/transport_tcp.c
/openbmc/linux/fs/smb/server/vfs.c
/openbmc/linux/fs/squashfs/inode.c
/openbmc/linux/fs/sysfs/file.c
/openbmc/linux/fs/sysv/itree.c
event_inode.c
inode.c
internal.h
/openbmc/linux/fs/ubifs/file.c
/openbmc/linux/fs/ubifs/tnc.c
/openbmc/linux/fs/userfaultfd.c
/openbmc/linux/fs/vboxsf/file.c
/openbmc/linux/fs/vboxsf/super.c
/openbmc/linux/fs/xfs/libxfs/xfs_ag.c
/openbmc/linux/fs/xfs/libxfs/xfs_ag.h
/openbmc/linux/fs/xfs/libxfs/xfs_attr.c
/openbmc/linux/fs/xfs/libxfs/xfs_bmap.c
/openbmc/linux/fs/xfs/libxfs/xfs_btree_staging.c
/openbmc/linux/fs/xfs/libxfs/xfs_btree_staging.h
/openbmc/linux/fs/xfs/libxfs/xfs_da_btree.c
/openbmc/linux/fs/xfs/libxfs/xfs_defer.c
/openbmc/linux/fs/xfs/libxfs/xfs_defer.h
/openbmc/linux/fs/xfs/libxfs/xfs_format.h
/openbmc/linux/fs/xfs/libxfs/xfs_log_recover.h
/openbmc/linux/fs/xfs/libxfs/xfs_rtbitmap.c
/openbmc/linux/fs/xfs/libxfs/xfs_rtbitmap.h
/openbmc/linux/fs/xfs/libxfs/xfs_sb.c
/openbmc/linux/fs/xfs/libxfs/xfs_sb.h
/openbmc/linux/fs/xfs/libxfs/xfs_types.h
/openbmc/linux/fs/xfs/scrub/common.c
/openbmc/linux/fs/xfs/scrub/common.h
/openbmc/linux/fs/xfs/scrub/fscounters.c
/openbmc/linux/fs/xfs/scrub/inode.c
/openbmc/linux/fs/xfs/scrub/reap.c
/openbmc/linux/fs/xfs/scrub/rtbitmap.c
/openbmc/linux/fs/xfs/scrub/rtsummary.c
/openbmc/linux/fs/xfs/scrub/trace.h
/openbmc/linux/fs/xfs/xfs_attr_item.c
/openbmc/linux/fs/xfs/xfs_bmap_item.c
/openbmc/linux/fs/xfs/xfs_buf.c
/openbmc/linux/fs/xfs/xfs_buf.h
/openbmc/linux/fs/xfs/xfs_extfree_item.c
/openbmc/linux/fs/xfs/xfs_fsmap.c
/openbmc/linux/fs/xfs/xfs_fsops.c
/openbmc/linux/fs/xfs/xfs_inode_item.c
/openbmc/linux/fs/xfs/xfs_log.c
/openbmc/linux/fs/xfs/xfs_log_priv.h
/openbmc/linux/fs/xfs/xfs_log_recover.c
/openbmc/linux/fs/xfs/xfs_refcount_item.c
/openbmc/linux/fs/xfs/xfs_rmap_item.c
/openbmc/linux/fs/xfs/xfs_rtalloc.c
/openbmc/linux/fs/xfs/xfs_rtalloc.h
/openbmc/linux/fs/xfs/xfs_trans.h
/openbmc/linux/include/acpi/acpi_bus.h
/openbmc/linux/include/asm-generic/barrier.h
/openbmc/linux/include/drm/drm_bridge.h
/openbmc/linux/include/drm/drm_fixed.h
/openbmc/linux/include/drm/drm_gem.h
/openbmc/linux/include/drm/drm_kunit_helpers.h
/openbmc/linux/include/drm/drm_modeset_helper_vtables.h
/openbmc/linux/include/drm/ttm/ttm_pool.h
/openbmc/linux/include/drm/ttm/ttm_tt.h
/openbmc/linux/include/dt-bindings/clock/r8a779g0-cpg-mssr.h
/openbmc/linux/include/dt-bindings/dma/fsl-edma.h
/openbmc/linux/include/kvm/arm_pmu.h
/openbmc/linux/include/linux/avf/virtchnl.h
/openbmc/linux/include/linux/blkdev.h
/openbmc/linux/include/linux/bootconfig.h
/openbmc/linux/include/linux/bpf.h
/openbmc/linux/include/linux/bvec.h
/openbmc/linux/include/linux/ceph/mdsmap.h
/openbmc/linux/include/linux/ceph/osd_client.h
/openbmc/linux/include/linux/compiler_types.h
/openbmc/linux/include/linux/cpu.h
/openbmc/linux/include/linux/cpufreq.h
/openbmc/linux/include/linux/device.h
/openbmc/linux/include/linux/dm-io.h
/openbmc/linux/include/linux/etherdevice.h
/openbmc/linux/include/linux/f2fs_fs.h
/openbmc/linux/include/linux/filter.h
/openbmc/linux/include/linux/fs.h
/openbmc/linux/include/linux/gfp.h
/openbmc/linux/include/linux/gfp_types.h
/openbmc/linux/include/linux/gpio/property.h
/openbmc/linux/include/linux/hyperv.h
/openbmc/linux/include/linux/intel_rapl.h
/openbmc/linux/include/linux/intel_tcc.h
/openbmc/linux/include/linux/io_uring.h
/openbmc/linux/include/linux/io_uring_types.h
/openbmc/linux/include/linux/irqflags.h
/openbmc/linux/include/linux/kernfs.h
/openbmc/linux/include/linux/libata.h
/openbmc/linux/include/linux/memblock.h
/openbmc/linux/include/linux/mlx5/mlx5_ifc.h
/openbmc/linux/include/linux/mlx5/qp.h
/openbmc/linux/include/linux/mm.h
/openbmc/linux/include/linux/mman.h
/openbmc/linux/include/linux/mmzone.h
/openbmc/linux/include/linux/moduleloader.h
/openbmc/linux/include/linux/mtd/spinand.h
/openbmc/linux/include/linux/netfilter.h
/openbmc/linux/include/linux/nfs_fs.h
/openbmc/linux/include/linux/nvmem-provider.h
/openbmc/linux/include/linux/overflow.h
/openbmc/linux/include/linux/page-flags.h
/openbmc/linux/include/linux/pci.h
/openbmc/linux/include/linux/phy/tegra/xusb.h
/openbmc/linux/include/linux/poll.h
/openbmc/linux/include/linux/randomize_kstack.h
/openbmc/linux/include/linux/rcupdate.h
/openbmc/linux/include/linux/regmap.h
/openbmc/linux/include/linux/regulator/consumer.h
/openbmc/linux/include/linux/ring_buffer.h
/openbmc/linux/include/linux/secretmem.h
/openbmc/linux/include/linux/serial_core.h
/openbmc/linux/include/linux/shmem_fs.h
/openbmc/linux/include/linux/skbuff.h
/openbmc/linux/include/linux/skmsg.h
/openbmc/linux/include/linux/slab.h
/openbmc/linux/include/linux/sunrpc/clnt.h
/openbmc/linux/include/linux/sunrpc/sched.h
/openbmc/linux/include/linux/swap.h
/openbmc/linux/include/linux/swapops.h
/openbmc/linux/include/linux/u64_stats_sync.h
/openbmc/linux/include/linux/udp.h
/openbmc/linux/include/linux/usb/hcd.h
/openbmc/linux/include/linux/usb/quirks.h
/openbmc/linux/include/linux/vfio.h
/openbmc/linux/include/media/media-entity.h
/openbmc/linux/include/net/addrconf.h
/openbmc/linux/include/net/af_unix.h
/openbmc/linux/include/net/bluetooth/bluetooth.h
/openbmc/linux/include/net/bluetooth/hci.h
/openbmc/linux/include/net/bluetooth/hci_core.h
/openbmc/linux/include/net/bluetooth/hci_sync.h
/openbmc/linux/include/net/bluetooth/l2cap.h
/openbmc/linux/include/net/cfg80211.h
/openbmc/linux/include/net/cfg802154.h
/openbmc/linux/include/net/gro.h
/openbmc/linux/include/net/inet_connection_sock.h
/openbmc/linux/include/net/ip_tunnels.h
/openbmc/linux/include/net/ipv6_stubs.h
/openbmc/linux/include/net/macsec.h
/openbmc/linux/include/net/mana/mana.h
/openbmc/linux/include/net/mctp.h
/openbmc/linux/include/net/netfilter/nf_flow_table.h
/openbmc/linux/include/net/sock.h
/openbmc/linux/include/net/switchdev.h
/openbmc/linux/include/net/tcp.h
/openbmc/linux/include/net/tls.h
/openbmc/linux/include/net/xfrm.h
/openbmc/linux/include/scsi/scsi_device.h
/openbmc/linux/include/scsi/scsi_driver.h
/openbmc/linux/include/scsi/scsi_host.h
/openbmc/linux/include/soc/qcom/qcom-spmi-pmic.h
/openbmc/linux/include/sound/emu10k1.h
/openbmc/linux/include/sound/soc-card.h
/openbmc/linux/include/sound/soc.h
/openbmc/linux/include/sound/sof.h
/openbmc/linux/include/sound/tas2781.h
/openbmc/linux/include/trace/events/mmflags.h
/openbmc/linux/include/trace/events/qdisc.h
/openbmc/linux/include/trace/events/rpcgss.h
/openbmc/linux/include/trace/events/rxrpc.h
/openbmc/linux/include/uapi/linux/bpf.h
/openbmc/linux/include/uapi/linux/in6.h
/openbmc/linux/include/uapi/linux/input-event-codes.h
/openbmc/linux/include/uapi/linux/kfd_ioctl.h
/openbmc/linux/include/uapi/linux/pci_regs.h
/openbmc/linux/include/uapi/linux/snmp.h
/openbmc/linux/include/uapi/scsi/scsi_bsg_mpi3mr.h
/openbmc/linux/include/xen/events.h
/openbmc/linux/init/Kconfig
/openbmc/linux/init/initramfs.c
/openbmc/linux/init/main.c
/openbmc/linux/io_uring/filetable.c
/openbmc/linux/io_uring/io_uring.c
/openbmc/linux/io_uring/io_uring.h
/openbmc/linux/io_uring/kbuf.c
/openbmc/linux/io_uring/kbuf.h
/openbmc/linux/io_uring/net.c
/openbmc/linux/io_uring/poll.c
/openbmc/linux/io_uring/rsrc.c
/openbmc/linux/io_uring/rsrc.h
/openbmc/linux/kernel/bounds.c
/openbmc/linux/kernel/bpf/bloom_filter.c
/openbmc/linux/kernel/bpf/core.c
/openbmc/linux/kernel/bpf/cpumap.c
/openbmc/linux/kernel/bpf/devmap.c
/openbmc/linux/kernel/bpf/hashtab.c
/openbmc/linux/kernel/bpf/helpers.c
/openbmc/linux/kernel/bpf/stackmap.c
/openbmc/linux/kernel/bpf/syscall.c
/openbmc/linux/kernel/bpf/verifier.c
/openbmc/linux/kernel/cgroup/cpuset.c
/openbmc/linux/kernel/cpu.c
/openbmc/linux/kernel/crash_core.c
/openbmc/linux/kernel/dma/direct.c
/openbmc/linux/kernel/dma/swiotlb.c
/openbmc/linux/kernel/entry/common.c
/openbmc/linux/kernel/fork.c
/openbmc/linux/kernel/kprobes.c
/openbmc/linux/kernel/module/main.c
/openbmc/linux/kernel/panic.c
/openbmc/linux/kernel/power/suspend.c
/openbmc/linux/kernel/printk/printk.c
/openbmc/linux/kernel/rcu/tree.c
/openbmc/linux/kernel/rcu/tree_exp.h
/openbmc/linux/kernel/rcu/tree_nocb.h
/openbmc/linux/kernel/sched/core.c
/openbmc/linux/kernel/sched/fair.c
/openbmc/linux/kernel/sched/membarrier.c
/openbmc/linux/kernel/sched/rt.c
/openbmc/linux/kernel/sched/sched.h
/openbmc/linux/kernel/sys.c
/openbmc/linux/kernel/time/time_test.c
/openbmc/linux/kernel/time/timekeeping.c
/openbmc/linux/kernel/trace/bpf_trace.c
/openbmc/linux/kernel/trace/ring_buffer.c
/openbmc/linux/kernel/trace/trace.c
/openbmc/linux/kernel/trace/trace_events.c
/openbmc/linux/kernel/workqueue.c
/openbmc/linux/lib/Kconfig.debug
/openbmc/linux/lib/bootconfig.c
/openbmc/linux/lib/cmdline_kunit.c
/openbmc/linux/lib/dynamic_debug.c
/openbmc/linux/lib/kunit/executor_test.c
/openbmc/linux/lib/maple_tree.c
/openbmc/linux/lib/memcpy_kunit.c
/openbmc/linux/lib/nlattr.c
/openbmc/linux/lib/pci_iomap.c
/openbmc/linux/lib/scatterlist.c
/openbmc/linux/lib/stackdepot.c
/openbmc/linux/lib/test_blackhole_dev.c
/openbmc/linux/lib/test_meminit.c
/openbmc/linux/mm/compaction.c
/openbmc/linux/mm/damon/lru_sort.c
/openbmc/linux/mm/damon/reclaim.c
/openbmc/linux/mm/debug_vm_pgtable.c
/openbmc/linux/mm/filemap.c
/openbmc/linux/mm/gup.c
/openbmc/linux/mm/hugetlb.c
/openbmc/linux/mm/internal.h
/openbmc/linux/mm/kasan/kasan_test.c
/openbmc/linux/mm/kmsan/init.c
/openbmc/linux/mm/madvise.c
/openbmc/linux/mm/memblock.c
/openbmc/linux/mm/memcontrol.c
/openbmc/linux/mm/memory-failure.c
/openbmc/linux/mm/memory.c
/openbmc/linux/mm/memtest.c
/openbmc/linux/mm/migrate.c
/openbmc/linux/mm/mmap.c
/openbmc/linux/mm/page_alloc.c
/openbmc/linux/mm/page_reporting.c
/openbmc/linux/mm/readahead.c
/openbmc/linux/mm/shmem.c
/openbmc/linux/mm/shmem_quota.c
/openbmc/linux/mm/show_mem.c
/openbmc/linux/mm/swap.h
/openbmc/linux/mm/swapfile.c
/openbmc/linux/mm/vmscan.c
/openbmc/linux/mm/vmstat.c
/openbmc/linux/mm/zswap.c
/openbmc/linux/net/8021q/vlan_core.c
/openbmc/linux/net/9p/client.c
/openbmc/linux/net/ax25/af_ax25.c
/openbmc/linux/net/ax25/ax25_dev.c
/openbmc/linux/net/batman-adv/translation-table.c
/openbmc/linux/net/bluetooth/Kconfig
/openbmc/linux/net/bluetooth/Makefile
/openbmc/linux/net/bluetooth/af_bluetooth.c
/openbmc/linux/net/bluetooth/eir.c
/openbmc/linux/net/bluetooth/hci_conn.c
/openbmc/linux/net/bluetooth/hci_core.c
/openbmc/linux/net/bluetooth/hci_debugfs.c
/openbmc/linux/net/bluetooth/hci_event.c
/openbmc/linux/net/bluetooth/hci_request.c
/openbmc/linux/net/bluetooth/hci_sync.c
/openbmc/linux/net/bluetooth/iso.c
/openbmc/linux/net/bluetooth/l2cap_core.c
/openbmc/linux/net/bluetooth/l2cap_sock.c
/openbmc/linux/net/bluetooth/mgmt.c
/openbmc/linux/net/bluetooth/msft.c
/openbmc/linux/net/bluetooth/msft.h
/openbmc/linux/net/bluetooth/rfcomm/core.c
/openbmc/linux/net/bluetooth/sco.c
/openbmc/linux/net/bridge/br_forward.c
/openbmc/linux/net/bridge/br_input.c
/openbmc/linux/net/bridge/br_netfilter_hooks.c
/openbmc/linux/net/bridge/br_netlink.c
/openbmc/linux/net/bridge/br_private.h
/openbmc/linux/net/bridge/br_switchdev.c
/openbmc/linux/net/bridge/netfilter/ebtables.c
/openbmc/linux/net/bridge/netfilter/nf_conntrack_bridge.c
/openbmc/linux/net/ceph/osd_client.c
/openbmc/linux/net/core/dev.c
/openbmc/linux/net/core/filter.c
/openbmc/linux/net/core/gro.c
/openbmc/linux/net/core/link_watch.c
/openbmc/linux/net/core/net-sysfs.c
/openbmc/linux/net/core/net_namespace.c
/openbmc/linux/net/core/rtnetlink.c
/openbmc/linux/net/core/scm.c
/openbmc/linux/net/core/skbuff.c
/openbmc/linux/net/core/skmsg.c
/openbmc/linux/net/core/sock.c
/openbmc/linux/net/core/sock_diag.c
/openbmc/linux/net/core/sock_map.c
/openbmc/linux/net/core/sysctl_net_core.c
/openbmc/linux/net/devlink/core.c
/openbmc/linux/net/devlink/port.c
/openbmc/linux/net/ethernet/eth.c
/openbmc/linux/net/hsr/hsr_device.c
/openbmc/linux/net/hsr/hsr_forward.c
/openbmc/linux/net/hsr/hsr_framereg.c
/openbmc/linux/net/hsr/hsr_main.c
/openbmc/linux/net/hsr/hsr_slave.c
/openbmc/linux/net/ipv4/af_inet.c
/openbmc/linux/net/ipv4/arp.c
/openbmc/linux/net/ipv4/devinet.c
/openbmc/linux/net/ipv4/esp4.c
/openbmc/linux/net/ipv4/icmp.c
/openbmc/linux/net/ipv4/inet_connection_sock.c
/openbmc/linux/net/ipv4/inet_diag.c
/openbmc/linux/net/ipv4/inet_fragment.c
/openbmc/linux/net/ipv4/inet_hashtables.c
/openbmc/linux/net/ipv4/inet_timewait_sock.c
/openbmc/linux/net/ipv4/ip_fragment.c
/openbmc/linux/net/ipv4/ip_gre.c
/openbmc/linux/net/ipv4/ip_output.c
/openbmc/linux/net/ipv4/ip_tunnel.c
/openbmc/linux/net/ipv4/ipmr.c
/openbmc/linux/net/ipv4/netfilter/arp_tables.c
/openbmc/linux/net/ipv4/netfilter/ip_tables.c
/openbmc/linux/net/ipv4/proc.c
/openbmc/linux/net/ipv4/raw.c
/openbmc/linux/net/ipv4/route.c
/openbmc/linux/net/ipv4/tcp.c
/openbmc/linux/net/ipv4/tcp_input.c
/openbmc/linux/net/ipv4/tcp_ipv4.c
/openbmc/linux/net/ipv4/tcp_minisocks.c
/openbmc/linux/net/ipv4/tcp_output.c
/openbmc/linux/net/ipv4/udp.c
/openbmc/linux/net/ipv4/udp_offload.c
/openbmc/linux/net/ipv4/xfrm4_input.c
/openbmc/linux/net/ipv6/addrconf.c
/openbmc/linux/net/ipv6/af_inet6.c
/openbmc/linux/net/ipv6/esp6.c
/openbmc/linux/net/ipv6/exthdrs.c
/openbmc/linux/net/ipv6/fib6_rules.c
/openbmc/linux/net/ipv6/ip6_fib.c
/openbmc/linux/net/ipv6/ip6_gre.c
/openbmc/linux/net/ipv6/ip6_input.c
/openbmc/linux/net/ipv6/ip6_offload.c
/openbmc/linux/net/ipv6/ip6_output.c
/openbmc/linux/net/ipv6/ip6_tunnel.c
/openbmc/linux/net/ipv6/ip6_vti.c
/openbmc/linux/net/ipv6/mcast.c
/openbmc/linux/net/ipv6/ndisc.c
/openbmc/linux/net/ipv6/netfilter/ip6_tables.c
/openbmc/linux/net/ipv6/netfilter/nf_conntrack_reasm.c
/openbmc/linux/net/ipv6/proc.c
/openbmc/linux/net/ipv6/raw.c
/openbmc/linux/net/ipv6/route.c
/openbmc/linux/net/ipv6/seg6.c
/openbmc/linux/net/ipv6/sit.c
/openbmc/linux/net/ipv6/udp.c
/openbmc/linux/net/ipv6/udp_offload.c
/openbmc/linux/net/ipv6/xfrm6_input.c
/openbmc/linux/net/iucv/iucv.c
/openbmc/linux/net/kcm/kcmsock.c
/openbmc/linux/net/l2tp/l2tp_eth.c
/openbmc/linux/net/l2tp/l2tp_ip6.c
/openbmc/linux/net/l2tp/l2tp_ppp.c
/openbmc/linux/net/mac80211/cfg.c
/openbmc/linux/net/mac80211/ieee80211_i.h
/openbmc/linux/net/mac80211/mesh.c
/openbmc/linux/net/mac80211/mesh.h
/openbmc/linux/net/mac80211/mesh_pathtbl.c
/openbmc/linux/net/mac80211/mlme.c
/openbmc/linux/net/mac80211/rate.c
/openbmc/linux/net/mac80211/rx.c
/openbmc/linux/net/mac80211/scan.c
/openbmc/linux/net/mac80211/sta_info.c
/openbmc/linux/net/mac80211/tx.c
/openbmc/linux/net/mac802154/llsec.c
/openbmc/linux/net/mctp/route.c
/openbmc/linux/net/mpls/mpls_gso.c
/openbmc/linux/net/mptcp/ctrl.c
/openbmc/linux/net/mptcp/diag.c
/openbmc/linux/net/mptcp/fastopen.c
/openbmc/linux/net/mptcp/mib.c
/openbmc/linux/net/mptcp/mib.h
/openbmc/linux/net/mptcp/options.c
/openbmc/linux/net/mptcp/pm_netlink.c
/openbmc/linux/net/mptcp/pm_userspace.c
/openbmc/linux/net/mptcp/protocol.c
/openbmc/linux/net/mptcp/protocol.h
/openbmc/linux/net/mptcp/subflow.c
/openbmc/linux/net/netfilter/ipvs/ip_vs_proto_sctp.c
/openbmc/linux/net/netfilter/nf_conntrack_core.c
/openbmc/linux/net/netfilter/nf_conntrack_h323_asn1.c
/openbmc/linux/net/netfilter/nf_conntrack_proto_sctp.c
/openbmc/linux/net/netfilter/nf_flow_table_core.c
/openbmc/linux/net/netfilter/nf_flow_table_inet.c
/openbmc/linux/net/netfilter/nf_flow_table_ip.c
/openbmc/linux/net/netfilter/nf_tables_api.c
/openbmc/linux/net/netfilter/nft_chain_filter.c
/openbmc/linux/net/netfilter/nft_compat.c
/openbmc/linux/net/netfilter/nft_ct.c
/openbmc/linux/net/netfilter/nft_set_pipapo.c
/openbmc/linux/net/netlink/af_netlink.c
/openbmc/linux/net/netrom/af_netrom.c
/openbmc/linux/net/netrom/nr_dev.c
/openbmc/linux/net/netrom/nr_in.c
/openbmc/linux/net/netrom/nr_out.c
/openbmc/linux/net/netrom/nr_route.c
/openbmc/linux/net/netrom/nr_subr.c
/openbmc/linux/net/nfc/nci/core.c
/openbmc/linux/net/nsh/nsh.c
/openbmc/linux/net/openvswitch/conntrack.c
/openbmc/linux/net/packet/af_packet.c
/openbmc/linux/net/phonet/datagram.c
/openbmc/linux/net/phonet/pep.c
/openbmc/linux/net/phonet/pn_netlink.c
/openbmc/linux/net/rds/rdma.c
/openbmc/linux/net/rds/send.c
/openbmc/linux/net/rxrpc/ar-internal.h
/openbmc/linux/net/rxrpc/call_object.c
/openbmc/linux/net/rxrpc/conn_event.c
/openbmc/linux/net/rxrpc/conn_object.c
/openbmc/linux/net/rxrpc/input.c
/openbmc/linux/net/rxrpc/output.c
/openbmc/linux/net/rxrpc/protocol.h
/openbmc/linux/net/sched/act_mirred.c
/openbmc/linux/net/sched/act_skbmod.c
/openbmc/linux/net/sched/cls_flower.c
/openbmc/linux/net/sched/sch_api.c
/openbmc/linux/net/sched/sch_taprio.c
/openbmc/linux/net/smc/smc_ib.c
/openbmc/linux/net/smc/smc_pnet.c
/openbmc/linux/net/sunrpc/addr.c
/openbmc/linux/net/sunrpc/auth_gss/gss_krb5_mech.c
/openbmc/linux/net/sunrpc/auth_gss/gss_rpc_xdr.c
/openbmc/linux/net/sunrpc/clnt.c
/openbmc/linux/net/sunrpc/svcsock.c
/openbmc/linux/net/sunrpc/xprtsock.c
/openbmc/linux/net/switchdev/switchdev.c
/openbmc/linux/net/tipc/msg.c
/openbmc/linux/net/tls/tls.h
/openbmc/linux/net/tls/tls_main.c
/openbmc/linux/net/tls/tls_strp.c
/openbmc/linux/net/tls/tls_sw.c
/openbmc/linux/net/unix/af_unix.c
/openbmc/linux/net/unix/garbage.c
/openbmc/linux/net/unix/scm.c
/openbmc/linux/net/vmw_vsock/virtio_transport.c
/openbmc/linux/net/wireless/nl80211.c
/openbmc/linux/net/wireless/trace.h
/openbmc/linux/net/wireless/util.c
/openbmc/linux/net/wireless/wext-core.c
/openbmc/linux/net/x25/af_x25.c
/openbmc/linux/net/xdp/xsk.c
/openbmc/linux/net/xfrm/xfrm_device.c
/openbmc/linux/net/xfrm/xfrm_input.c
/openbmc/linux/net/xfrm/xfrm_output.c
/openbmc/linux/net/xfrm/xfrm_policy.c
/openbmc/linux/net/xfrm/xfrm_user.c
/openbmc/linux/rust/Makefile
/openbmc/linux/rust/kernel/init.rs
/openbmc/linux/rust/kernel/lib.rs
/openbmc/linux/rust/macros/lib.rs
/openbmc/linux/rust/macros/module.rs
/openbmc/linux/scripts/Kconfig.include
/openbmc/linux/scripts/Makefile.build
/openbmc/linux/scripts/Makefile.compiler
/openbmc/linux/scripts/Makefile.extrawarn
/openbmc/linux/scripts/Makefile.modfinal
/openbmc/linux/scripts/bpf_doc.py
/openbmc/linux/scripts/clang-tools/gen_compile_commands.py
/openbmc/linux/scripts/gcc-plugins/stackleak_plugin.c
/openbmc/linux/scripts/kconfig/lexer.l
/openbmc/linux/scripts/mod/Makefile
/openbmc/linux/scripts/mod/modpost.c
/openbmc/linux/scripts/mod/modpost.h
/openbmc/linux/scripts/mod/symsearch.c
/openbmc/linux/security/landlock/fs.c
/openbmc/linux/security/landlock/syscalls.c
/openbmc/linux/security/selinux/selinuxfs.c
/openbmc/linux/security/smack/smack_lsm.c
/openbmc/linux/security/tomoyo/common.c
/openbmc/linux/sound/core/Makefile
/openbmc/linux/sound/core/seq/seq_midi.c
/openbmc/linux/sound/core/seq/seq_ump_convert.c
/openbmc/linux/sound/core/seq/seq_virmidi.c
/openbmc/linux/sound/core/ump.c
/openbmc/linux/sound/firewire/amdtp-stream.c
/openbmc/linux/sound/firewire/amdtp-stream.h
/openbmc/linux/sound/hda/intel-sdw-acpi.c
/openbmc/linux/sound/pci/emu10k1/emu10k1.c
/openbmc/linux/sound/pci/emu10k1/emu10k1_callback.c
/openbmc/linux/sound/pci/emu10k1/emu10k1_main.c
/openbmc/linux/sound/pci/hda/cs35l56_hda.c
/openbmc/linux/sound/pci/hda/cs35l56_hda_i2c.c
/openbmc/linux/sound/pci/hda/cs35l56_hda_spi.c
/openbmc/linux/sound/pci/hda/hda_intel.c
/openbmc/linux/sound/pci/hda/patch_realtek.c
/openbmc/linux/sound/pci/hda/tas2781_hda_i2c.c
/openbmc/linux/sound/sh/aica.c
/openbmc/linux/sound/soc/amd/acp/acp-mach-common.c
/openbmc/linux/sound/soc/amd/acp/acp-pci.c
/openbmc/linux/sound/soc/amd/acp/acp-sof-mach.c
/openbmc/linux/sound/soc/amd/yc/acp6x-mach.c
/openbmc/linux/sound/soc/codecs/cs35l34.c
/openbmc/linux/sound/soc/codecs/cs35l56-shared.c
/openbmc/linux/sound/soc/codecs/cs35l56.c
/openbmc/linux/sound/soc/codecs/cs35l56.h
/openbmc/linux/sound/soc/codecs/cs42l43.c
/openbmc/linux/sound/soc/codecs/rt5645.c
/openbmc/linux/sound/soc/codecs/rt5682-sdw.c
/openbmc/linux/sound/soc/codecs/rt711-sdca-sdw.c
/openbmc/linux/sound/soc/codecs/rt711-sdw.c
/openbmc/linux/sound/soc/codecs/rt712-sdca-sdw.c
/openbmc/linux/sound/soc/codecs/rt722-sdca-sdw.c
/openbmc/linux/sound/soc/codecs/tas2781-comlib.c
/openbmc/linux/sound/soc/codecs/tlv320adc3xxx.c
/openbmc/linux/sound/soc/codecs/wm8962.c
/openbmc/linux/sound/soc/codecs/wm_adsp.c
/openbmc/linux/sound/soc/codecs/wsa881x.c
/openbmc/linux/sound/soc/fsl/fsl_xcvr.c
/openbmc/linux/sound/soc/intel/avs/board_selection.c
/openbmc/linux/sound/soc/intel/avs/topology.c
/openbmc/linux/sound/soc/intel/boards/bytcr_rt5640.c
/openbmc/linux/sound/soc/intel/boards/sof_sdw.c
/openbmc/linux/sound/soc/meson/Kconfig
/openbmc/linux/sound/soc/meson/aiu.c
/openbmc/linux/sound/soc/meson/aiu.h
/openbmc/linux/sound/soc/meson/axg-card.c
/openbmc/linux/sound/soc/meson/axg-fifo.c
/openbmc/linux/sound/soc/meson/axg-fifo.h
/openbmc/linux/sound/soc/meson/axg-frddr.c
/openbmc/linux/sound/soc/meson/axg-tdm-interface.c
/openbmc/linux/sound/soc/meson/axg-toddr.c
/openbmc/linux/sound/soc/meson/t9015.c
/openbmc/linux/sound/soc/qcom/apq8016_sbc.c
/openbmc/linux/sound/soc/qcom/apq8096.c
/openbmc/linux/sound/soc/qcom/common.c
/openbmc/linux/sound/soc/qcom/lpass-cdc-dma.c
/openbmc/linux/sound/soc/qcom/lpass-platform.c
/openbmc/linux/sound/soc/qcom/qdsp6/q6apm-dai.c
/openbmc/linux/sound/soc/qcom/qdsp6/q6asm-dai.c
/openbmc/linux/sound/soc/qcom/qdsp6/q6routing.c
/openbmc/linux/sound/soc/qcom/sc7180.c
/openbmc/linux/sound/soc/qcom/sc7280.c
/openbmc/linux/sound/soc/qcom/sc8280xp.c
/openbmc/linux/sound/soc/qcom/sdm845.c
/openbmc/linux/sound/soc/qcom/sdw.c
/openbmc/linux/sound/soc/qcom/sm8250.c
/openbmc/linux/sound/soc/qcom/storm.c
/openbmc/linux/sound/soc/rockchip/rockchip_i2s_tdm.c
/openbmc/linux/sound/soc/sh/rz-ssi.c
/openbmc/linux/sound/soc/soc-card.c
/openbmc/linux/sound/soc/soc-core.c
/openbmc/linux/sound/soc/soc-ops.c
/openbmc/linux/sound/soc/soc-utils.c
/openbmc/linux/sound/soc/sof/amd/acp.c
/openbmc/linux/sound/soc/sof/intel/hda-dsp.c
/openbmc/linux/sound/soc/sof/intel/pci-lnl.c
/openbmc/linux/sound/soc/sof/ipc3-loader.c
/openbmc/linux/sound/soc/sof/ipc4-pcm.c
/openbmc/linux/sound/soc/sunxi/sun4i-spdif.c
/openbmc/linux/sound/soc/tegra/tegra186_dspk.c
/openbmc/linux/sound/soc/ti/davinci-mcasp.c
/openbmc/linux/sound/soc/ti/omap3pandora.c
/openbmc/linux/sound/usb/Makefile
/openbmc/linux/sound/usb/clock.c
/openbmc/linux/sound/usb/format.c
/openbmc/linux/sound/usb/line6/driver.c
/openbmc/linux/sound/usb/mixer_quirks.c
/openbmc/linux/sound/usb/mixer_scarlett2.c
/openbmc/linux/sound/usb/mixer_scarlett2.h
/openbmc/linux/sound/usb/stream.c
/openbmc/linux/tools/arch/x86/include/asm/cpufeatures.h
/openbmc/linux/tools/bpf/bpftool/prog.c
/openbmc/linux/tools/bpf/resolve_btfids/main.c
/openbmc/linux/tools/iio/iio_utils.c
/openbmc/linux/tools/include/linux/btf_ids.h
/openbmc/linux/tools/include/linux/kernel.h
/openbmc/linux/tools/include/linux/mm.h
/openbmc/linux/tools/include/linux/panic.h
/openbmc/linux/tools/include/uapi/linux/bpf.h
/openbmc/linux/tools/lib/bpf/bpf.h
/openbmc/linux/tools/lib/bpf/libbpf.c
/openbmc/linux/tools/lib/bpf/libbpf_internal.h
/openbmc/linux/tools/lib/bpf/netlink.c
/openbmc/linux/tools/lib/perf/evlist.c
/openbmc/linux/tools/lib/perf/include/internal/evlist.h
/openbmc/linux/tools/net/ynl/lib/ynl.c
/openbmc/linux/tools/net/ynl/lib/ynl.py
/openbmc/linux/tools/net/ynl/ynl-gen-c.py
/openbmc/linux/tools/objtool/check.c
/openbmc/linux/tools/perf/Makefile.perf
/openbmc/linux/tools/perf/builtin-record.c
/openbmc/linux/tools/perf/builtin-top.c
/openbmc/linux/tools/perf/util/bpf_skel/lock_contention.bpf.c
/openbmc/linux/tools/perf/util/data.c
/openbmc/linux/tools/perf/util/evlist.c
/openbmc/linux/tools/perf/util/evlist.h
/openbmc/linux/tools/perf/util/evsel.c
/openbmc/linux/tools/perf/util/expr.c
/openbmc/linux/tools/perf/util/pmu.c
/openbmc/linux/tools/perf/util/print-events.c
/openbmc/linux/tools/perf/util/srcline.c
/openbmc/linux/tools/perf/util/stat-display.c
/openbmc/linux/tools/perf/util/stat-shadow.c
/openbmc/linux/tools/perf/util/thread_map.c
/openbmc/linux/tools/power/x86/turbostat/turbostat.8
/openbmc/linux/tools/power/x86/turbostat/turbostat.c
/openbmc/linux/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
/openbmc/linux/tools/testing/ktest/ktest.pl
/openbmc/linux/tools/testing/selftests/bpf/bpf_testmod/bpf_testmod.c
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/lwt_redirect.c
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/tc_redirect.c
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/xdp_bonding.c
/openbmc/linux/tools/testing/selftests/bpf/progs/test_map_in_map.c
/openbmc/linux/tools/testing/selftests/bpf/test_maps.c
/openbmc/linux/tools/testing/selftests/drivers/net/bonding/bond_options.sh
/openbmc/linux/tools/testing/selftests/ftrace/test.d/event/subsystem-enable.tc
/openbmc/linux/tools/testing/selftests/ftrace/test.d/filter/event-filter-function.tc
/openbmc/linux/tools/testing/selftests/iommu/config
/openbmc/linux/tools/testing/selftests/kselftest.h
/openbmc/linux/tools/testing/selftests/mm/Makefile
/openbmc/linux/tools/testing/selftests/mm/gup_test.c
/openbmc/linux/tools/testing/selftests/mm/soft-dirty.c
/openbmc/linux/tools/testing/selftests/mm/split_huge_page_test.c
/openbmc/linux/tools/testing/selftests/mm/uffd-common.c
/openbmc/linux/tools/testing/selftests/mm/uffd-common.h
/openbmc/linux/tools/testing/selftests/mm/uffd-unit-tests.c
/openbmc/linux/tools/testing/selftests/mm/vm_util.h
/openbmc/linux/tools/testing/selftests/mqueue/setting
/openbmc/linux/tools/testing/selftests/net/forwarding/config
/openbmc/linux/tools/testing/selftests/net/forwarding/tc_actions.sh
/openbmc/linux/tools/testing/selftests/net/forwarding/vxlan_bridge_1d_ipv6.sh
/openbmc/linux/tools/testing/selftests/net/forwarding/vxlan_bridge_1q_ipv6.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/diag.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/mptcp_connect.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/mptcp_join.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/mptcp_lib.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/mptcp_sockopt.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/pm_netlink.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/simult_flows.sh
/openbmc/linux/tools/testing/selftests/net/mptcp/userspace_pm.sh
/openbmc/linux/tools/testing/selftests/net/openvswitch/openvswitch.sh
/openbmc/linux/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
/openbmc/linux/tools/testing/selftests/net/reuseaddr_conflict.c
/openbmc/linux/tools/testing/selftests/net/test_bridge_neigh_suppress.sh
/openbmc/linux/tools/testing/selftests/net/test_vxlan_mdb.sh
/openbmc/linux/tools/testing/selftests/net/tls.c
/openbmc/linux/tools/testing/selftests/net/udpgro_fwd.sh
/openbmc/linux/tools/testing/selftests/net/udpgso.c
/openbmc/linux/tools/testing/selftests/riscv/mm/mmap_test.h
/openbmc/linux/tools/testing/selftests/riscv/vector/v_initval_nolibc.c
/openbmc/linux/tools/testing/selftests/riscv/vector/vstate_prctl.c
/openbmc/linux/tools/testing/selftests/seccomp/seccomp_bpf.c
/openbmc/linux/tools/testing/selftests/timers/posix_timers.c
/openbmc/linux/tools/testing/selftests/timers/valid-adjtimex.c
/openbmc/linux/tools/testing/selftests/wireguard/qemu/arch/riscv32.config
/openbmc/linux/tools/testing/selftests/wireguard/qemu/arch/riscv64.config
/openbmc/linux/virt/kvm/async_pf.c
a49e9c7206-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Keep all directory links at 1

commit ca185770db914869ff9fe773bac5e0e5e4165b83 upstream.

The directory link count in eventfs was somewhat bogus. It was only being
updated when a directory c

eventfs: Keep all directory links at 1

commit ca185770db914869ff9fe773bac5e0e5e4165b83 upstream.

The directory link count in eventfs was somewhat bogus. It was only being
updated when a directory child was being looked up and not on creation.

One solution would be to update in get_attr() the link count by iterating
the ei->children list and then adding 2. But that could slow down simple
stat() calls, especially if it's done on all directories in eventfs.

Another solution would be to add a parent pointer to the eventfs_inode
and keep track of the number of sub directories it has on creation. But
this adds overhead for something not really worthwhile.

The solution decided upon is to keep all directory links in eventfs as 1.
This tells user space not to rely on the hard links of directories. Which
in this case it shouldn't.

Link: https://lore.kernel.org/linux-trace-kernel/20240201002719.GS2087318@ZenIV/
Link: https://lore.kernel.org/linux-trace-kernel/20240201161617.339968298@goodmis.org

Cc: stable@vger.kernel.org
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Fixes: c1504e510238 ("eventfs: Implement eventfs dir creation functions")
Suggested-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

9bb8131a06-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Remove fsnotify*() functions from lookup()

commit 12d823b31fadf47c8f36ecada7abac5f903cac33 upstream.

The dentries and inodes are created when referenced in the lookup code.
There's no reas

eventfs: Remove fsnotify*() functions from lookup()

commit 12d823b31fadf47c8f36ecada7abac5f903cac33 upstream.

The dentries and inodes are created when referenced in the lookup code.
There's no reason to call fsnotify_*() functions when they are created by
a reference. It doesn't make any sense.

Link: https://lore.kernel.org/linux-trace-kernel/20240201002719.GS2087318@ZenIV/
Link: https://lore.kernel.org/linux-trace-kernel/20240201161617.166973329@goodmis.org

Cc: stable@vger.kernel.org
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Fixes: a376007917776 ("eventfs: Implement functions to create files and dirs when accessed");
Suggested-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

ed823ca406-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Restructure eventfs_inode structure to be more condensed

commit 264424dfdd5cbd92bc5b5ddf93944929fc877fac upstream.

Some of the eventfs_inode structure has holes in it. Rework the structure

eventfs: Restructure eventfs_inode structure to be more condensed

commit 264424dfdd5cbd92bc5b5ddf93944929fc877fac upstream.

Some of the eventfs_inode structure has holes in it. Rework the structure
to be a bit more condensed, and also remove the no longer used llist
field.

Link: https://lore.kernel.org/linux-trace-kernel/20240201161617.002321438@goodmis.org

Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

5c3ea7df06-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Warn if an eventfs_inode is freed without is_freed being set

commit 5a49f996046ba947466bc7461e4b19c4d1daf978 upstream.

There should never be a case where an evenfs_inode is being freed wit

eventfs: Warn if an eventfs_inode is freed without is_freed being set

commit 5a49f996046ba947466bc7461e4b19c4d1daf978 upstream.

There should never be a case where an evenfs_inode is being freed without
is_freed being set. Add a WARN_ON_ONCE() if it ever happens. That would
mean there was one too many put_ei()s.

Link: https://lore.kernel.org/linux-trace-kernel/20240201161616.843551963@goodmis.org

Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

5dfb041006-Feb-2024 Linus Torvalds <torvalds@linux-foundation.org>

eventfs: Get rid of dentry pointers without refcounts

commit 43aa6f97c2d03a52c1ddb86768575fc84344bdbb upstream.

The eventfs inode had pointers to dentries (and child dentries) without
actually hold

eventfs: Get rid of dentry pointers without refcounts

commit 43aa6f97c2d03a52c1ddb86768575fc84344bdbb upstream.

The eventfs inode had pointers to dentries (and child dentries) without
actually holding a refcount on said pointer. That is fundamentally
broken, and while eventfs tried to then maintain coherence with dentries
going away by hooking into the '.d_iput' callback, that doesn't actually
work since it's not ordered wrt lookups.

There were two reasonms why eventfs tried to keep a pointer to a dentry:

- the creation of a 'events' directory would actually have a stable
dentry pointer that it created with tracefs_start_creating().

And it needed that dentry when tearing it all down again in
eventfs_remove_events_dir().

This use is actually ok, because the special top-level events
directory dentries are actually stable, not just a temporary cache of
the eventfs data structures.

- the 'eventfs_inode' (aka ei) needs to stay around as long as there
are dentries that refer to it.

It then used these dentry pointers as a replacement for doing
reference counting: it would try to make sure that there was only
ever one dentry associated with an event_inode, and keep a child
dentry array around to see which dentries might still refer to the
parent ei.

This gets rid of the invalid dentry pointer use, and renames the one
valid case to a different name to make it clear that it's not just any
random dentry.

The magic child dentry array that is kind of a "reverse reference list"
is simply replaced by having child dentries take a ref to the ei. As
does the directory dentries. That makes the broken use case go away.

Link: https://lore.kernel.org/linux-trace-kernel/202401291043.e62e89dc-oliver.sang@intel.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240131185513.280463000@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: c1504e510238 ("eventfs: Implement eventfs dir creation functions")
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

c461920506-Feb-2024 Linus Torvalds <torvalds@linux-foundation.org>

eventfs: Clean up dentry ops and add revalidate function

commit 8dce06e98c70a7fcbb4bca7d90faf40522e65c58 upstream.

In order for the dentries to stay up-to-date with the eventfs changes,
just add a

eventfs: Clean up dentry ops and add revalidate function

commit 8dce06e98c70a7fcbb4bca7d90faf40522e65c58 upstream.

In order for the dentries to stay up-to-date with the eventfs changes,
just add a 'd_revalidate' function that checks the 'is_freed' bit.

Also, clean up the dentry release to actually use d_release() rather
than the slightly odd d_iput() function. We don't care about the inode,
all we want to do is to get rid of the refcount to the eventfs data
added by dentry->d_fsdata.

It would probably be cleaner to make eventfs its own filesystem, or at
least set its own dentry ops when looking up eventfs files. But as it
is, only eventfs dentries use d_fsdata, so we don't really need to split
these things up by use.

Another thing that might be worth doing is to make all eventfs lookups
mark their dentries as not worth caching. We could do that with
d_delete(), but the DCACHE_DONTCACHE flag would likely be even better.

As it is, the dentries are all freeable, but they only tend to get freed
at memory pressure rather than more proactively. But that's a separate
issue.

Link: https://lore.kernel.org/linux-trace-kernel/202401291043.e62e89dc-oliver.sang@intel.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240131185513.124644253@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: c1504e510238 ("eventfs: Implement eventfs dir creation functions")
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

ca2d3b2c06-Feb-2024 Linus Torvalds <torvalds@linux-foundation.org>

eventfs: Remove unused d_parent pointer field

commit 408600be78cdb8c650a97ecc7ff411cb216811b5 upstream.

It's never used

Link: https://lore.kernel.org/linux-trace-kernel/202401291043.e62e89dc-olive

eventfs: Remove unused d_parent pointer field

commit 408600be78cdb8c650a97ecc7ff411cb216811b5 upstream.

It's never used

Link: https://lore.kernel.org/linux-trace-kernel/202401291043.e62e89dc-oliver.sang@intel.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240131185512.961772428@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: c1504e510238 ("eventfs: Implement eventfs dir creation functions")
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

21faa3de06-Feb-2024 Linus Torvalds <torvalds@linux-foundation.org>

tracefs: dentry lookup crapectomy

commit 49304c2b93e4f7468b51ef717cbe637981397115 upstream.

The dentry lookup for eventfs files was very broken, and had lots of
signs of the old situation where the

tracefs: dentry lookup crapectomy

commit 49304c2b93e4f7468b51ef717cbe637981397115 upstream.

The dentry lookup for eventfs files was very broken, and had lots of
signs of the old situation where the filesystem names were all created
statically in the dentry tree, rather than being looked up dynamically
based on the eventfs data structures.

You could see it in the naming - how it claimed to "create" dentries
rather than just look up the dentries that were given it.

You could see it in various nonsensical and very incorrect operations,
like using "simple_lookup()" on the dentries that were passed in, which
only results in those dentries becoming negative dentries. Which meant
that any other lookup would possibly return ENOENT if it saw that
negative dentry before the data was then later filled in.

You could see it in the immense amount of nonsensical code that didn't
actually just do lookups.

Link: https://lore.kernel.org/linux-trace-kernel/202401291043.e62e89dc-oliver.sang@intel.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240131233227.73db55e1@gandalf.local.home

Cc: stable@vger.kernel.org
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Fixes: c1504e510238 ("eventfs: Implement eventfs dir creation functions")
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

4928d0e306-Feb-2024 Linus Torvalds <torvalds@linux-foundation.org>

tracefs: Avoid using the ei->dentry pointer unnecessarily

commit 99c001cb617df409dac275a059d6c3f187a2da7a upstream.

The eventfs_find_events() code tries to walk up the tree to find the
event direct

tracefs: Avoid using the ei->dentry pointer unnecessarily

commit 99c001cb617df409dac275a059d6c3f187a2da7a upstream.

The eventfs_find_events() code tries to walk up the tree to find the
event directory that a dentry belongs to, in order to then find the
eventfs inode that is associated with that event directory.

However, it uses an odd combination of walking the dentry parent,
looking up the eventfs inode associated with that, and then looking up
the dentry from there. Repeat.

But the code shouldn't have back-pointers to dentries in the first
place, and it should just walk the dentry parenthood chain directly.

Similarly, 'set_top_events_ownership()' looks up the dentry from the
eventfs inode, but the only reason it wants a dentry is to look up the
superblock in order to look up the root dentry.

But it already has the real filesystem inode, which has that same
superblock pointer. So just pass in the superblock pointer using the
information that's already there, instead of looking up extraneous data
that is irrelevant.

Link: https://lore.kernel.org/linux-trace-kernel/202401291043.e62e89dc-oliver.sang@intel.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240131185512.638645365@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: c1504e510238 ("eventfs: Implement eventfs dir creation functions")
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

d1bcde9406-Feb-2024 Linus Torvalds <torvalds@linux-foundation.org>

eventfs: Initialize the tracefs inode properly

commit 4fa4b010b83fb2f837b5ef79e38072a79e96e4f1 upstream.

The tracefs-specific fields in the inode were not initialized before the
inode was exposed t

eventfs: Initialize the tracefs inode properly

commit 4fa4b010b83fb2f837b5ef79e38072a79e96e4f1 upstream.

The tracefs-specific fields in the inode were not initialized before the
inode was exposed to others through the dentry with 'd_instantiate()'.

Move the field initializations up to before the d_instantiate.

Link: https://lore.kernel.org/linux-trace-kernel/20240131185512.478449628@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: 5790b1fb3d672 ("eventfs: Remove eventfs_file and just use eventfs_inode")
Reported-by: kernel test robot <oliver.sang@intel.com>
Closes: https://lore.kernel.org/oe-lkp/202401291043.e62e89dc-oliver.sang@intel.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

f0686a1906-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

tracefs: Zero out the tracefs_inode when allocating it

commit d81786f53aec14fd4d56263145a0635afbc64617 upstream.

eventfs uses the tracefs_inode and assumes that it's already initialized
to zero. Th

tracefs: Zero out the tracefs_inode when allocating it

commit d81786f53aec14fd4d56263145a0635afbc64617 upstream.

eventfs uses the tracefs_inode and assumes that it's already initialized
to zero. That is, it doesn't set fields to zero (like ti->private) after
getting its tracefs_inode. This causes bugs due to stale values.

Just initialize the entire structure to zero on allocation so there isn't
any more surprises.

This is a partial fix to access to ti->private. The assignment still needs
to be made before the dentry is instantiated.

Link: https://lore.kernel.org/linux-trace-kernel/20240131185512.315825944@goodmis.org

Cc: stable@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: 5790b1fb3d672 ("eventfs: Remove eventfs_file and just use eventfs_inode")
Reported-by: kernel test robot <oliver.sang@intel.com>
Closes: https://lore.kernel.org/oe-lkp/202401291043.e62e89dc-oliver.sang@intel.com
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

35e219f706-Feb-2024 Linus Torvalds <torvalds@linux-foundation.org>

tracefs: remove stale update_gid code

commit 29142dc92c37d3259a33aef15b03e6ee25b0d188 upstream.

The 'eventfs_update_gid()' function is no longer called, so remove it
(and the helper function it use

tracefs: remove stale update_gid code

commit 29142dc92c37d3259a33aef15b03e6ee25b0d188 upstream.

The 'eventfs_update_gid()' function is no longer called, so remove it
(and the helper function it uses).

Link: https://lore.kernel.org/all/CAHk-=wj+DsZZ=2iTUkJ-Nojs9fjYMvPs1NuoM3yK7aTDtJfPYQ@mail.gmail.com/

Fixes: 8186fff7ab64 ("tracefs/eventfs: Use root and instance inodes as default ownership")
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

9a18765706-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Save directory inodes in the eventfs_inode structure

commit 834bf76add3e6168038150f162cbccf1fd492a67 upstream.

The eventfs inodes and directories are allocated when referenced. But this
le

eventfs: Save directory inodes in the eventfs_inode structure

commit 834bf76add3e6168038150f162cbccf1fd492a67 upstream.

The eventfs inodes and directories are allocated when referenced. But this
leaves the issue of keeping consistent inode numbers and the number is
only saved in the inode structure itself. When the inode is no longer
referenced, it can be freed. When the file that the inode was representing
is referenced again, the inode is once again created, but the inode number
needs to be the same as it was before.

Just making the inode numbers the same for all files is fine, but that
does not work with directories. The find command will check for loops via
the inode number and having the same inode number for directories triggers:

# find /sys/kernel/tracing
find: File system loop detected;
'/sys/kernel/debug/tracing/events/initcall/initcall_finish' is part of the same file system loop as
'/sys/kernel/debug/tracing/events/initcall'.
[..]

Linus pointed out that the eventfs_inode structure ends with a single
32bit int, and on 64 bit machines, there's likely a 4 byte hole due to
alignment. We can use this hole to store the inode number for the
eventfs_inode. All directories in eventfs are represented by an
eventfs_inode and that data structure can hold its inode number.

That last int was also purposely placed at the end of the structure to
prevent holes from within. Now that there's a 4 byte number to hold the
inode, both the inode number and the last integer can be moved up in the
structure for better cache locality, where the llist and rcu fields can be
moved to the end as they are only used when the eventfs_inode is being
deleted.

Link: https://lore.kernel.org/all/CAMuHMdXKiorg-jiuKoZpfZyDJ3Ynrfb8=X+c7x0Eewxn-YRdCA@mail.gmail.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240122152748.46897388@gandalf.local.home

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Fixes: 53c41052ba31 ("eventfs: Have the inodes all for files and directories all be the same")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

1f20155a06-Feb-2024 Erick Archer <erick.archer@gmx.com>

eventfs: Use kcalloc() instead of kzalloc()

commit 1057066009c4325bb1d8430c9274894d0860e7c3 upstream.

As noted in the "Deprecated Interfaces, Language Features, Attributes,
and Conventions" documen

eventfs: Use kcalloc() instead of kzalloc()

commit 1057066009c4325bb1d8430c9274894d0860e7c3 upstream.

As noted in the "Deprecated Interfaces, Language Features, Attributes,
and Conventions" documentation [1], size calculations (especially
multiplication) should not be performed in memory allocator (or similar)
function arguments due to the risk of them overflowing. This could lead
to values wrapping around and a smaller allocation being made than the
caller was expecting. Using those allocations could lead to linear
overflows of heap memory and other misbehaviors.

So, use the purpose specific kcalloc() function instead of the argument
size * count in the kzalloc() function.

[1] https://www.kernel.org/doc/html/next/process/deprecated.html#open-coded-arithmetic-in-allocator-arguments

Link: https://lore.kernel.org/linux-trace-kernel/20240115181658.4562-1-erick.archer@gmx.com

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Link: https://github.com/KSPP/linux/issues/162
Signed-off-by: Erick Archer <erick.archer@gmx.com>
Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

c55d11ea06-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Do not create dentries nor inodes in iterate_shared

commit 852e46e239ee6db3cd220614cf8bce96e79227c2 upstream.

The original eventfs code added a wrapper around the dcache_readdir open
callb

eventfs: Do not create dentries nor inodes in iterate_shared

commit 852e46e239ee6db3cd220614cf8bce96e79227c2 upstream.

The original eventfs code added a wrapper around the dcache_readdir open
callback and created all the dentries and inodes at open, and increment
their ref count. A wrapper was added around the dcache_readdir release
function to decrement all the ref counts of those created inodes and
dentries. But this proved to be buggy[1] for when a kprobe was created
during a dir read, it would create a dentry between the open and the
release, and because the release would decrement all ref counts of all
files and directories, that would include the kprobe directory that was
not there to have its ref count incremented in open. This would cause the
ref count to go to negative and later crash the kernel.

To solve this, the dentries and inodes that were created and had their ref
count upped in open needed to be saved. That list needed to be passed from
the open to the release, so that the release would only decrement the ref
counts of the entries that were incremented in the open.

Unfortunately, the dcache_readdir logic was already using the
file->private_data, which is the only field that can be used to pass
information from the open to the release. What was done was the eventfs
created another descriptor that had a void pointer to save the
dcache_readdir pointer, and it wrapped all the callbacks, so that it could
save the list of entries that had their ref counts incremented in the
open, and pass it to the release. The wrapped callbacks would just put
back the dcache_readdir pointer and call the functions it used so it could
still use its data[2].

But Linus had an issue with the "hijacking" of the file->private_data
(unfortunately this discussion was on a security list, so no public link).
Which we finally agreed on doing everything within the iterate_shared
callback and leave the dcache_readdir out of it[3]. All the information
needed for the getents() could be created then.

But this ended up being buggy too[4]. The iterate_shared callback was not
the right place to create the dentries and inodes. Even Christian Brauner
had issues with that[5].

An attempt was to go back to creating the inodes and dentries at
the open, create an array to store the information in the
file->private_data, and pass that information to the other callbacks.[6]

The difference between that and the original method, is that it does not
use dcache_readdir. It also does not up the ref counts of the dentries and
pass them. Instead, it creates an array of a structure that saves the
dentry's name and inode number. That information is used in the
iterate_shared callback, and the array is freed in the dir release. The
dentries and inodes created in the open are not used for the iterate_share
or release callbacks. Just their names and inode numbers.

Linus did not like that either[7] and just wanted to remove the dentries
being created in iterate_shared and use the hard coded inode numbers.

[ All this while Linus enjoyed an unexpected vacation during the merge
window due to lack of power. ]

[1] https://lore.kernel.org/linux-trace-kernel/20230919211804.230edf1e@gandalf.local.home/
[2] https://lore.kernel.org/linux-trace-kernel/20230922163446.1431d4fa@gandalf.local.home/
[3] https://lore.kernel.org/linux-trace-kernel/20240104015435.682218477@goodmis.org/
[4] https://lore.kernel.org/all/202401152142.bfc28861-oliver.sang@intel.com/
[5] https://lore.kernel.org/all/20240111-unzahl-gefegt-433acb8a841d@brauner/
[6] https://lore.kernel.org/all/20240116114711.7e8637be@gandalf.local.home/
[7] https://lore.kernel.org/all/20240116170154.5bf0a250@gandalf.local.home/

Link: https://lore.kernel.org/linux-trace-kernel/20240116211353.573784051@goodmis.org

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Fixes: 493ec81a8fb8 ("eventfs: Stop using dcache_readdir() for getdents()")
Reported-by: kernel test robot <oliver.sang@intel.com>
Closes: https://lore.kernel.org/oe-lkp/202401152142.bfc28861-oliver.sang@intel.com
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

4e8731d206-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Have the inodes all for files and directories all be the same

commit 53c41052ba3121761e6f62a813961164532a214f upstream.

The dentries and inodes are created in the readdir for the sole purp

eventfs: Have the inodes all for files and directories all be the same

commit 53c41052ba3121761e6f62a813961164532a214f upstream.

The dentries and inodes are created in the readdir for the sole purpose of
getting a consistent inode number. Linus stated that is unnecessary, and
that all inodes can have the same inode number. For a virtual file system
they are pretty meaningless.

Instead use a single unique inode number for all files and one for all
directories.

Link: https://lore.kernel.org/all/20240116133753.2808d45e@gandalf.local.home/
Link: https://lore.kernel.org/linux-trace-kernel/20240116211353.412180363@goodmis.org

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Ajay Kaher <ajay.kaher@broadcom.com>
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

e638899f06-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Shortcut eventfs_iterate() by skipping entries already read

commit 1de94b52d5e8d8b32f0252f14fad1f1edc2e71f1 upstream.

As the ei->entries array is fixed for the duration of the eventfs_inod

eventfs: Shortcut eventfs_iterate() by skipping entries already read

commit 1de94b52d5e8d8b32f0252f14fad1f1edc2e71f1 upstream.

As the ei->entries array is fixed for the duration of the eventfs_inode,
it can be used to skip over already read entries in eventfs_iterate().

That is, if ctx->pos is greater than zero, there's no reason in doing the
loop across the ei->entries array for the entries less than ctx->pos.
Instead, start the lookup of the entries at the current ctx->pos.

Link: https://lore.kernel.org/all/CAHk-=wiKwDUDv3+jCsv-uacDcHDVTYsXtBR9=6sGM5mqX+DhOg@mail.gmail.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240104220048.494956957@goodmis.org

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

f3f41f4406-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Read ei->entries before ei->children in eventfs_iterate()

commit 704f960dbee2f1634f4b4e16f208cb16eaf41c1e upstream.

In order to apply a shortcut to skip over the current ctx->pos
immediate

eventfs: Read ei->entries before ei->children in eventfs_iterate()

commit 704f960dbee2f1634f4b4e16f208cb16eaf41c1e upstream.

In order to apply a shortcut to skip over the current ctx->pos
immediately, by using the ei->entries array, the reading of that array
should be first. Moving the array reading before the linked list reading
will make the shortcut change diff nicer to read.

Link: https://lore.kernel.org/all/CAHk-=wiKwDUDv3+jCsv-uacDcHDVTYsXtBR9=6sGM5mqX+DhOg@mail.gmail.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240104220048.333115095@goodmis.org

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

82820a2d06-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Do ctx->pos update for all iterations in eventfs_iterate()

commit 1e4624eb5a0ecaae0d2c4e3019bece119725bb98 upstream.

The ctx->pos was only updated when it added an entry, but the "skip to

eventfs: Do ctx->pos update for all iterations in eventfs_iterate()

commit 1e4624eb5a0ecaae0d2c4e3019bece119725bb98 upstream.

The ctx->pos was only updated when it added an entry, but the "skip to
current pos" check (c--) happened for every loop regardless of if the
entry was added or not. This inconsistency caused readdir to be incorrect.

It was due to:

for (i = 0; i < ei->nr_entries; i++) {

if (c > 0) {
c--;
continue;
}

mutex_lock(&eventfs_mutex);
/* If ei->is_freed then just bail here, nothing more to do */
if (ei->is_freed) {
mutex_unlock(&eventfs_mutex);
goto out;
}
r = entry->callback(name, &mode, &cdata, &fops);
mutex_unlock(&eventfs_mutex);

[..]
ctx->pos++;
}

But this can cause the iterator to return a file that was already read.
That's because of the way the callback() works. Some events may not have
all files, and the callback can return 0 to tell eventfs to skip the file
for this directory.

for instance, we have:

# ls /sys/kernel/tracing/events/ftrace/function
format hist hist_debug id inject

and

# ls /sys/kernel/tracing/events/sched/sched_switch/
enable filter format hist hist_debug id inject trigger

Where the function directory is missing "enable", "filter" and
"trigger". That's because the callback() for events has:

static int event_callback(const char *name, umode_t *mode, void **data,
const struct file_operations **fops)
{
struct trace_event_file *file = *data;
struct trace_event_call *call = file->event_call;

[..]

/*
* Only event directories that can be enabled should have
* triggers or filters, with the exception of the "print"
* event that can have a "trigger" file.
*/
if (!(call->flags & TRACE_EVENT_FL_IGNORE_ENABLE)) {
if (call->class->reg && strcmp(name, "enable") == 0) {
*mode = TRACE_MODE_WRITE;
*fops = &ftrace_enable_fops;
return 1;
}

if (strcmp(name, "filter") == 0) {
*mode = TRACE_MODE_WRITE;
*fops = &ftrace_event_filter_fops;
return 1;
}
}

if (!(call->flags & TRACE_EVENT_FL_IGNORE_ENABLE) ||
strcmp(trace_event_name(call), "print") == 0) {
if (strcmp(name, "trigger") == 0) {
*mode = TRACE_MODE_WRITE;
*fops = &event_trigger_fops;
return 1;
}
}
[..]
return 0;
}

Where the function event has the TRACE_EVENT_FL_IGNORE_ENABLE set.

This means that the entries array elements for "enable", "filter" and
"trigger" when called on the function event will have the callback return
0 and not 1, to tell eventfs to skip these files for it.

Because the "skip to current ctx->pos" check happened for all entries, but
the ctx->pos++ only happened to entries that exist, it would confuse the
reading of a directory. Which would cause:

# ls /sys/kernel/tracing/events/ftrace/function/
format hist hist hist_debug hist_debug id inject inject

The missing "enable", "filter" and "trigger" caused ls to show "hist",
"hist_debug" and "inject" twice.

Update the ctx->pos for every iteration to keep its update and the "skip"
update consistent. This also means that on error, the ctx->pos needs to be
decremented if it was incremented without adding something.

Link: https://lore.kernel.org/all/20240104150500.38b15a62@gandalf.local.home/
Link: https://lore.kernel.org/linux-trace-kernel/20240104220048.172295263@goodmis.org

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fixes: 493ec81a8fb8e ("eventfs: Stop using dcache_readdir() for getdents()")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

9810276406-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Have eventfs_iterate() stop immediately if ei->is_freed is set

commit e109deadb73318cf4a3bd61287d969f705df278f upstream.

If ei->is_freed is set in eventfs_iterate(), it means that the dire

eventfs: Have eventfs_iterate() stop immediately if ei->is_freed is set

commit e109deadb73318cf4a3bd61287d969f705df278f upstream.

If ei->is_freed is set in eventfs_iterate(), it means that the directory
that is being iterated on is in the process of being freed. Just exit the
loop immediately when that is ever detected, and separate out the return
of the entry->callback() from ei->is_freed.

Link: https://lore.kernel.org/linux-trace-kernel/20240104220048.016261289@goodmis.org

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

628adb8406-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

tracefs/eventfs: Use root and instance inodes as default ownership

commit 8186fff7ab649085e2c60d032d9a20a85af1d87c upstream.

Instead of walking the dentries on mount/remount to update the gid value

tracefs/eventfs: Use root and instance inodes as default ownership

commit 8186fff7ab649085e2c60d032d9a20a85af1d87c upstream.

Instead of walking the dentries on mount/remount to update the gid values of
all the dentries if a gid option is specified on mount, just update the root
inode. Add .getattr, .setattr, and .permissions on the tracefs inode
operations to update the permissions of the files and directories.

For all files and directories in the top level instance:

/sys/kernel/tracing/*

It will use the root inode as the default permissions. The inode that
represents: /sys/kernel/tracing (or wherever it is mounted).

When an instance is created:

mkdir /sys/kernel/tracing/instance/foo

The directory "foo" and all its files and directories underneath will use
the default of what foo is when it was created. A remount of tracefs will
not affect it.

If a user were to modify the permissions of any file or directory in
tracefs, it will also no longer be modified by a change in ownership of a
remount.

The events directory, if it is in the top level instance, will use the
tracefs root inode as the default ownership for itself and all the files and
directories below it.

For the events directory in an instance ("foo"), it will keep the ownership
of what it was when it was created, and that will be used as the default
ownership for the files and directories beneath it.

Link: https://lore.kernel.org/linux-trace-kernel/CAHk-=wjVdGkjDXBbvLn2wbZnqP4UsH46E3gqJ9m7UG6DpX2+WA@mail.gmail.com/
Link: https://lore.kernel.org/linux-trace-kernel/20240103215016.1e0c9811@gandalf.local.home

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

1bfdd54a06-Feb-2024 Steven Rostedt (Google) <rostedt@goodmis.org>

eventfs: Stop using dcache_readdir() for getdents()

commit 493ec81a8fb8e4ada6f223b8b73791a1280d4774 upstream.

The eventfs creates dynamically allocated dentries and inodes. Using the
dcache_readdir

eventfs: Stop using dcache_readdir() for getdents()

commit 493ec81a8fb8e4ada6f223b8b73791a1280d4774 upstream.

The eventfs creates dynamically allocated dentries and inodes. Using the
dcache_readdir() logic for its own directory lookups requires hiding the
cursor of the dcache logic and playing games to allow the dcache_readdir()
to still have access to the cursor while the eventfs saved what it created
and what it needs to release.

Instead, just have eventfs have its own iterate_shared callback function
that will fill in the dent entries. This simplifies the code quite a bit.

Link: https://lore.kernel.org/linux-trace-kernel/20240104015435.682218477@goodmis.org

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ajay Kaher <akaher@vmware.com>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

show more ...

12345