kernel_samsung_a53x/include/linux
Steven Rostedt (Google) 3dd95b76d7 tracing: Have trace_event_file have ref counters
commit bb32500fb9b78215e4ef6ee8b4345c5f5d7eafb4 upstream.

The following can crash the kernel:

 # cd /sys/kernel/tracing
 # echo 'p:sched schedule' > kprobe_events
 # exec 5>>events/kprobes/sched/enable
 # > kprobe_events
 # exec 5>&-

The above commands:

 1. Change directory to the tracefs directory
 2. Create a kprobe event (doesn't matter what one)
 3. Open bash file descriptor 5 on the enable file of the kprobe event
 4. Delete the kprobe event (removes the files too)
 5. Close the bash file descriptor 5

The above causes a crash!

 BUG: kernel NULL pointer dereference, address: 0000000000000028
 #PF: supervisor read access in kernel mode
 #PF: error_code(0x0000) - not-present page
 PGD 0 P4D 0
 Oops: 0000 [#1] PREEMPT SMP PTI
 CPU: 6 PID: 877 Comm: bash Not tainted 6.5.0-rc4-test-00008-g2c6b6b1029d4-dirty #186
 Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.2-debian-1.16.2-1 04/01/2014
 RIP: 0010:tracing_release_file_tr+0xc/0x50

What happens here is that the kprobe event creates a trace_event_file
"file" descriptor that represents the file in tracefs to the event. It
maintains state of the event (is it enabled for the given instance?).
Opening the "enable" file gets a reference to the event "file" descriptor
via the open file descriptor. When the kprobe event is deleted, the file is
also deleted from the tracefs system which also frees the event "file"
descriptor.

But as the tracefs file is still opened by user space, it will not be
totally removed until the final dput() is called on it. But this is not
true with the event "file" descriptor that is already freed. If the user
does a write to or simply closes the file descriptor it will reference the
event "file" descriptor that was just freed, causing a use-after-free bug.

To solve this, add a ref count to the event "file" descriptor as well as a
new flag called "FREED". The "file" will not be freed until the last
reference is released. But the FREE flag will be set when the event is
removed to prevent any more modifications to that event from happening,
even if there's still a reference to the event "file" descriptor.

Link: https://lore.kernel.org/linux-trace-kernel/20231031000031.1e705592@gandalf.local.home/
Link: https://lore.kernel.org/linux-trace-kernel/20231031122453.7a48b923@gandalf.local.home

Cc: stable@vger.kernel.org
Cc: Mark Rutland <mark.rutland@arm.com>
Fixes: f5ca233e2e66d ("tracing: Increase trace array ref count on enable and filter files")
Reported-by: Beau Belgrave <beaub@linux.microsoft.com>
Tested-by: Beau Belgrave <beaub@linux.microsoft.com>
Reviewed-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-11-18 11:43:32 +01:00
..
amba Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
avf Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
battery Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcma Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
byteorder Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
can Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ceph Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clk Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crush Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
decompress Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
device driver: platform: Add helper for safer setting of driver_override 2024-11-18 10:58:45 +01:00
dma Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dsa Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
extcon Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
firmware Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fpga Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsl Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gpio Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
greybus Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hall Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hsi Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i3c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ifconn Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iio Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
input Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqchip Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
isdn Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kq Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lockd Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mailbox Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mdio Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mfd mfd: core: Un-constify mfd_cell.of_reg 2024-11-18 11:43:04 +01:00
mlx4 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mlx5 net/mlx5_core: Clean driver version and name 2024-11-18 11:43:20 +01:00
mmc Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mtd Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
muic Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mux Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
net/intel Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_arp Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_bridge Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_ipv4 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_ipv6 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pcs Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
perf Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
phy Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pinctrl Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
platform_data Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
power Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
qed Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
raid Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
regulator Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
remoteproc Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
reset Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rpmsg Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rtc Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
samsung Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sched Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sensor Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
soc Backport mac80211 patches from linux-6.1.y 2024-06-15 16:29:20 -03:00
soundwire Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spi Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ssb Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sti Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sunrpc SUNRPC: Fix RPC client cleaned up the freed pipefs dentries 2024-11-18 11:43:19 +01:00
ulpi Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
unaligned Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
usb Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vibrator Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wimax Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
8250_pci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
a.out.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
acct.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
acpi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
acpi_dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
acpi_iort.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
acpi_pmtmr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
adb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
adfs_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
adreno-smmu-priv.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
adxl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
aer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
agp_backend.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
agpgart.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ahci-remap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ahci_platform.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
aio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
alarmtimer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
alcor_pci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
altera_jtaguart.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
altera_uart.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
amd-iommu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
android_debug_symbols.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
android_kabi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
android_vendor.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
anon_inodes.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
apm-emulation.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
apm_bios.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
apple-gmux.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
apple_bl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
arch_topology.h arch_topology: Rename freq_scale as arch_freq_scale 2024-11-17 17:45:22 +01:00
arm-cci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
arm-smccc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
arm_sdei.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
armada-37xx-rwtm-mailbox.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ascii85.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
asn1.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
asn1_ber_bytecode.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
asn1_decoder.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
assoc_array.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
assoc_array_priv.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
async.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
async_tx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ata.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ata_platform.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atalk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ath9k_platform.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atm_suni.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atm_tcp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atmdev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atmel-isc-media.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atmel-mci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atmel-ssc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atmel_pdc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atomic-arch-fallback.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atomic-fallback.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atomic.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
attribute_container.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
audit.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
auto_dev-ioctl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
auto_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
auxvec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
average.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
backing-dev-defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
backing-dev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
backlight.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
badblocks.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
balloon_compaction.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bch.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcm47xx_nvram.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcm47xx_sprom.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcm47xx_wdt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcm963xx_nvram.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bcm963xx_tag.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
binfmts.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bit_spinlock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitfield.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitmap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bitrev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bits.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk-cgroup.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk-crypto.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk-mq-pci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk-mq-rdma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk-mq-virtio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk-mq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk-pm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blk_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blkdev.h block: disable I/O stats accounting by default 2024-11-17 17:42:54 +01:00
blkpg.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blktrace_api.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
blockgroup_lock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bma150.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bootconfig.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bottom_half.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf-cgroup.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf-netns.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf_lirc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf_local_storage.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf_lsm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf_trace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpf_verifier.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bpfilter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
brcmphy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bsearch.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bsg-lib.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bsg.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btf_ids.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btpower.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btree-128.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btree-type.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
btrfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
buffer_head.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
build-salt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
build_bug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bvec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
c2port.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cacheinfo.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
capability.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cb710.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cc_platform.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cciss_ioctl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ccp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cdev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cdrom.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cfag12864b.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cfi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cgroup-defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cgroup.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cgroup_rdma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cgroup_subsys.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
circ_buf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cleancache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clk-provider.h clk: linux/clk-provider.h: fix kernel-doc warnings and typos 2024-11-18 11:42:53 +01:00
clk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clkdev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clockchips.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
clocksource.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cm4000_cs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cmdline-parser.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cn_proc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cnss_plat_ipc_qmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cnt32_to_63.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
coda.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compaction.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compiler-clang.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compiler-gcc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compiler-intel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compiler.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compiler_attributes.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compiler_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
completion.h sched/completion: Expose wait_for_common*() to drivers 2024-11-17 17:45:08 +01:00
component.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
configfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
connector.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
console.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
console_struct.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
consolemap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
const.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
container.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
context_tracking.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
context_tracking_state.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cookie.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cordic.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
coredump.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
coresight-pmu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
coresight-stm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
coresight.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
count_zeros.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
counter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
counter_enum.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cper.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpu_cooling.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpu_pm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpu_rmap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpufeature.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpufreq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpufreq_times.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpuhotplug.h arm64/arm: xen: enlighten: Fix KPTI checks 2024-11-18 11:42:55 +01:00
cpuidle.h Revert "cpuidle: Reject idle entry if need_resched() is true" 2024-11-18 07:48:03 +01:00
cpuidle_haltpoll.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpumask.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cpuset.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crash_core.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crash_dump.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc-ccitt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc-itu-t.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc-t10dif.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc4.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc7.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc8.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc16.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc32.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc32c.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc32poly.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crc64.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cred.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
crypto.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cs5535.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ctype.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cuda.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
cyclades.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
damon.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dasd_mod.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
davinci_emac.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dax.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dbmdx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dca.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dcache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dccp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dcookies.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
debug_locks.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
debugfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
debugobjects.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
delay.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
delayacct.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
delayed_call.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dev_printk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dev_ril_bridge.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
devcoredump.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
devfreq-event.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
devfreq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
devfreq_cooling.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
device-mapper.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
device.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
device_cgroup.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
devpts_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
digsig.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dim.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dirent.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dlm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dlm_plock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dm-bufio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dm-dirty-log.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dm-io.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dm-kcopyd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dm-region-hash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dm9000.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-buf-container.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-buf-test-exporter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-buf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-direct.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-direction.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-fence-array.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-fence-chain.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-fence.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-heap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-iommu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-map-ops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-mapping.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dma-resv.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dmaengine.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dmapool.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dmar.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dnotify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dns_resolver.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dqblk_qtree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dqblk_v1.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dqblk_v2.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
drbd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
drbd_genl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
drbd_genl_api.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
drbd_limits.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ds2782_battery.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dtlk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dtpm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dw_apb_timer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dynamic_debug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
dynamic_queue_limits.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
earlycpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ecryptfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
edac.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
edd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
eeprom_93cx6.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
eeprom_93xx46.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
efi-bgrt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
efi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
efi_embedded_fw.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
efs_vh.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
eisa.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
elevator.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
elf-fdpic.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
elf-randomize.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
elf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
elfcore-compat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
elfcore.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
elfnote.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ems.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
enclosure.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
energy_model.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
entry-common.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
entry-kvm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
err.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
errname.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
errno.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
error-injection.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
errqueue.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
errseq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
etherdevice.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ethtool.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ethtool_netlink.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
eventfd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
eventpoll.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
evm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
export.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
exportfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ext2_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
extable.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
extcon-provider.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
extcon.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
external_notify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
exynos-pci-ctrl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
exynos-pci-noti.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
f2fs_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
f75375s.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
falloc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fanotify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fault-inject-usercopy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fault-inject.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fbcon.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fcdevice.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fcntl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fddidevice.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fdtable.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fiemap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
file.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
filter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fips.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
firewire.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
firmware-map.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
firmware.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fixp-arith.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
flat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
flex_proportions.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
font.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
freecess.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
freezer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
frontswap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_context.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_enet_pd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_parser.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_pin.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_stack.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_struct.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fs_uart_pd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fscache-cache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fscache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fscrypt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fscrypto_sdp_cache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fscrypto_sdp_ioctl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fscrypto_sdp_name.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsi-occ.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsi-sbefifo.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsl-diu-fb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsl_devices.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsl_hypervisor.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsl_ifc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsldma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fslog.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsnotify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsnotify_backend.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fsverity.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ftrace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ftrace_irq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
futex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fwnode.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gameport.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gcd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
genalloc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
generic-radix-tree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
genetlink.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
genhd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
genl_magic_func.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
genl_magic_struct.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
getcpu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gfp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
glob.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gnss.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
goldfish.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gpio-pxa.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
gpio_keys.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
greybus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hardirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hashtable.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hdlc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hdlcdrv.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hdm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hdmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hid-debug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hid-roccat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hid-sensor-hub.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hid-sensor-ids.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hidden.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hiddev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hidraw.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
highmem.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
highuid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hil.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hil_mlc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hippidevice.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hmm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
host1x.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
host_notify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hp_sdc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hpet.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hrtimer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hrtimer_defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
htcpld.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
huge_mm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hugepage_pool.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hugetlb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hugetlb_cgroup.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hugetlb_inline.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hw_breakpoint.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hw_random.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hwmon-sysfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hwmon-vid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hwmon.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hwspinlock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hyperv.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hypervisor.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i2c-algo-bit.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i2c-algo-pca.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i2c-algo-pcf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i2c-dev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i2c-mux.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i2c-smbus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i2c.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i8042.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
i8253.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
icmp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
icmpv6.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ide.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
idle_inject.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
idr.h Fix termination state for idr_for_each_entry_ul() 2024-11-18 11:43:08 +01:00
ieee80211.h Backport mac80211 patches from linux-6.1.y 2024-06-15 16:29:20 -03:00
ieee802154.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_arp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_bridge.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_eql.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_ether.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_fddi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_frad.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_link.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_ltalk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_macvlan.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_phonet.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_pppol2tp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_pppox.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_rmnet.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_tap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_team.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_tun.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_tunnel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
if_vlan.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
igmp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ihex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ima.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
imx-media.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
in.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
in6.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
indirect_call_wrapper.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inet.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inet_diag.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inetdevice.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
init.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
init_ohci1394_dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
init_syscalls.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
init_task.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
initrd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
inotify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
input-polldev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
input.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
instrumentation.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
instrumented.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
integrity.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
intel-iommu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
intel-ish-client-if.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
intel-pti.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
intel-svm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
intel_rapl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
intel_th.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
interconnect-provider.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
interconnect.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
interrupt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
interval_tree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
interval_tree_generic.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-64-nonatomic-hi-lo.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-64-nonatomic-lo-hi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-mapping.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io-pgtable.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io_record.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
io_uring.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ioasid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iocontext.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iomap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iommu-helper.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iommu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ion.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iopoll.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ioport.h resource: Add irqresource_disabled() 2024-11-08 11:26:11 +01:00
ioprio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iova.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ip.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ipack.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ipc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ipc_logging.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ipc_namespace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ipmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ipmi_smi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ipv6.h net: change accept_ra_min_rtr_lft to affect all RA lifetimes 2024-11-08 11:25:47 +01:00
ipv6_route.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irq_cpustat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irq_poll.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irq_sim.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irq_work.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqbypass.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqchip.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqdesc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqdomain.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqflags.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqhandler.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqnr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqreturn.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
isa.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
isapnp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iscsi_boot_sysfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iscsi_ibft.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
isicom.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
iversion.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jbd2.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jhash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jiffies.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
journal-head.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
joystick.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jump_label.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jump_label_ratelimit.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jz4740-adc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jz4780-nemc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kallsyms.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kasan-checks.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kasan-enabled.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kasan-tags.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kasan.h Revert "kasan: print the original fault addr when access invalid shadow" 2024-11-18 11:06:01 +01:00
kbd_diacr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kbd_kern.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kbuild.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kconfig.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kcore.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kcov.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kcsan-checks.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kcsan.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kdb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kdebug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kdev_t.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kdp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kern_levels.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kernel-page-flags.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kernel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kernel_read_file.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kernel_stat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kernelcapi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kernfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kexec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
key-type.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
key.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
keyboard.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
keyctl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
keyslot-manager.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kfence.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kfifo.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kgdb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
khugepaged.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
klist.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kmemleak.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kmod.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kmsg_dump.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kobj_map.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kobject.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kobject_ns.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kprobes.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kref.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ks0108.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ks8842.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ks8851_mll.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ksm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kstrtox.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kthread.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ktime.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kvm_host.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kvm_irqfd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kvm_para.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kvm_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
l2tp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lantiq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lapb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
latencytop.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lcd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lcm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
led-class-flash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
led-class-multicolor.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
led-lm3530.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-bd2802.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-lp3944.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-lp3952.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-pca9532.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-regulator.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-s2mf301.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-s2mpb02.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-s2mu106.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds-ti-lmu-common.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
leds.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
libata.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
libfdt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
libfdt_env.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
libgcc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
libnvdimm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
libps2.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
license.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lightnvm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
limits.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
linear_range.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
linkage.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
linkmode.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
linux_logo.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lis3lv02d.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list_bl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list_lru.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list_nulls.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
list_sort.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
livepatch.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
llc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
llist.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
local_lock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
local_lock_internal.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lockdep.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lockdep_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lockref.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
log2.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
log_mmiorw.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
logic_pio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lru_cache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lsm_audit.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lsm_hook_defs.h lsm: fix default return value for inode_getsecctx 2024-11-18 11:43:30 +01:00
lsm_hooks.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lz4.h crypto/zram: Add lz4fast algorithm 2024-10-04 20:09:29 -03:00
lzo.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mailbox_client.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mailbox_controller.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mali_exynos_if.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
maple.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
marvell_phy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
math64.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
max17040_battery.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mbcache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mbus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mc6821.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mc146818rtc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mcb.h mcb: remove is_added flag from mcb_device struct 2024-11-08 11:25:50 +01:00
mdev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mdio-bitbang.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mdio-gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mdio-mux.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mdio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mei_cl_bus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mem_encrypt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memblock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memcontrol.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memfd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memory.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memory_group_manager.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memory_hotplug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mempolicy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mempool.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memregion.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memremap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
memstick.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mhi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mhi_misc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
micrel_phy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
microchipphy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
migrate.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
migrate_mode.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mii.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mii_timestamper.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
min_heap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
minmax.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
miscdevice.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mISDNdsp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mISDNhw.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mISDNif.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mm-arch-hooks.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mm_inline.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mm_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mm_types_task.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mman.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mmap_lock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mmdebug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mmiotrace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mmu_context.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mmu_notifier.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mmzone.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mnt_namespace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mod_devicetable.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
module.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
module_signature.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
moduleloader.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
moduleparam.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
most.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mount.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
moxtet.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mpage.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mpi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mpls.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mpls_iptunnel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mroute.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mroute6.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mroute_base.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
msdos_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
msdos_partition.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
msg.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
msi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mtio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mutex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mv643xx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mv643xx_eth.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mv643xx_i2c.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mvebu-pmsu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mxm-wmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mz.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
n_r3964.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
namei.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ndctl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
net.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netdev_features.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netdevice.h dev_forward_skb: do not scrub skb mark within the same name space 2024-11-08 11:26:07 +01:00
netfilter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_bridge.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_ingress.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_ipv4.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netfilter_ipv6.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netlink.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
netpoll.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs3.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs4.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_fs_i.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_fs_sb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_iostat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_page.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_ssc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_xdr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfsacl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nitro_enclaves.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nl802154.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nls.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
node.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nodemask.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nospec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
notifier.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ns_common.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nsc_gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nsproxy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ntb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ntb_transport.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nubus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
numa.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvme-fc-driver.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvme-fc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvme-rdma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvme-tcp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvme.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvmem-consumer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvmem-provider.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nvram.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
objagg.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
objtool.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_address.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_clk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_device.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_fdt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_graph.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_iommu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_irq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_mdio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_net.h Backport mac80211 patches from linux-6.1.y 2024-06-15 16:29:20 -03:00
of_pci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_pdt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_platform.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
of_reserved_mem.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
oid_registry.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
olpc-ec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
omap-dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
omap-gpmc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
omap-iommu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
omap-mailbox.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
omapfb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
once.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
oom.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
openvswitch.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
oprofile.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
osq_lock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
overflow.h overflow: Implement size_t saturating arithmetic helpers 2024-11-18 11:42:47 +01:00
packing.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
padata.h padata: Convert from atomic_t to refcount_t on parallel_data->refcnt 2024-11-18 11:43:04 +01:00
page-flags-layout.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page-flags.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page-isolation.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page_counter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page_ext.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page_idle.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page_owner.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page_pinner.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page_ref.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
page_reporting.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pageblock-flags.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pagemap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pagevec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pagewalk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
panel_notify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
parman.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
parport.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
parport_pc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
parser.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
part_stat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pata_arasan_cf_data.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
patchkey.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
path.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pch_dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-acpi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-ats.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-dma-compat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-ecam.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-ep-cfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-epc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-epf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci-p2pdma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci_hotplug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci_ids.h PCI: Prevent xHCI driver from claiming AMD VanGogh USB3 DRD device 2024-11-18 10:58:47 +01:00
pcs-lynx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pda_power.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pe.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu-defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu-refcount.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu-rwsem.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
percpu_counter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
perf_event.h perf: Disallow mis-matched inherited group reads 2024-11-08 11:26:19 +01:00
perf_regs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
personality.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pfn.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pfn_t.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pgtable.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
phonet.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
phy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
phy_fixed.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
phy_led_triggers.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
phylink.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pid_namespace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pim.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pipe_fs_i.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pkeys.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pktcdvd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pl320-ipc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pl353-smc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
platform_device.h driver: platform: Add helper for safer setting of driver_override 2024-11-18 10:58:45 +01:00
platform_device_mock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pldmfw.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
plist.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm-trace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm2301_charger.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm_clock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm_domain.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm_opp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm_qos.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm_runtime.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm_wakeirq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pm_wakeup.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pmbus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pmu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pnfs_osd_xdr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pnp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
poison.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
poll.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
posix-clock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
posix-timers.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
posix_acl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
posix_acl_xattr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
power_supply.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
powercap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ppp-comp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ppp_channel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ppp_defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pps-gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pps_kernel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
prandom.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
preempt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
prefetch.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
prime_numbers.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
printk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
priority_control_manager.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
proc_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
proc_ns.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
proca.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
processor.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
profile.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
projid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
property.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
protected_memory_allocator.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
protected_mode_switcher.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pruss_driver.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
psci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pseudo_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
psi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
psi_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
psp-sev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
psp-tee.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pstore.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pstore_blk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pstore_ram.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pstore_zone.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ptdump.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pti.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ptp_classify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ptp_clock_kernel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ptr_ring.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ptrace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
purgatory.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pvclock_gtod.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pwm.h pwm: Fix double shift bug 2024-11-18 11:43:15 +01:00
pwm_backlight.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pxa2xx_ssp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pxa168_eth.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
qcom-geni-se.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
qcom_scm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
qnx6_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
quota.h quota: Fix slow quotaoff 2024-11-08 11:25:43 +01:00
quotaops.h quota: Fix slow quotaoff 2024-11-08 11:25:43 +01:00
radix-tree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
raid_class.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ramfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
random.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
range.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ras.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ratelimit.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ratelimit_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rational.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rbtree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rbtree_augmented.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rbtree_latch.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcu_node_tree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcu_segcblist.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcu_sync.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rculist.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rculist_bl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rculist_nulls.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcupdate.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcupdate_trace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcupdate_wait.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcutiny.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcutree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rcuwait.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
reboot-mode.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
reboot.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
reciprocal_div.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
refcount.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
regmap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
regset.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
relay.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
remoteproc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
resctrl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
reset-controller.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
reset.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
resource.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
resource_ext.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
restart_block.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rfkill.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rhashtable-types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rhashtable.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ring_buffer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rio_drv.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rio_ids.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rio_regs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rkp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rmap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rndis.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rodata_test.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
root_dev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rpmsg.h rpmsg: Fix calling device_lock() on non-initialized device 2024-11-18 10:58:46 +01:00
rslib.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rtc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rtmutex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rtnetlink.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rtsx_common.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rtsx_pci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rtsx_usb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rwlock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rwlock_api_smp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rwlock_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rwsem.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
s2mps23_key.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
s3c_adc_battery.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
samsung-dma-mapping.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
samsung-secure-iova.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sbitmap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scatterlist.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sched.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sched_clock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scmi_protocol.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scpi_protocol.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
screen_info.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sctp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scx200.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
scx200_gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sdb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sdla.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sec_argos.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sec_hard_reset_hook.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sec_pm_debug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sec_pon_alarm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seccomp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
securebits.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
security.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sed-opal.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seg6.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seg6_genl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seg6_hmac.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seg6_iptunnel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seg6_local.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
selection.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sem.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
semaphore.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seq_buf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seq_file.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seq_file_net.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seqlock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
seqno-fence.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serdev.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial_8250.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial_bcm63xx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial_core.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial_max3100.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial_pnx8xxx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial_s3c.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serial_sci.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
serio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
set_memory.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sfi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sfi_acpi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sfp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sh_clk.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sh_dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sh_eth.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sh_intc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sh_timer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
shdma-base.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
shm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
shmem_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
shrinker.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
signal.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
signal_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
signalfd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
siox.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
siphash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sirfsoc_dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sizes.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
skb_array.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
skbuff.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
skmsg.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
slab.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
slab_def.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
slimbus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
slub_def.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sm501-regs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sm501.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sm5714.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smc91x.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smc911x.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smp_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smpboot.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smsc911x.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
smscphy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sock_diag.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
socket.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sockptr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sonet.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sony-laptop.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sonypi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sort.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sound.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
soundcard.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spinlock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spinlock_api_smp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spinlock_api_up.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spinlock_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spinlock_types_up.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spinlock_up.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
splice.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
spmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sram.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
srcu.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
srcutiny.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
srcutree.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ssbi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stackdepot.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stackleak.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stackprotector.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stacktrace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
start_kernel.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
statfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
static_call.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
static_call_types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
static_key.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stddef.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stmmac.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stmp3xxx_rtc_wdt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stmp_device.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stop_machine.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
string.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
string_helpers.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stringhash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
stringify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sungem_phy.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sunserialcore.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sunxi-rsb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
superhyway.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
suspend.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
svga.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sw842.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swab.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swait.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swap.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swap_cgroup.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swap_slots.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swapfile.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swapops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
swiotlb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
switchtec.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sxgbe_platform.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sync_core.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sync_file.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
synclink.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sys.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sys_soc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
syscalls.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
syscore_ops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sysctl.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sysfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
syslog.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sysrq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sysv_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
t10-pi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
task_integrity.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
task_io_accounting.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
task_io_accounting_ops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
task_work.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
taskstats_kern.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tboot.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tca6416_keypad.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tcp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tee_drv.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
textsearch.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
textsearch_fsm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tfrc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
thermal.h Revert "thermal: Increase thermal trip points to 16" 2024-11-18 08:00:08 +01:00
thread_info.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
threads.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
thunderbolt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ti-emif-sram.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ti_wilink_st.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tick.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tifm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timb_dma.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timb_gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
time.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
time32.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
time64.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
time_namespace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timecounter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timekeeper_internal.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timekeeping.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timekeeping32.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timerfd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timeriomem-rng.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timerqueue.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
timex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tnum.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
topology.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
torture.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
toshiba.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tpm.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tpm_command.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tpm_eventlog.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
trace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
trace_clock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
trace_events.h tracing: Have trace_event_file have ref counters 2024-11-18 11:43:32 +01:00
trace_seq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tracefs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tracehook.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tracepoint-defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tracepoint.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
transport_class.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ts-nbus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tsacct_kern.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tty.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tty_driver.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tty_flip.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tty_ldisc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
typecheck.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
types.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
u64_stats_sync.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uacce.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uaccess.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ucb1400.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ucs2_string.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
udp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uh.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uidgid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uio_driver.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
umh.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
unicode.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
units.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uprobes.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
usb.h usb: core: Track SuperSpeed Plus GenXxY 2024-11-08 11:26:12 +01:00
usb_hw_param.h Import A536BXXSAEXE1 2024-06-15 16:07:28 -03:00
usb_notify.h Import A536BXXSAEXE1 2024-06-15 16:07:28 -03:00
usb_usual.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
usbdevice_fs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
usblog_proc_notify.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
user-return-notifier.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
user.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
user_namespace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
userfaultfd_k.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
usermode_driver.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
util_macros.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uts.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
utsname.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
uuid.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vbox_utils.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vbus_notifier.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vdpa.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
verification.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vermagic.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
version_compat_defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vexpress.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vfio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vfs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vga_switcheroo.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vgaarb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vhost_iotlb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
via-core.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
via-gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
via.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
via_i2c.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
videodev2.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
videodev2_exynos_media.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_byteorder.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_caif.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_config.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_console.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_dma_buf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_net.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_ring.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
virtio_vsock.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
visorbus.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vlynq.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vm_event_item.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vmacache.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vmalloc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vme.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vmpressure.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vmstat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vmw_vmci_api.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vmw_vmci_defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vringh.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vt.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vt_buffer.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vt_kern.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
vtime.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
w1-gpio.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
w1.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wait.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wait_bit.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wakeup_reason.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
watch_queue.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
watchdog.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
win_minmax.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wireless.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wkup_m3_ipc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wl12xx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wlan_plat.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wm97xx.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
wmi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
workqueue.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
writeback.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ww_mutex.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xarray.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xattr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xxhash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
xz.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
yam.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
z2_battery.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zbud.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zconf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zlib.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zorro.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zpool.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zsmalloc.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zstd.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
zutil.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00