kernel_samsung_a53x/include/linux
Alexandru Ardelean a0b0bc3cdb util_macros.h: fix/rework find_closest() macros
commit bc73b4186736341ab5cd2c199da82db6e1134e13 upstream.

A bug was found in the find_closest() (find_closest_descending() is also
affected after some testing), where for certain values with small
progressions, the rounding (done by averaging 2 values) causes an
incorrect index to be returned.  The rounding issues occur for
progressions of 1, 2 and 3.  It goes away when the progression/interval
between two values is 4 or larger.

It's particularly bad for progressions of 1.  For example if there's an
array of 'a = { 1, 2, 3 }', using 'find_closest(2, a ...)' would return 0
(the index of '1'), rather than returning 1 (the index of '2').  This
means that for exact values (with a progression of 1), find_closest() will
misbehave and return the index of the value smaller than the one we're
searching for.

For progressions of 2 and 3, the exact values are obtained correctly; but
values aren't approximated correctly (as one would expect).  Starting with
progressions of 4, all seems to be good (one gets what one would expect).

While one could argue that 'find_closest()' should not be used for arrays
with progressions of 1 (i.e. '{1, 2, 3, ...}', the macro should still
behave correctly.

The bug was found while testing the 'drivers/iio/adc/ad7606.c',
specifically the oversampling feature.
For reference, the oversampling values are listed as:
   static const unsigned int ad7606_oversampling_avail[7] = {
          1, 2, 4, 8, 16, 32, 64,
   };

When doing:
  1. $ echo 1 > /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     $ cat /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     1  # this is fine
  2. $ echo 2 > /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     $ cat /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     1  # this is wrong; 2 should be returned here
  3. $ echo 3 > /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     $ cat /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     2  # this is fine
  4. $ echo 4 > /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     $ cat /sys/bus/iio/devices/iio\:device0/oversampling_ratio
     4  # this is fine
And from here-on, the values are as correct (one gets what one would
expect.)

While writing a kunit test for this bug, a peculiar issue was found for the
array in the 'drivers/hwmon/ina2xx.c' & 'drivers/iio/adc/ina2xx-adc.c'
drivers. While running the kunit test (for 'ina226_avg_tab' from these
drivers):
  * idx = find_closest([-1 to 2], ina226_avg_tab, ARRAY_SIZE(ina226_avg_tab));
    This returns idx == 0, so value.
  * idx = find_closest(3, ina226_avg_tab, ARRAY_SIZE(ina226_avg_tab));
    This returns idx == 0, value 1; and now one could argue whether 3 is
    closer to 4 or to 1. This quirk only appears for value '3' in this
    array, but it seems to be a another rounding issue.
  * And from 4 onwards the 'find_closest'() works fine (one gets what one
    would expect).

This change reworks the find_closest() macros to also check the difference
between the left and right elements when 'x'. If the distance to the right
is smaller (than the distance to the left), the index is incremented by 1.
This also makes redundant the need for using the DIV_ROUND_CLOSEST() macro.

In order to accommodate for any mix of negative + positive values, the
internal variables '__fc_x', '__fc_mid_x', '__fc_left' & '__fc_right' are
forced to 'long' type. This also addresses any potential bugs/issues with
'x' being of an unsigned type. In those situations any comparison between
signed & unsigned would be promoted to a comparison between 2 unsigned
numbers; this is especially annoying when '__fc_left' & '__fc_right'
underflow.

The find_closest_descending() macro was also reworked and duplicated from
the find_closest(), and it is being iterated in reverse. The main reason
for this is to get the same indices as 'find_closest()' (but in reverse).
The comparison for '__fc_right < __fc_left' favors going the array in
ascending order.
For example for array '{ 1024, 512, 256, 128, 64, 16, 4, 1 }' and x = 3, we
get:
    __fc_mid_x = 2
    __fc_left = -1
    __fc_right = -2
    Then '__fc_right < __fc_left' evaluates to true and '__fc_i++' becomes 7
    which is not quite incorrect, but 3 is closer to 4 than to 1.

This change has been validated with the kunit from the next patch.

Link: https://lkml.kernel.org/r/20241105145406.554365-1-aardelean@baylibre.com
Fixes: 95d119528b0b ("util_macros.h: add find_closest() macro")
Signed-off-by: Alexandru Ardelean <aardelean@baylibre.com>
Cc: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-12-17 13:24:23 +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 fpga: region: add owner module and take its refcount 2024-11-19 12:27:04 +01:00
fsl Revert "net: enetc: add missing static descriptor and inline keyword" 2024-11-24 00:22:54 +01: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 iio: adc: ad9467: fix scale setting 2024-11-18 12:12:49 +01:00
input Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
irqchip Revert "irqchip/gic-v4: Don't allow a VMOVP on a dying VPE" 2024-11-24 00:22:51 +01:00
isdn Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kq Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
lockd lockd: set file_lock start and end when decoding nlm4 testargs 2024-11-19 12:28:31 +01: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 RDMA/mlx5: Fix fortify source warning while accessing Eth segment 2024-11-19 08:44:35 +01:00
mmc mmc: core: Add mmc_gpiod_set_cd_config() function 2024-11-19 12:27:18 +01: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 netfilter: ipset: fix performance regression in swap operation 2024-11-18 12:13:34 +01: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 phy: tegra: xusb: Add API to retrieve the port number of phy 2024-11-19 09:22:34 +01:00
pinctrl Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
platform_data platform/x86: asus-wmi: Add support for ROG X13 tablet mode 2024-11-18 12:11:27 +01:00
power Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
qed qed: Improve the stack space of filter_config() 2024-11-23 23:20:08 +01: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 kernel: rerun task_work while freezing in get_signal() 2024-11-23 23:20:16 +01: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 spi: Fix deadlock when adding SPI controllers on SPI buses 2024-11-30 02:33:25 +01: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: Replace internal use of SOCKWQ_ASYNC_NOSPACE 2024-12-17 13:24:22 +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 async: Introduce async_schedule_dev_nocall() 2024-11-18 12:12:56 +01: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 selinux: Remove audit dependency 2024-11-19 17:53:57 +01: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 binfmt_misc: pass binfmt_misc flags to the interpreter 2024-11-23 23:20:49 +01: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 fix bitmap corruption on close_range() with CLOSE_RANGE_UNSHARE 2024-11-23 23:20:42 +01: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: return unsigned int from bdev_io_min 2024-12-17 13:24:21 +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 bpf, sockmap: Fix sk->sk_forward_alloc warn_on in sk_stream_kill_queues 2024-11-19 14:19:42 +01: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 Revert "add __read_only for non-init related usage" 2024-12-03 19:57:31 +01: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 Revert "cgroup: Make operations on the cgroup root_list RCU safe" 2024-11-24 00:23:32 +01:00
cgroup.h bpf, cgroups: Fix cgroup v2 fallback on v1/v2 mixed mode 2024-11-23 23:20:59 +01: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: fixed-rate: fix clk_hw_register_fixed_rate_with_accuracy_parent_hw 2024-11-18 12:12:43 +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 ftruncate: pass a signed offset 2024-11-19 14:19:34 +01:00
compiler-clang.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
compiler-gcc.h kasan: Fix Software Tag-Based KASAN with GCC 2024-11-23 23:22:04 +01: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 Fix gcc 4.9 build issue in 5.10.y 2024-11-23 23:20:30 +01: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 x86/rfds: Mitigate Register File Data Sampling (RFDS) 2024-11-19 09:22:40 +01: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 bitmap: introduce generic optimized bitmap_size() 2024-11-23 23:20:42 +01: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 driver core: Introduce device_find_any_child() helper 2024-12-17 13:24:07 +01: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 dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV 2024-11-18 12:13:23 +01: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 fsnotify: generate FS_RENAME event with rich information 2024-11-19 12:27:49 +01: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 efi: ia64: move IA64-only declarations to new asm/efi.h header 2024-11-19 14:19:45 +01: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 blk: Fix lock inversion between ioc lock and bfqd lock 2024-11-19 17:40:26 +01: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 nfs: don't allow reexport reclaims 2024-11-19 12:27:44 +01: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 ethernet: Add helper for assigning packet type when dest address does not match device address 2024-11-19 11:32:39 +01: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 nfsd: allow reaping files still under writeback 2024-11-19 12:28:32 +01: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 fanotify: introduce FAN_MARK_IGNORE 2024-11-19 12:27:59 +01: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 Revert "file: Rename __close_fd to close_fd and remove the files parameter" 2024-11-19 12:59:13 +01: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 bpf: Mark bpf_spin_{lock,unlock}() helpers with notrace correctly 2024-11-19 08:44:44 +01: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 fs: create kiocb_{start,end}_write() helpers 2024-11-30 02:33:24 +01: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 fsnotify: Do not generate events for O_PATH file descriptors 2024-11-19 14:19:42 +01:00
fsnotify_backend.h Revert "fsnotify: clear PARENT_WATCHED flags lazily" 2024-11-24 00:23:48 +01: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 add alloc_pages_exact alloc_size attributes 2024-11-30 02:16:54 +01: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 HID: fix HID device resource race between HID core and debugging support 2024-11-18 12:10:54 +01: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 mm: add support for verifying page sanitization 2024-11-30 02:17:18 +01: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 Revert "hwspinlock: Introduce hwspin_lock_bust()" 2024-11-24 00:23:48 +01:00
hyperv.h Drivers: hv: vmbus: Calculate ring buffer size for more efficient use of memory 2024-11-19 09:22:38 +01: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 Revert "i2c: Use IS_REACHABLE() for substituting empty ACPI functions" 2024-11-24 00:23:46 +01: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 net: vlan: introduce skb_vlan_eth_hdr() 2024-11-18 12:11:48 +01:00
igmp.h bpf: net: Change do_ip_getsockopt() to take the sockptr_t argument 2024-11-19 08:44:49 +01: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 Revert "io_uring/unix: drop usage of io_uring socket" 2024-11-19 09:11:51 +01: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 iommu: Return right value in iommu_sva_bind_device() 2024-11-19 14:19:03 +01: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 genirq: Allow irq_chip registration functions to take a const irq_chip 2024-11-23 23:20:21 +01: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 genirq: Allow the PM device to originate from irq domain 2024-11-23 23:20:19 +01:00
irqflags.h irqflags: Explicitly ignore lockdep_hrtimer_exit() argument 2024-11-19 11:32:20 +01: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 nfsd: minor nfsd4_change_attribute cleanup 2024-11-19 12:27:26 +01:00
jbd2.h jbd2: make jbd2_journal_get_max_txn_bufs() internal 2024-11-23 23:20:13 +01:00
jhash.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
jiffies.h time: Fix references to _msecs_to_jiffies() handling of values 2024-12-17 13:24:00 +01: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 Revert "kallsyms: Make kallsyms_on_each_symbol generally available" 2024-11-24 00:22:59 +01: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 kcov: don't lose track of remote references during softirqs 2024-11-19 14:19:10 +01: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 keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry 2024-11-18 12:11:59 +01: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 exit: Implement kthread_exit 2024-11-19 12:27:49 +01: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 locking/lockdep: Avoid creating new name string literals in lockdep_set_subclass() 2024-12-17 13:24:18 +01: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 selinux: Remove audit dependency 2024-11-19 17:53:57 +01:00
lsm_hook_defs.h ima: Avoid blocking in RCU read-side critical section 2024-11-19 14:19:42 +01:00
lsm_hooks.h lsm: make security_socket_getpeersec_stream() sockptr_t safe 2024-11-18 23:19:51 +01:00
lz4.h include/linux: lz4: Reduce LZ4 memory usage to 1KB 2024-11-19 17:56:02 +01: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 add kvmalloc alloc_size attribute 2024-11-30 02:17:08 +01:00
mm_inline.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mm_types.h mm/lru: revise the comments of lru_lock 2024-11-19 17:58:24 +01:00
mm_types_task.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mman.h mm: refactor arch_calc_vm_flag_bits() and arm64 MTE handling 2024-12-17 13:23:57 +01: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 mm/lru: revise the comments of lru_lock 2024-11-19 17:58:24 +01:00
mnt_namespace.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mod_devicetable.h x86/cpu: Fix x86_match_cpu() to match just X86_VENDOR_INTEL 2024-11-19 14:19:29 +01:00
module.h Revert "kallsyms: Make module_kallsyms_on_each_symbol generally available" 2024-11-24 00:22:59 +01: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 params: lift param_set_uint_minmax to common code 2024-11-19 12:27:09 +01: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 bpf: net: Change do_ip_getsockopt() to take the sockptr_t argument 2024-11-19 08:44:49 +01: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 net: introduce a netdev feature for UDP GRO forwarding 2024-12-17 13:24:15 +01: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 netpoll: Use rcu_access_pointer() in netpoll_poll_lock 2024-12-17 13:24:07 +01:00
nfs.h NFSD: Deprecate NFS_OFFSET_MAX 2024-11-19 12:27:53 +01:00
nfs3.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs4.h NFSD: add delegation reaper to react to low memory condition 2024-11-19 12:28:29 +01:00
nfs_fs.h nfs: fix UAF in direct writes 2024-11-19 09:22:34 +01:00
nfs_fs_i.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfs_fs_sb.h Revert "NFSv4: Prevent NULL-pointer dereference in nfs42_complete_copies()" 2024-11-24 00:22:57 +01: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 NFSD: enhance inter-server copy cleanup 2024-11-19 12:28:30 +01:00
nfs_xdr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
nfsacl.h NFSD: Add an xdr_stream-based encoder for NFSv2/3 ACLs 2024-11-19 12:27:35 +01: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 nvme: fixup comment for nvme RDMA Provider Type 2024-11-19 14:19:32 +01: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 mlxsw: spectrum_acl_erp: Fix object nesting warning 2024-11-23 23:20:07 +01:00
objtool.h objtool: Add asm version of STACK_FRAME_NON_STANDARD 2024-11-19 09:23:11 +01: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 PCI: Add PCI_ERROR_RESPONSE and related definitions 2024-11-19 14:19:30 +01:00
pci_hotplug.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pci_ids.h Revert "PCI: Add function 0 DMA alias quirk for Glenfly Arise chip" 2024-11-24 00:22:58 +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 add percpu alloc_size attributes 2024-11-30 02:17:02 +01:00
percpu_counter.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
perf_event.h perf/core: Add a new read format to get a number of lost samples 2024-11-18 12:11:45 +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 net: phy: export phy_error and phy_trigger_machine 2024-11-30 02:33:22 +01: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 kernel/pid.c: remove static qualifier from pidfd_create() 2024-11-19 12:27:43 +01: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 fs/pipe: move check to pipe_has_watch_queue() 2024-11-18 12:13:04 +01: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 PM: runtime: Have devm_pm_runtime_enable() handle pm_runtime_dont_use_autosuspend() 2024-11-18 12:13:40 +01: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 fs/select: rework stack allocation hack for clang 2024-11-19 08:44:37 +01: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 Revert "device property: Add const qualifier to device_get_match_data() parameter" 2024-11-24 00:23:27 +01: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 rcu: add a helper to report consolidated flavor QS 2024-11-19 08:45:00 +01: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 regmap: Add bulk read/write callbacks into regmap_config 2024-11-18 23:19:53 +01: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 remoteproc: Add new get_loaded_rsc_table() to rproc_ops 2024-11-19 08:44:58 +01: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 locking/rwlocks: Add contention detection for rwlocks 2024-11-19 17:44:08 +01:00
rwlock_api_smp.h locking/rwlocks: introduce write_lock_nested 2024-11-19 17:44:05 +01: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 kcov: Remove kcov include from sched.h and move it to its users. 2024-11-19 11:32:46 +01: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 ima: Avoid blocking in RCU read-side critical section 2024-11-19 14:19:42 +01: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 kcsan, seqlock: Fix incorrect assumption in read_seqbegin() 2024-12-17 13:24:00 +01: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 serial: core: fix kernel-doc for uart_port_unlock_irqrestore() 2024-11-19 11:32:40 +01: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 Revert "inet: inet_defrag: prevent sk release while still in use" 2024-11-24 00:23:32 +01:00
skmsg.h bpf, skmsg: Fix NULL pointer dereference in sk_psock_skb_ingress_enqueue 2024-11-19 14:19:51 +01:00
slab.h add kmalloc/krealloc alloc_size attributes 2024-11-30 02:17:15 +01: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 net: dev: Convert sa_data to flexible array in struct sockaddr 2024-11-18 22:25:41 +01:00
sockptr.h bpf: net: Change sk_getsockopt() to take the sockptr_t argument 2024-11-18 23:19:51 +01: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 locking/rwlocks: introduce write_lock_nested 2024-11-19 17:44:05 +01: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 stddef: Introduce DECLARE_FLEX_ARRAY() helper 2024-11-18 12:12:59 +01: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 dma-buf/sync_file: Speed up ioctl by omitting debug names 2024-11-19 17:53:23 +01: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 ftruncate: pass a signed offset 2024-11-19 14:19:34 +01:00
syscore_ops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sysctl.h sysctl: introduce new proc handler proc_dobool 2024-11-19 12:27:44 +01: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 task_work: Introduce task_work_cancel() again 2024-11-23 23:20:13 +01: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 timers: Rename del_timer_sync() to timer_delete_sync() 2024-11-19 09:22:14 +01: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 bpf: kprobe: remove unused declaring of bpf_kprobe_override 2024-11-23 23:20:26 +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 u64_stats: fix u64_stats_init() for lockdep when used repeatedly in one file 2024-11-19 11:32:19 +01: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 udp: do not accept non-tunnel GSO skbs landing in a tunnel 2024-11-19 09:22:49 +01: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 units: add the HZ macros 2024-11-18 12:12:54 +01:00
uprobes.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
usb.h driver core: Move the "removable" attribute from USB to core 2024-11-18 12:11:13 +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 fanotify: configurable limits via sysfs 2024-11-19 12:27:37 +01: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 util_macros.h: fix/rework find_closest() macros 2024-12-17 13:24:23 +01: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 Revert "vdpa: Add eventfd for the vdpa callback" 2024-11-24 00:23:19 +01: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 vfio: Introduce interface to flush virqfd inject workqueue 2024-11-19 09:22:45 +01: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 add vmalloc alloc_size attributes 2024-11-30 02:17:12 +01: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 Revert "workqueue: remove unused cancel_work()" 2024-11-18 12:11:11 +01: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 zsmalloc: backport from 5994eabf3bbb 2024-11-19 17:44:14 +01: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