linux_dsm_epyc7002/include/linux
Andrey Konovalov eec028c938 kcov: remote coverage support
Patch series " kcov: collect coverage from usb and vhost", v3.

This patchset extends kcov to allow collecting coverage from backgound
kernel threads.  This extension requires custom annotations for each of
the places where coverage collection is desired.  This patchset
implements this for hub events in the USB subsystem and for vhost
workers.  See the first patch description for details about the kcov
extension.  The other two patches apply this kcov extension to USB and
vhost.

Examples of other subsystems that might potentially benefit from this
when custom annotations are added (the list is based on
process_one_work() callers for bugs recently reported by syzbot):

1. fs: writeback wb_workfn() worker,
2. net: addrconf_dad_work()/addrconf_verify_work() workers,
3. net: neigh_periodic_work() worker,
4. net/p9: p9_write_work()/p9_read_work() workers,
5. block: blk_mq_run_work_fn() worker.

These patches have been used to enable coverage-guided USB fuzzing with
syzkaller for the last few years, see the details here:

  https://github.com/google/syzkaller/blob/master/docs/linux/external_fuzzing_usb.md

This patchset has been pushed to the public Linux kernel Gerrit
instance:

  https://linux-review.googlesource.com/c/linux/kernel/git/torvalds/linux/+/1524

This patch (of 3):

Add background thread coverage collection ability to kcov.

With KCOV_ENABLE coverage is collected only for syscalls that are issued
from the current process.  With KCOV_REMOTE_ENABLE it's possible to
collect coverage for arbitrary parts of the kernel code, provided that
those parts are annotated with kcov_remote_start()/kcov_remote_stop().

This allows to collect coverage from two types of kernel background
threads: the global ones, that are spawned during kernel boot in a
limited number of instances (e.g.  one USB hub_event() worker thread is
spawned per USB HCD); and the local ones, that are spawned when a user
interacts with some kernel interface (e.g.  vhost workers).

To enable collecting coverage from a global background thread, a unique
global handle must be assigned and passed to the corresponding
kcov_remote_start() call.  Then a userspace process can pass a list of
such handles to the KCOV_REMOTE_ENABLE ioctl in the handles array field
of the kcov_remote_arg struct.  This will attach the used kcov device to
the code sections, that are referenced by those handles.

Since there might be many local background threads spawned from
different userspace processes, we can't use a single global handle per
annotation.  Instead, the userspace process passes a non-zero handle
through the common_handle field of the kcov_remote_arg struct.  This
common handle gets saved to the kcov_handle field in the current
task_struct and needs to be passed to the newly spawned threads via
custom annotations.  Those threads should in turn be annotated with
kcov_remote_start()/kcov_remote_stop().

Internally kcov stores handles as u64 integers.  The top byte of a
handle is used to denote the id of a subsystem that this handle belongs
to, and the lower 4 bytes are used to denote the id of a thread instance
within that subsystem.  A reserved value 0 is used as a subsystem id for
common handles as they don't belong to a particular subsystem.  The
bytes 4-7 are currently reserved and must be zero.  In the future the
number of bytes used for the subsystem or handle ids might be increased.

When a particular userspace process collects coverage by via a common
handle, kcov will collect coverage for each code section that is
annotated to use the common handle obtained as kcov_handle from the
current task_struct.  However non common handles allow to collect
coverage selectively from different subsystems.

Link: http://lkml.kernel.org/r/e90e315426a384207edbec1d6aa89e43008e4caf.1572366574.git.andreyknvl@google.com
Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: David Windsor <dwindsor@gmail.com>
Cc: Elena Reshetova <elena.reshetova@intel.com>
Cc: Anders Roxell <anders.roxell@linaro.org>
Cc: Alexander Potapenko <glider@google.com>
Cc: Marco Elver <elver@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-12-04 19:44:14 -08:00
..
amba drm/pl111: Support grayscale 2019-08-09 09:15:05 +02:00
avf
bcma
byteorder
can Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net 2019-11-16 21:51:42 -08:00
ceph libceph: add function that clears osd client's abort_err 2019-09-16 12:06:23 +02:00
clk Merge branches 'clk-gpio-flags', 'clk-tegra', 'clk-rockchip', 'clk-sprd' and 'clk-pxa' into clk-next 2019-11-27 08:15:00 -08:00
crush
decompress
dma dmaengine: sprd: Add wrap address support for link-list mode 2019-11-14 16:03:35 +05:30
dsa net: dsa: sja1105: Fix sleeping while atomic in .port_hwtstamp_set 2019-10-02 12:19:53 -04:00
extcon
firmware Char/Misc driver patches for 5.5-rc1 2019-11-27 10:53:50 -08:00
fpga fpga: altera-pr-ip: Make alt_pr_unregister function void 2019-07-24 14:11:52 -07:00
fsl bus: fsl-mc: add the fsl_mc_get_endpoint function 2019-10-31 14:19:45 -07:00
gpio Merge branch 'regulator-5.5' into regulator-next 2019-11-22 19:56:20 +00:00
greybus staging: greybus: fix more header declarations 2019-08-28 17:24:22 +02:00
hsi
i3c i3c: add addr and lvr to i2c_dev_desc structure 2019-08-11 10:48:28 +02:00
iio iio: imu: adis: assign value only if return code zero in read funcs 2019-11-03 10:47:42 +00:00
input Merge branch 'next' into for-linus 2019-09-16 09:56:27 -07:00
irqchip Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-12-03 09:29:50 -08:00
isdn
lockd
mailbox mailbox: mediatek: cmdq: clear the event in cmdq initial flow 2019-09-17 00:40:05 -05:00
mfd - Core Frameworks 2019-12-01 16:16:31 -08:00
mlx4
mlx5 RDMA subsystem updates for 5.5 2019-11-27 10:17:28 -08:00
mmc mmc: core: Fix size overflow for mmc partitions 2019-11-18 10:05:38 +01:00
mtd mtd: spi-nor: Set default Quad Enable method for ISSI flashes 2019-11-11 20:42:55 +02:00
mux
netfilter netfilter: ipset: move ip_set_get_ip_port() to ip_set_bitmap_port.c. 2019-10-07 23:59:02 +02:00
netfilter_arp netfilter: remove CONFIG_NETFILTER checks from headers. 2019-09-13 12:47:36 +02:00
netfilter_bridge netfilter: remove CONFIG_NETFILTER checks from headers. 2019-09-13 12:47:36 +02:00
netfilter_ipv4 netfilter: remove CONFIG_NETFILTER checks from headers. 2019-09-13 12:47:36 +02:00
netfilter_ipv6 netfilter: remove CONFIG_NETFILTER checks from headers. 2019-09-13 12:47:36 +02:00
perf
phy phy: add PHY_MODE_LVDS 2019-10-31 16:54:00 +05:30
pinctrl pinctrl/gpio: Take MUX usage into account 2019-08-23 11:09:41 +02:00
platform_data chrome platform changes for v5.5 2019-12-03 14:37:12 -08:00
power ARM: OMAP2+: SmartReflex: add omap_sr_pdata definition 2019-11-13 11:33:53 +01:00
qed RDMA subsystem updates for 5.4 2019-09-21 10:26:24 -07:00
raid
regulator regulator: ab8500: Remove SYSCLKREQ from enum ab8505_regulator_id 2019-11-07 13:10:08 +00:00
remoteproc
reset
rpmsg
rtc rtc: ds1685: add indirect access method and remove plat_read/plat_write 2019-10-16 10:39:00 +02:00
sched Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-11-26 16:02:40 -08:00
soc pinctrl/msm: Setup GPIO chip in hierarchy 2019-11-16 10:23:15 +00:00
soundwire soundwire: remove bitfield for unique_id, use u8 2019-11-09 16:46:56 +05:30
spi spi: document CS setup, hold & inactive times in header 2019-10-23 17:48:57 +01:00
ssb
sunrpc SUNRPC: Destroy the back channel when we destroy the host transport 2019-10-30 12:04:35 -04:00
ulpi
unaligned
usb usb: typec: tcpm: Remove tcpc_config configuration mechanism 2019-11-16 14:45:31 +01:00
wimax wimax: no need to check return value of debugfs_create functions 2019-08-10 15:25:47 -07:00
8250_pci.h
a.out.h
acct.h
acpi_dma.h
acpi_iort.h
acpi_pmtmr.h
acpi.h ACPI / utils: Introduce acpi_dev_hid_uid_match() helper 2019-10-15 12:06:23 +02:00
adb.h
adfs_fs.h
adxl.h
aer.h PCI/AER: Save AER Capability for suspend/resume 2019-10-18 17:05:42 -05:00
agp_backend.h
agpgart.h
ahci_platform.h
ahci-remap.h
aio.h
alarmtimer.h alarmtimers: Avoid rtc.h include 2019-08-20 22:09:52 +02:00
alcor_pci.h
altera_jtaguart.h
altera_uart.h
amd-iommu.h iommu/amd: Re-factor guest virtual APIC (de-)activation code 2019-08-09 17:30:40 +02:00
anon_inodes.h
apm_bios.h
apm-emulation.h
apple_bl.h
apple-gmux.h
arch_topology.h cpu-topology: declare parse_acpi_topology in <linux/arch_topology.h> 2019-11-14 12:31:00 +08:00
arm_sdei.h firmware: arm_sdei: use common SMCCC_CONDUIT_* 2019-10-14 10:55:14 +01:00
arm-cci.h
arm-smccc.h arm/arm64: Provide a wrapper for SMCCC 1.1 calls 2019-10-21 19:20:30 +01:00
armada-37xx-rwtm-mailbox.h
ascii85.h
asn1_ber_bytecode.h
asn1_decoder.h
asn1.h
assoc_array_priv.h
assoc_array.h
async_tx.h
async.h
ata_platform.h
ata.h
atalk.h
ath9k_platform.h
atm_suni.h
atm_tcp.h
atm.h
atmdev.h
atmel_pdc.h
atmel-mci.h
atmel-ssc.h
atomic-fallback.h
atomic.h
attribute_container.h
audit.h Revert "bpf: Emit audit messages upon successful prog load and unload" 2019-11-23 09:56:02 -08:00
auto_dev-ioctl.h
auto_fs.h
auxvec.h
average.h
b1pcmcia.h
backing-dev-defs.h writeback, memcg: Implement foreign dirty flushing 2019-08-27 09:22:38 -06:00
backing-dev.h writeback: Separate out wb_get_lookup() from wb_get_create() 2019-08-27 09:22:38 -06:00
backlight.h backlight: Expose brightness curve type through sysfs 2019-09-02 15:55:03 +01:00
badblocks.h
balloon_compaction.h
bcd.h
bch.h
bcm47xx_nvram.h
bcm47xx_sprom.h
bcm47xx_wdt.h
bcm963xx_nvram.h
bcm963xx_tag.h
binfmts.h
bio.h
bit_spinlock.h
bitfield.h
bitmap.h bitops: introduce the for_each_set_clump8 macro 2019-12-04 19:44:12 -08:00
bitops.h bitops: introduce the for_each_set_clump8 macro 2019-12-04 19:44:12 -08:00
bitrev.h
bits.h linux/bits.h: make BIT(), GENMASK(), and friends available in assembly 2019-07-16 19:23:22 -07:00
blk_types.h block: add iostat counters for flush requests 2019-11-21 09:06:47 -07:00
blk-cgroup.h blk-cgroup: cgroup_rstat_updated() shouldn't be called on cgroup1 2019-11-18 08:40:41 -07:00
blk-mq-pci.h
blk-mq-rdma.h
blk-mq-virtio.h
blk-mq.h blk-mq: Delete blk_mq_has_free_tags() and blk_mq_can_queue() 2019-11-13 12:50:38 -07:00
blk-pm.h
blkdev.h compat_ioctl: remove most of fs/compat_ioctl.c 2019-12-01 13:46:15 -08:00
blkpg.h
blktrace_api.h
blockgroup_lock.h
bma150.h
bottom_half.h
bpf_lirc.h
bpf_trace.h
bpf_types.h bpf: Annotate context types 2019-11-15 23:44:48 +01:00
bpf_verifier.h bpf: Constant map key tracking for prog array pokes 2019-11-24 17:04:11 -08:00
bpf-cgroup.h
bpf.h bpf: Simplify __bpf_arch_text_poke poke type handling 2019-11-24 17:12:11 -08:00
bpfilter.h
brcmphy.h net: phy: broadcom: add 1000Base-X support for BCM54616S 2019-10-23 20:42:52 -07:00
bsearch.h lib/bsearch: Use generic type for comparator function 2019-11-14 13:15:11 -05:00
bsg-lib.h
bsg.h
btf.h bpf: Support attaching tracing BPF program to other BPF programs 2019-11-15 23:45:24 +01:00
btree-128.h
btree-type.h
btree.h
btrfs.h
buffer_head.h
bug.h kprobes: Prohibit probing on BUG() and WARN() address 2019-09-05 10:15:16 +02:00
build_bug.h linux/build_bug.h: change type to int 2019-12-04 19:44:12 -08:00
build-salt.h
bvec.h linux: Remove bvec page_offset, use bv_offset 2019-07-30 14:21:32 -07:00
c2port.h
cache.h
cacheinfo.h
capability.h
cb710.h
cciss_ioctl.h
ccp.h Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 2019-08-09 09:17:05 -07:00
cdev.h
cdrom.h
cfag12864b.h
cgroup_rdma.h
cgroup_subsys.h
cgroup-defs.h cgroup: use cgrp->kn->id as the cgroup ID 2019-11-12 08:18:04 -08:00
cgroup.h cgroup: use cgrp->kn->id as the cgroup ID 2019-11-12 08:18:04 -08:00
circ_buf.h
cleancache.h
clk-provider.h clk: Add API to get index of the clock parent 2019-11-11 13:59:35 +01:00
clk.h We have a small collection of core framework updates this time, mostly around 2019-09-20 15:45:07 -07:00
clkdev.h
clock_cooling.h
clockchips.h
clocksource.h
cm4000_cs.h
cma.h
cmdline-parser.h
cn_proc.h
cnt32_to_63.h
coda.h coda: fix build using bare-metal toolchain 2019-07-16 19:23:23 -07:00
compaction.h mm, compaction: raise compaction priority after it withdrawns 2019-09-24 15:54:10 -07:00
compat.h y2038: syscall implementation cleanups 2019-12-01 14:00:59 -08:00
compiler_attributes.h compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use 2019-10-11 09:26:05 -07:00
compiler_types.h Make use of gcc 9's "asm inline()" (Rasmus Villemoes): 2019-09-21 09:47:19 -07:00
compiler-clang.h
compiler-gcc.h bpf: Disable GCC -fgcse optimization for ___bpf_prog_run() 2019-07-18 21:01:06 +02:00
compiler-intel.h
compiler.h include/linux/compiler.h: fix Oops for Clang-compiled kernels 2019-09-08 14:53:58 +02:00
completion.h
component.h
configfs.h
connector.h connector: remove redundant input callback from cn_dev 2019-07-21 13:31:14 -07:00
console_struct.h
console.h
consolemap.h
const.h
container.h driver-core: add include guard to linux/container.h 2019-09-04 13:38:26 +02:00
context_tracking_state.h context_tracking: Check static key on context_tracking_enabled_*cpu() 2019-10-29 10:01:16 +01:00
context_tracking.h sched/vtime: Rename vtime_accounting_cpu_enabled() to vtime_accounting_enabled_this_cpu() 2019-10-29 10:01:14 +01:00
cordic.h
coredump.h
coresight-pmu.h
coresight-stm.h
coresight.h coresight: etm4x: Save/restore state across CPU low power states 2019-11-04 21:57:51 +01:00
count_zeros.h
counter_enum.h
counter.h counter: Fix typo in action_get description 2019-10-18 19:47:49 +01:00
cper.h
cpu_cooling.h
cpu_pm.h
cpu_rmap.h
cpu.h Merge branch 'pm-cpuidle' 2019-11-26 10:26:26 +01:00
cpufeature.h
cpufreq.h cpufreq: Use per-policy frequency QoS 2019-10-21 02:05:21 +02:00
cpuhotplug.h Merge branch 'x86-hyperv-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-11-26 09:43:34 -08:00
cpuidle_haltpoll.h cpuidle-haltpoll: vcpu hotplug support 2019-09-03 09:36:36 +02:00
cpuidle.h cpuidle: Pass exit latency limit to cpuidle_use_deepest_state() 2019-11-20 11:46:18 +01:00
cpumask.h cpumask: nicer for_each_cpumask_and() signature 2019-09-25 17:51:40 -07:00
cpuset.h sched/core: Prevent race condition between cpuset and __sched_setscheduler() 2019-07-25 15:55:04 +02:00
crash_core.h
crash_dump.h fs/core/vmcore: Move sev_active() reference to x86 arch code 2019-08-09 22:52:10 +10:00
crc4.h
crc7.h
crc8.h
crc16.h
crc32.h
crc32c.h
crc32poly.h
crc64.h
crc-ccitt.h
crc-itu-t.h
crc-t10dif.h
cred.h selinux/stable-5.4 PR 20190917 2019-09-23 11:21:04 -07:00
crypto.h crypto: ablkcipher - remove deprecated and unused ablkcipher support 2019-11-17 09:02:49 +08:00
cryptohash.h
cs5535.h
ctype.h
cuda.h
cyclades.h
davinci_emac.h
dax.h
dca.h
dcache.h docs: fs: convert docs without extension to ReST 2019-07-31 13:31:05 -06:00
dccp.h
dcookies.h
debug_locks.h
debugfs.h debugfs: Fix !DEBUG_FS debugfs_create_automount 2019-11-21 14:28:32 +01:00
debugobjects.h
delay.h
delayacct.h
delayed_call.h
devcoredump.h
devfreq_cooling.h
devfreq-event.h PM / devfreq: events: extend events by type of counted data 2019-08-25 12:44:38 +09:00
devfreq.h
device_cgroup.h device_cgroup: Export devcgroup_check_permission 2019-10-07 15:11:38 -05:00
device-mapper.h - Fix DM core to disallow stacking request-based DM on partitions. 2019-11-25 11:53:26 -08:00
device.h dma-mapping updates for 5.5-rc1 2019-11-28 11:16:43 -08:00
devpts_fs.h
digsig.h
dim.h DIM: fix dim.h kernel-doc and headers 2019-10-09 19:33:43 -07:00
dio.h
dirent.h
dlm_plock.h
dlm.h
dm9000.h
dm-bufio.h
dm-dirty-log.h
dm-io.h
dm-kcopyd.h
dm-region-hash.h
dma-buf.h dma-buf: change DMA-buf locking convention v3 2019-10-24 09:18:09 +02:00
dma-contiguous.h dma-direct: fix zone selection after an unaddressable CMA allocation 2019-08-21 07:14:10 +09:00
dma-debug.h
dma-direct.h dma-mapping: treat dev->bus_dma_mask as a DMA limit 2019-11-21 18:14:35 +01:00
dma-direction.h
dma-fence-array.h
dma-fence-chain.h
dma-fence.h dma-fence: Store the timestamp in the same union as the cb_list 2019-08-17 18:46:33 +01:00
dma-iommu.h
dma-mapping.h dma-mapping updates for 5.5-rc1 2019-11-28 11:16:43 -08:00
dma-noncoherent.h dma-mapping: drop the dev argument to arch_sync_dma_for_* 2019-11-20 20:31:38 +01:00
dma-resv.h dma-buf: Restore seqlock around dma_resv updates 2019-08-16 12:40:58 +01:00
dmaengine.h dmaengine updates for v5.3-rc1 2019-07-17 09:55:43 -07:00
dmapool.h
dmar.h iommu/vt-d: Turn off translations at shutdown 2019-11-11 16:07:13 +01:00
dmi.h firmware: dmi: Add dmi_memdev_handle 2019-12-03 11:20:37 +01:00
dnotify.h
dns_resolver.h
dqblk_qtree.h
dqblk_v1.h
dqblk_v2.h
drbd_genl_api.h
drbd_genl.h
drbd_limits.h
drbd.h
ds2782_battery.h
dtlk.h
dw_apb_timer.h
dynamic_debug.h dynamic_debug: provide dynamic_hex_dump stub 2019-10-22 12:54:44 -07:00
dynamic_queue_limits.h
earlycpio.h
ecryptfs.h
edac.h EDAC: Remove misleading comment in struct edac_raw_error_desc 2019-11-10 12:40:14 +01:00
edd.h
eeprom_93cx6.h
eeprom_93xx46.h
efi-bgrt.h
efi.h ACPI updates for 5.5-rc1 2019-11-26 19:25:25 -08:00
efs_vh.h
eisa.h
elevator.h block: Introduce elevator features 2019-09-05 19:52:33 -06:00
elf-fdpic.h
elf-randomize.h
elf.h
elfcore-compat.h
elfcore.h
elfnote.h
enclosure.h
energy_model.h
err.h
errname.h printf: add support for printing symbolic error names 2019-10-17 16:23:25 +02:00
errno.h
error-injection.h error-injection: Consolidate override function definition 2019-08-07 13:52:43 +01:00
errqueue.h
errseq.h
etherdevice.h
ethtool.h
eventfd.h
eventpoll.h
evm.h
export.h export,module: add SPDX GPL-2.0 license identifier to headers with no license 2019-11-14 11:36:53 +08:00
exportfs.h kernfs: implement custom exportfs ops and fid type 2019-11-12 08:18:04 -08:00
ext2_fs.h
extable.h bpf: Add support for BTF pointers to x86 JIT 2019-10-17 16:44:36 +02:00
extcon-provider.h
extcon.h
f2fs_fs.h f2fs: include charset encoding information in the superblock 2019-08-23 07:57:13 -07:00
f75375s.h
falloc.h New code for 5.5: 2019-12-02 14:46:22 -08:00
fanotify.h
fault-inject.h
fb.h fbdev: drop res_id parameter from remove_conflicting_pci_framebuffers 2019-08-23 10:48:31 +02:00
fbcon.h
fcdevice.h
fcntl.h
fd.h
fddidevice.h
fdtable.h
fec.h
file.h
filter.h bpf: Add bpf_jit_blinding_enabled for !CONFIG_BPF_JIT 2019-11-24 17:11:28 -08:00
fips.h crypto: fips - add FIPS test failure notification chain 2019-07-26 14:51:57 +10:00
firewire.h
firmware-map.h
firmware.h
fixp-arith.h
flat.h
flex_proportions.h
font.h
frame.h
freezer.h
frontswap.h
fs_context.h fuse update for 5.4 2019-09-25 09:55:59 -07:00
fs_enet_pd.h
fs_parser.h
fs_pin.h switch the remnants of releasing the mountpoint away from fs_pin 2019-07-16 22:52:37 -04:00
fs_stack.h
fs_struct.h
fs_types.h
fs_uart_pd.h
fs.h New code for 5.5: 2019-12-02 14:46:22 -08:00
fscache-cache.h
fscache.h
fscrypt.h fscrypt: add support for IV_INO_LBLK_64 policies 2019-11-06 12:34:36 -08:00
fsi-occ.h
fsi-sbefifo.h
fsi.h
fsl_devices.h
fsl_hypervisor.h
fsl_ifc.h
fsl-diu-fb.h
fsldma.h
fsnotify_backend.h notify: export symbols for use by the knfsd file cache 2019-08-19 11:00:39 -04:00
fsnotify.h
fsverity.h fs-verity: implement FS_IOC_MEASURE_VERITY ioctl 2019-08-12 19:33:50 -07:00
ftrace_irq.h
ftrace.h New tracing features: 2019-11-27 11:42:01 -08:00
futex.h futex: Add mutex around futex exit 2019-11-20 09:40:10 +01:00
fwnode.h Driver core patches for 5.5-rc1 2019-11-27 11:06:20 -08:00
gameport.h
gcd.h
genalloc.h lib/genalloc.c: rename addr_in_gen_pool to gen_pool_has_addr 2019-12-04 19:44:13 -08:00
generic-radix-tree.h
genetlink.h
genhd.h block: fix bdev_disk_changed for non-partitioned devices 2019-11-14 07:43:53 -07:00
genl_magic_func.h
genl_magic_struct.h
getcpu.h
gfp.h mm/page_alloc: add alloc_contig_pages() 2019-12-01 12:59:06 -08:00
glob.h
gnss.h
goldfish.h
gpio_keys.h
gpio-pxa.h
gpio.h Linux 5.3-rc7 2019-09-05 11:40:54 +02:00
greybus.h staging: greybus: move core include files to include/linux/greybus/ 2019-08-27 19:02:59 +02:00
hardirq.h
hash.h
hashtable.h
hdlc.h
hdlcdrv.h
hdmi.h
hid-debug.h
hid-roccat.h
hid-sensor-hub.h
hid-sensor-ids.h
hid.h HID: core: Add printk_once variants to hid_warn() etc 2019-09-18 15:58:13 +02:00
hiddev.h
hidraw.h
highmem.h
highuid.h
hil_mlc.h
hil.h
hippidevice.h
hmm.h mm/hmm: remove hmm_range_dma_map and hmm_range_dma_unmap 2019-11-23 19:56:45 -04:00
host1x.h gpu: host1x: Add direction flags to relocations 2019-10-29 15:04:34 +01:00
hp_sdc.h
hpet.h
hrtimer_defs.h
hrtimer.h hrtimer: Annotate lockless access to timer->state 2019-11-06 23:18:31 +01:00
htcpld.h
huge_mm.h mm: Remove BUG_ON mmap_sem not held from xxx_trans_huge_lock() 2019-11-06 13:02:17 +01:00
hugetlb_cgroup.h
hugetlb_inline.h
hugetlb.h hugetlb: remove unused hstate in hugetlb_fault_mutex_hash() 2019-12-01 12:59:08 -08:00
hw_breakpoint.h
hw_random.h docs: admin-guide: add a series of orphaned documents 2019-07-15 11:03:02 -03:00
hwmon-sysfs.h
hwmon-vid.h
hwmon.h hwmon: Fix HWMON_P_MIN_ALARM mask 2019-10-02 06:36:50 -07:00
hwspinlock.h
hyperv.h drivers: hv: vmbus: Introduce latency testing 2019-11-21 20:10:44 -05:00
hypervisor.h
i2c-algo-bit.h
i2c-algo-pca.h
i2c-algo-pcf.h
i2c-dev.h
i2c-mux.h
i2c-smbus.h
i2c.h i2c: replace i2c_new_probed_device with an ERR_PTR variant 2019-11-28 17:15:21 +01:00
i8042.h
i8253.h
icmp.h icmp: add helpers to recognize ICMP error packets 2019-11-05 14:03:11 -08:00
icmpv6.h icmp: add helpers to recognize ICMP error packets 2019-11-05 14:03:11 -08:00
ide.h
idle_inject.h powercap: idle_inject: Use higher resolution for idle injection 2019-09-03 11:33:29 +02:00
idr.h XArray updates for 5.4 2019-11-08 08:46:49 -08:00
ieee80211.h mac80211: add support for the ADDBA extension element 2019-07-29 16:40:22 +02:00
ieee802154.h
if_arp.h
if_bridge.h
if_eql.h
if_ether.h
if_fddi.h
if_frad.h
if_link.h
if_ltalk.h
if_macvlan.h net: remove unnecessary variables and callback 2019-10-24 14:53:49 -07:00
if_phonet.h
if_pppol2tp.h
if_pppox.h compat_ioctl: pppoe: fix PPPOEIOCSFWD handling 2019-07-30 14:42:13 -07:00
if_rmnet.h net: qualcomm: rmnet: Fix incorrect UL checksum offload logic 2019-07-26 14:20:06 -07:00
if_tap.h
if_team.h team: fix nested locking lockdep warning 2019-10-24 14:53:48 -07:00
if_tun.h
if_tunnel.h
if_vlan.h net: remove unnecessary variables and callback 2019-10-24 14:53:49 -07:00
igmp.h
ihex.h
ima.h powerpc/ima: Add support to initialize ima policy rules 2019-11-12 12:25:49 +11:00
imx-media.h
in6.h
in.h
indirect_call_wrapper.h
inet_diag.h
inet.h
inetdevice.h
init_ohci1394_dma.h
init_task.h posix-cpu-timers: Create a container struct 2019-08-28 11:50:33 +02:00
init.h
initrd.h
inotify.h
input-polldev.h
input.h Input: add input_get_poll_interval() 2019-10-04 12:31:46 -07:00
integrity.h
intel_rapl.h
intel_th.h intel_th: msu: Introduce buffer interface 2019-07-25 13:03:18 +02:00
intel-iommu.h iommu/vt-d: Fix QI_DEV_IOTLB_PFSID and QI_DEV_EIOTLB_PFSID macros 2019-11-11 16:10:54 +01:00
intel-ish-client-if.h
intel-pti.h
intel-svm.h
interconnect-provider.h interconnect: Add pre_aggregate() callback 2019-08-13 23:02:48 +03:00
interconnect.h interconnect: Add support for path tags 2019-08-13 23:02:44 +03:00
interrupt.h Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-12-03 12:20:25 -08:00
interval_tree_generic.h augmented rbtree: add new RB_DECLARE_CALLBACKS_MAX macro 2019-09-25 17:51:39 -07:00
interval_tree.h
io-64-nonatomic-hi-lo.h
io-64-nonatomic-lo-hi.h
io-mapping.h
io-pgtable.h iommu/io-pgtable-arm: Rationalise MAIR handling 2019-11-04 19:59:30 +00:00
io.h lib: devres: add a helper function for ioremap_uc 2019-11-11 08:40:18 +00:00
ioasid.h iommu/ioasid: Add custom allocators 2019-10-15 13:34:25 +02:00
ioc3.h
iocontext.h
iomap.h iomap: use a srcmap for a read-modify-write I/O 2019-10-21 08:51:59 -07:00
iommu-helper.h
iommu.h Merge branches 'iommu/fixes', 'arm/qcom', 'arm/renesas', 'arm/rockchip', 'arm/mediatek', 'arm/tegra', 'arm/smmu', 'x86/amd', 'x86/vt-d', 'virtio' and 'core' into next 2019-11-12 17:11:25 +01:00
iopoll.h
ioport.h x86/efi: EFI soft reservation to E820 enumeration 2019-11-07 15:44:14 +01:00
ioprio.h
iova.h iommu/iova: Fix compilation error with !CONFIG_IOMMU_IOVA 2019-07-23 09:51:00 +02:00
ip.h
ipack.h
ipc_namespace.h
ipc.h
ipmi_smi.h ipmi: Don't allow device module unload when in use 2019-10-22 14:42:34 -05:00
ipmi-fru.h
ipmi.h
ipv6_route.h
ipv6.h
irq_cpustat.h
irq_poll.h
irq_sim.h
irq_work.h irq_work: Convert flags to atomic_t 2019-11-11 09:02:56 +01:00
irq.h genirq: Introduce irq_chip_get/set_parent_state calls 2019-11-16 10:20:02 +00:00
irqbypass.h
irqchip.h
irqdesc.h
irqdomain.h irqdomain: Add bus token DOMAIN_BUS_WAKEUP 2019-11-16 10:18:52 +00:00
irqflags.h
irqhandler.h
irqnr.h
irqreturn.h
isa.h
isapnp.h
iscsi_boot_sysfs.h
iscsi_ibft.h
isicom.h
iversion.h
jbd2.h This merge window saw the the following new featuers added to ext4: 2019-11-30 10:53:02 -08:00
jhash.h
jiffies.h
journal-head.h jbd2: Make state lock a spinlock 2019-10-21 09:16:46 -04:00
joystick.h
jump_label_ratelimit.h
jump_label.h
jz4740-adc.h
jz4780-nemc.h
kallsyms.h
kasan-checks.h
kasan.h kasan: support backing vmalloc space with real shadow memory 2019-12-01 12:59:05 -08:00
kbd_diacr.h
kbd_kern.h
kbuild.h
kconfig.h
kcore.h
kcov.h kcov: remote coverage support 2019-12-04 19:44:14 -08:00
kd.h
kdb.h
kdebug.h
kdev_t.h
kern_levels.h
kernel_stat.h sched/vtime: Bring up complete kcpustat accessor 2019-11-21 07:33:24 +01:00
kernel-page-flags.h
kernel.h kernel.h: update comment about simple_strto<foo>() functions 2019-12-04 19:44:12 -08:00
kernelcapi.h
kernfs.h kernfs: use 64bit inos if ino_t is 64bit 2019-11-12 08:18:04 -08:00
kexec.h Merge branch 'next-lockdown' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security 2019-09-28 08:14:15 -07:00
key-type.h
key.h afs: Provide an RCU-capable key lookup 2019-09-02 11:43:54 +01:00
keyboard.h
keyctl.h
kfifo.h
kgdb.h kgdb: don't use a notifier to enter kgdb at panic; call directly 2019-09-25 17:51:40 -07:00
khugepaged.h khugepaged: enable collapse pmd for pte-mapped THP 2019-09-24 15:54:11 -07:00
klist.h
kmemleak.h
kmod.h
kmsg_dump.h
kobj_map.h
kobject_ns.h
kobject.h
kprobes.h mm, kprobes: generalize and rename notify_page_fault() as kprobe_page_fault() 2019-07-16 19:23:22 -07:00
kref.h
ks0108.h
ks8842.h
ks8851_mll.h
ksm.h
kthread.h
ktime.h
kvm_host.h Merge branch 'kvm-tsx-ctrl' into HEAD 2019-11-21 12:03:40 +01:00
kvm_irqfd.h
kvm_para.h
kvm_types.h KVM: arm64: Support stolen time reporting via shared structure 2019-10-21 19:20:28 +01:00
l2tp.h
lantiq.h
lapb.h
latencytop.h
lcd.h backlight: drop EARLY_EVENT_BLANK support 2019-08-05 21:52:53 +02:00
lcm.h
led-class-flash.h leds: flash: Add devm_* functions to the flash class 2019-11-03 17:38:36 +01:00
led-lm3530.h
leds_pwm.h
leds-bd2802.h
leds-lp3944.h
leds-lp3952.h
leds-pca9532.h
leds-regulator.h
leds-tca6507.h
leds-ti-lmu-common.h
leds.h leds: core: Fix leds.h structure documentation 2019-11-03 17:38:55 +01:00
libata.h ata: make qc_prep return ata_completion_errors 2019-11-01 08:50:51 -06:00
libfdt_env.h libfdt: define INT32_MAX and UINT32_MAX in libfdt_env.h 2019-11-26 13:35:25 -07:00
libfdt.h
libgcc.h
libnvdimm.h libnvdimm: Move nvdimm_bus_attribute_group to device_type 2019-11-19 09:52:12 -08:00
libps2.h
license.h export,module: add SPDX GPL-2.0 license identifier to headers with no license 2019-11-14 11:36:53 +08:00
lightnvm.h lightnvm: move metadata mapping to lower level driver 2019-08-06 08:20:10 -06:00
limits.h
linkage.h x86/asm: Replace WEAK uses by SYM_INNER_LABEL_ALIGN 2019-10-18 12:13:35 +02:00
linkmode.h net: phylink: use more linkmode_* 2019-10-15 20:40:06 -07:00
linux_logo.h
lis3lv02d.h
list_bl.h
list_lru.h
list_nulls.h
list_sort.h
list.h
livepatch.h livepatch: Allow to distinguish different version of system state changes 2019-11-01 13:08:19 +01:00
llc.h
llist.h
lockdep.h locking/lockdep: Remove unused @nested argument from lock_release() 2019-10-09 12:46:10 +02:00
lockref.h
log2.h
logic_pio.h lib: logic_pio: Add logic_pio_unregister_range() 2019-08-13 14:54:24 +08:00
lp.h
lru_cache.h
lsm_audit.h
lsm_hooks.h perf_event: Add support for LSM and SELinux checks 2019-10-17 21:31:55 +02:00
lz4.h include/linux/lz4.h: fix spelling and copy-paste errors in documentation 2019-07-16 19:23:24 -07:00
lzo.h
mailbox_client.h
mailbox_controller.h
maple.h
marvell_phy.h
math64.h
max17040_battery.h
mbcache.h
mbus.h
mc6821.h
mc146818rtc.h
mcb.h
mdev.h
mdio-bitbang.h
mdio-gpio.h
mdio-mux.h
mdio.h include: mdio: Add driver data helpers 2019-09-05 12:32:05 +02:00
mei_cl_bus.h
mem_encrypt.h fs/core/vmcore: Move sev_active() reference to x86 arch code 2019-08-09 22:52:10 +10:00
memblock.h mm: support memblock alloc on the exact node for sparse_buffer_init() 2019-12-01 12:59:08 -08:00
memcontrol.h mm: vmscan: detect file thrashing at the reclaim root 2019-12-01 12:59:07 -08:00
memfd.h
memory_hotplug.h mm/memory_hotplug.c: remove __online_page_set_limits() 2019-12-01 12:59:10 -08:00
memory.h mm/memory_hotplug: fix try_offline_node() 2019-11-15 18:34:00 -08:00
mempolicy.h Revert "Revert "mm, thp: restore node-local hugepage allocations"" 2019-09-28 14:05:38 -07:00
mempool.h
memregion.h device-dax: Add a driver for "hmem" devices 2019-11-07 15:45:00 +01:00
memremap.h libnvdimm fixes v5.4-rc1 2019-09-29 10:33:41 -07:00
memstick.h
mic_bus.h
micrel_phy.h net: phy: micrel: Update KSZ87xx PHY name 2019-10-17 16:31:52 -07:00
microchipphy.h
migrate_mode.h
migrate.h mm: remove the unused MIGRATE_PFN_DEVICE flag 2019-08-20 09:35:03 -03:00
mii.h net: phy: fix write to mii-ctrl1000 register 2019-10-04 18:11:08 -07:00
miscdevice.h rfkill: allocate static minor 2019-11-05 18:25:54 +01:00
mISDNdsp.h
mISDNhw.h
mISDNif.h
mm_inline.h
mm_types_task.h fork: improve error message for corrupted page tables 2019-09-25 17:51:40 -07:00
mm_types.h mm: thp: handle page cache THP correctly in PageTransCompoundMap 2019-11-06 08:28:58 -08:00
mm-arch-hooks.h
mm.h mm, pcpu: make zone pcp updates and reset internal to the mm 2019-12-01 12:59:06 -08:00
mman.h
mmdebug.h
mmiotrace.h
mmu_context.h
mmu_notifier.h mm/mmu_notifier: add an interval tree notifier 2019-11-23 19:56:44 -04:00
mmzone.h mm: fix struct member name in function comments 2019-12-01 12:59:10 -08:00
mnt_namespace.h
mod_devicetable.h platform/x86: wmi: add missing struct parameter description 2019-07-25 20:12:38 +03:00
module_signature.h MODSIGN: make new include file self contained 2019-08-06 13:41:04 -04:00
module.h export,module: add SPDX GPL-2.0 license identifier to headers with no license 2019-11-14 11:36:53 +08:00
moduleloader.h kasan: support backing vmalloc space with real shadow memory 2019-12-01 12:59:05 -08:00
moduleparam.h
mount.h
moxtet.h bus: Add support for Moxtet bus 2019-08-14 15:30:35 +02:00
mpage.h
mpi.h
mpls_iptunnel.h
mpls.h
mroute6.h
mroute_base.h net: fib_notifier: propagate extack down to the notifier block callback 2019-10-04 11:10:56 -07:00
mroute.h
msdos_fs.h
msg.h
msi.h
mtio.h compat_ioctl: move tape handling into drivers 2019-10-23 17:23:44 +02:00
mutex.h mutex: Fix up mutex_waiter usage 2019-08-08 09:09:25 +02:00
mv643xx_eth.h
mv643xx_i2c.h
mv643xx.h
mvebu-pmsu.h
mxm-wmi.h
n_r3964.h
namei.h fs/namei.c: keep track of nd->root refcount status 2019-09-03 09:30:45 -04:00
nd.h libnvdimm: Trivial comment fix 2019-11-14 19:06:47 -08:00
ndctl.h
net.h
netdev_features.h
netdevice.h RDMA subsystem updates for 5.5 2019-11-27 10:17:28 -08:00
netfilter_bridge.h netfilter: move nf_bridge_frag_data struct definition to a more appropriate header. 2019-09-13 12:35:33 +02:00
netfilter_defs.h
netfilter_ingress.h
netfilter_ipv4.h
netfilter_ipv6.h netfilter: move nf_bridge_frag_data struct definition to a more appropriate header. 2019-09-13 12:35:33 +02:00
netfilter.h netfilter: add and use nf_hook_slow_list() 2019-10-17 12:20:48 +02:00
netlink.h
netpoll.h
nfs3.h
nfs4.h pnfs/flexfiles: Add tracepoints for detecting pnfs fallback to MDS 2019-07-18 15:50:28 -04:00
nfs_fs_i.h
nfs_fs_sb.h
nfs_fs.h NFS: Refactor nfs_instantiate() for dentry referencing callers 2019-09-20 15:15:24 -04:00
nfs_iostat.h
nfs_page.h
nfs_xdr.h
nfs.h
nfsacl.h
nl802154.h
nls.h
nmi.h
node.h mm: make register_mem_sect_under_node() static 2019-07-18 17:08:06 -07:00
nodemask.h
nospec.h
notifier.h kernel/notifier.c: remove blocking_notifier_chain_cond_register() 2019-12-04 19:44:12 -08:00
ns_common.h
nsc_gpio.h
nsproxy.h
ntb_transport.h
ntb.h
nubus.h
numa.h
nvme-fc-driver.h scsi: qla2xxx: Modify NVMe include directives 2019-08-12 21:34:08 -04:00
nvme-fc.h nvme-fc: Sync nvme-fc header to FC-NVME-2 2019-11-04 10:56:40 -07:00
nvme-rdma.h
nvme-tcp.h
nvme.h nvme: hwmon: provide temperature min and max values for each sensor 2019-11-22 02:21:08 +09:00
nvmem-consumer.h Char/Misc driver patches for 5.5-rc1 2019-11-27 10:53:50 -08:00
nvmem-provider.h
nvram.h
objagg.h
of_address.h of/address: Fix of_pci_range_parser_one translation of DMA addresses 2019-10-08 13:55:26 -05:00
of_clk.h
of_device.h
of_dma.h
of_fdt.h
of_gpio.h gpio: of: Make of_gpio_simple_xlate() private 2019-09-11 14:46:02 +01:00
of_graph.h
of_iommu.h
of_irq.h
of_mdio.h
of_net.h net: of_get_phy_mode: Change API to solve int/unit warnings 2019-11-04 11:21:25 -08:00
of_pci.h PCI: Remove unused includes and superfluous struct declaration 2019-11-21 07:49:29 -06:00
of_pdt.h
of_platform.h
of_reserved_mem.h
of.h of: Fix typo in kerneldoc 2019-07-26 17:01:29 -06:00
oid_registry.h
olpc-ec.h
omap-dma.h dmaengine: omap-dma: make omap_dma_filter_fn private 2019-07-22 20:56:37 +05:30
omap-gpmc.h
omap-iommu.h iommu/omap: Fix compilation warnings 2019-08-09 19:56:05 +02:00
omap-mailbox.h
omapfb.h
once.h
oom.h
openvswitch.h
oprofile.h
osq_lock.h
overflow.h
packing.h
padata.h padata: remove cpu_index from the parallel_queue 2019-09-13 21:15:41 +10:00
page_counter.h
page_ext.h mm, page_owner: rename flag indicating that page is allocated 2019-10-14 15:04:00 -07:00
page_idle.h
page_owner.h
page_ref.h
page-flags-layout.h page flags: prioritize kasan bits over last-cpuid 2019-08-03 07:02:01 -07:00
page-flags.h mm: thp: handle page cache THP correctly in PageTransCompoundMap 2019-11-06 08:28:58 -08:00
page-isolation.h mm/page_isolation.c: convert SKIP_HWPOISON to MEMORY_OFFLINE 2019-12-01 12:59:04 -08:00
pageblock-flags.h
pagemap.h mm: page cache: store only head pages in i_pages 2019-09-24 15:54:08 -07:00
pagevec.h
pagewalk.h mm: Add a walk_page_mapping() function to the pagewalk code 2019-11-06 13:02:43 +01:00
parman.h
parport_pc.h
parport.h parport: daisy: avoid hardcoded name 2019-11-13 19:09:47 +08:00
parser.h
pata_arasan_cf_data.h
patchkey.h
path.h
pch_dma.h
pci_hotplug.h PCI/ACPI: Move _HPP & _HPX functions to pci-acpi.c 2019-08-28 15:25:53 -05:00
pci_ids.h PCI: vmd: Add device id for VMD device 8086:9A0B 2019-11-20 16:30:10 +00:00
pci-acpi.h
pci-ats.h PCI/ATS: Make pci_restore_pri_state(), pci_restore_pasid_state() private 2019-10-15 16:39:11 -05:00
pci-dma-compat.h
pci-ecam.h
pci-ep-cfs.h
pci-epc.h PCI: Add PCI_STD_NUM_BARS for the number of standard BARs 2019-10-14 10:22:26 -05:00
pci-epf.h
pci-p2pdma.h PCI/P2PDMA: Introduce pci_p2pdma_unmap_sg() 2019-08-16 08:41:26 -05:00
pci.h pci-v5.5-changes 2019-12-03 13:58:22 -08:00
pda_power.h
pe.h
percpu_counter.h
percpu-defs.h Revert "percpu: add __percpu to SHIFT_PERCPU_PTR" 2019-11-25 14:28:04 -08:00
percpu-refcount.h percpu-refcount: Use normal instead of RCU-sched" 2019-11-16 20:02:47 -08:00
percpu-rwsem.h locking/lockdep: Remove unused @nested argument from lock_release() 2019-10-09 12:46:10 +02:00
percpu.h
perf_event.h Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-11-26 15:04:47 -08:00
perf_regs.h
personality.h
pfn_t.h mm: introduce ARCH_HAS_PTE_DEVMAP 2019-07-16 19:23:25 -07:00
pfn.h
phonet.h
phy_fixed.h net: fixed_phy: Add forward declaration for struct gpio_desc; 2019-09-05 11:54:14 +02:00
phy_led_triggers.h
phy.h net: phy: add helpers phy_(un)lock_mdio_bus 2019-11-25 10:47:00 -08:00
phylink.h net: phylink: rename mac_link_state() op to mac_pcs_get_state() 2019-11-23 16:13:39 -08:00
pid_namespace.h fork: extend clone3() to support setting a PID 2019-11-15 23:49:22 +01:00
pid.h fork: extend clone3() to support setting a PID 2019-11-15 23:49:22 +01:00
pim.h
pipe_fs_i.h pipe: Allow pipes to have kernel-reserved slots 2019-11-15 16:22:54 +00:00
pkeys.h
pktcdvd.h
pl320-ipc.h
pl353-smc.h
platform_device.h drivers: provide devm_platform_ioremap_resource_byname() 2019-11-05 18:33:13 +01:00
plist.h
pm2301_charger.h
pm_clock.h
pm_domain.h PM / Domains: Introduce dev_pm_domain_start() 2019-11-13 11:41:50 +01:00
pm_opp.h PM / OPP: Support adjusting OPP voltages at runtime 2019-11-11 10:27:15 +05:30
pm_qos.h PM: QoS: Drop frequency QoS types from device PM QoS 2019-10-21 02:05:21 +02:00
pm_runtime.h
pm_wakeirq.h
pm_wakeup.h PM / wakeup: Show wakeup sources stats in sysfs 2019-08-21 00:20:40 +02:00
pm-trace.h
pm.h PM / Domains: Introduce dev_pm_domain_start() 2019-11-13 11:41:50 +01:00
pmbus.h
pmu.h
pnfs_osd_xdr.h
pnp.h
poison.h lib/list: tweak LIST_POISON2 for better code generation on x86_64 2019-07-16 19:23:22 -07:00
poll.h
posix_acl_xattr.h
posix_acl.h
posix-clock.h
posix-timers.h posix-cpu-timers: Always clear head pointer on dequeue 2019-09-05 21:16:22 +02:00
power_supply.h power supply and reset changes for the v5.3 series 2019-07-15 21:06:15 -07:00
powercap.h
ppp_channel.h
ppp_defs.h
ppp-comp.h
pps_kernel.h
pps-gpio.h
pr.h
preempt.h sched/preempt: Use CONFIG_PREEMPTION where appropriate 2019-07-31 19:03:34 +02:00
prefetch.h
prime_numbers.h
printk.h lib/hexdump: make print_hex_dump_bytes() a nop on !DEBUG builds 2019-09-25 17:51:39 -07:00
proc_fs.h include/linux/proc_fs.h: fix confusing macro arg name 2019-12-04 19:44:11 -08:00
proc_ns.h
processor.h
profile.h
projid.h
property.h software node: unify PROPERTY_ENTRY_XXX macros 2019-11-05 23:18:10 +01:00
psci.h firmware/psci: use common SMCCC_CONDUIT_* 2019-10-14 10:55:14 +01:00
pseudo_fs.h
psi_types.h
psi.h
psp-sev.h
pstore_ram.h
pstore.h
pti.h
ptp_classify.h
ptp_clock_kernel.h
ptr_ring.h
ptrace.h
purgatory.h
pvclock_gtod.h
pwm_backlight.h
pwm.h pwm: Ensure pwm_apply_state() doesn't modify the state argument 2019-09-21 03:25:10 +02:00
pxa2xx_ssp.h spi: pxa2xx: No need to keep pointer to platform device 2019-10-18 18:24:50 +01:00
pxa168_eth.h
qcom_scm.h firmware/qcom_scm: Add scm call to handle smmu errata 2019-11-04 17:48:37 +00:00
qcom-geni-se.h
qnx6_fs.h
quota.h fs/quota: handle overflows of sysctl fs.quota.* and report as unsigned long 2019-11-11 11:06:27 +01:00
quotaops.h Pull series refactoring quota enabling and disabling code. 2019-11-06 10:52:10 +01:00
radix-tree.h radix tree: Remove radix_tree_iter_find 2019-11-01 22:26:34 -04:00
raid_class.h
ramfs.h vfs: Convert ramfs, shmem, tmpfs, devtmpfs, rootfs to use the new mount API 2019-09-12 21:05:34 -04:00
random.h fdt: add support for rng-seed 2019-08-23 16:39:26 +01:00
range.h
ras.h
ratelimit.h
rational.h
rbtree_augmented.h lib/rbtree: get successor's color directly 2019-12-04 19:44:13 -08:00
rbtree_latch.h
rbtree.h lib/rbtree: avoid generating code twice for the cached versions 2019-07-16 19:23:22 -07:00
rcu_node_tree.h
rcu_segcblist.h rcu/nocb: Atomic ->len field in rcu_segcblist structure 2019-08-13 14:35:49 -07:00
rcu_sync.h rcu/sync: Remove custom check for RCU readers 2019-08-09 11:01:08 -07:00
rculist_bl.h rcu: Remove unused function hlist_bl_del_init_rcu() 2019-10-30 08:32:07 -07:00
rculist_nulls.h
rculist.h rcu: Add support for consolidated-RCU reader checking 2019-08-09 11:00:35 -07:00
rcupdate_wait.h
rcupdate.h Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-11-26 16:02:40 -08:00
rcutiny.h rcutorture: Emulate dyntick aspect of userspace nohz_full sojourn 2019-10-05 10:46:05 -07:00
rcutree.h stop_machine: Provide RCU quiescent state in multi_cpu_stop() 2019-10-05 10:46:05 -07:00
rcuwait.h tasks, sched/core: With a grace period after finish_task_switch(), remove unnecessary code 2019-09-25 17:42:29 +02:00
reboot-mode.h
reboot.h
reciprocal_div.h
refcount.h locking/refcount: Consolidate implementations of refcount_t 2019-11-25 09:15:32 +01:00
regmap.h
regset.h
relay.h
remoteproc.h
reset-controller.h reset: fix reset_control_ops kerneldoc comment 2019-10-28 12:18:23 +01:00
reset.h reset: fix reset_control_get_exclusive kerneldoc comment 2019-10-24 10:26:33 +02:00
resource_ext.h resource: Add a resource_list_first_type helper 2019-10-29 10:47:14 +00:00
resource.h
restart_block.h
rfkill.h
rhashtable-types.h
rhashtable.h
ring_buffer.h
rio_drv.h
rio_ids.h
rio_regs.h
rio.h
rmap.h
rmi.h
rndis.h
rodata_test.h
root_dev.h cifs: Add support for root file systems 2019-09-16 11:43:38 -05:00
rpmsg.h
rslib.h
rtc.h rtc: introduce lock helpers 2019-10-19 22:55:46 +02:00
rtmutex.h
rtnetlink.h
rtsx_common.h
rtsx_pci.h misc: rtsx: Add support for RTS5261 2019-11-14 13:07:48 +08:00
rtsx_usb.h
rwlock_api_smp.h locking/lockdep: Remove unused @nested argument from lock_release() 2019-10-09 12:46:10 +02:00
rwlock_types.h
rwlock.h
rwsem.h locking/rwsem: Check for operations on an uninitialized rwsem 2019-08-06 12:49:15 +02:00
s3c_adc_battery.h
sbitmap.h sbitmap: Delete sbitmap_any_bit_clear() 2019-11-13 12:50:40 -07:00
scatterlist.h
scc.h
sched_clock.h
sched.h kcov: remote coverage support 2019-12-04 19:44:14 -08:00
scif.h
scmi_protocol.h firmware: arm_scmi: Add RESET protocol in SCMI v2.0 2019-08-12 12:23:02 +01:00
scpi_protocol.h
screen_info.h
sctp.h
scx200_gpio.h
scx200.h
sdb.h
sdla.h
seccomp.h seccomp: simplify secure_computing() 2019-10-10 14:55:24 -07:00
securebits.h
security.h powerpc updates for 5.5 2019-11-30 14:35:43 -08:00
sed-opal.h block: sed-opal: Add support to read/write opal tables generically 2019-11-04 07:11:31 -07:00
seg6_genl.h
seg6_hmac.h
seg6_iptunnel.h
seg6_local.h
seg6.h
selection.h
sem.h
semaphore.h
seq_buf.h seq_buf: Add printing formatted hex dumps 2019-11-14 13:15:12 -05:00
seq_file_net.h
seq_file.h
seqlock.h locking/lockdep: Remove unused @nested argument from lock_release() 2019-10-09 12:46:10 +02:00
seqno-fence.h
serdev.h
serial_8250.h
serial_bcm63xx.h
serial_core.h docs: serial: move it to the driver-api 2019-07-15 11:03:03 -03:00
serial_max3100.h
serial_pnx8xxx.h
serial_s3c.h
serial_sci.h
serial.h
serio.h
set_memory.h
sfi_acpi.h
sfi.h
sfp.h net: sfp: soft status and control support 2019-11-20 22:29:40 -08:00
sh_clk.h
sh_dma.h
sh_eth.h
sh_intc.h
sh_timer.h
shdma-base.h
shm.h
shmem_fs.h vfs: Convert ramfs, shmem, tmpfs, devtmpfs, rootfs to use the new mount API 2019-09-12 21:05:34 -04:00
shrinker.h mm: shrinker: make shrinker not depend on memcg kmem 2019-09-24 15:54:11 -07:00
signal_types.h
signal.h signal: Allow cifs and drbd to receive their terminating signals 2019-08-19 06:34:13 -05:00
signalfd.h
siox.h
siphash.h
sirfsoc_dma.h
sizes.h
skb_array.h
skbuff.h y2038: syscall implementation cleanups 2019-12-01 14:00:59 -08:00
skmsg.h net: skmsg: fix TLS 1.3 crash with full sk_msg 2019-11-28 22:40:29 -08:00
slab_def.h
slab.h mm, slab: remove unused kmalloc_size() 2019-12-01 06:29:17 -08:00
slimbus.h
slub_def.h
sm501-regs.h
sm501.h
smc91x.h
smc911x.h
smp.h
smpboot.h
smsc911x.h
smscphy.h
sock_diag.h
socket.h net: add __sys_connect_file() helper 2019-11-25 19:56:11 -07:00
sonet.h
sony-laptop.h
sonypi.h
sort.h lib/sort: Move swap, cmp and cmp_r function types for wider use 2019-11-14 13:15:11 -05:00
sound.h
soundcard.h
spinlock_api_smp.h locking/lockdep: Remove unused @nested argument from lock_release() 2019-10-09 12:46:10 +02:00
spinlock_api_up.h
spinlock_types_up.h
spinlock_types.h
spinlock_up.h
spinlock.h locking/spinlocks: Use CONFIG_PREEMPTION 2019-07-31 19:03:35 +02:00
splice.h
spmi.h
sram.h
srcu.h
srcutiny.h
srcutree.h
ssbi.h
stackdepot.h
stackleak.h
stackprotector.h
stacktrace.h stacktrace: Constify 'entries' arguments 2019-07-25 15:43:26 +02:00
start_kernel.h
stat.h statx: define STATX_ATTR_VERITY 2019-11-13 12:15:34 -08:00
statfs.h
static_key.h
stddef.h
stm.h
stmmac.h net: of_get_phy_mode: Change API to solve int/unit warnings 2019-11-04 11:21:25 -08:00
stmp3xxx_rtc_wdt.h
stmp_device.h
stop_machine.h
string_helpers.h
string.h rss_stat: add support to detect RSS updates of external mm 2019-12-01 06:29:18 -08:00
stringhash.h
stringify.h
sungem_phy.h
sunserialcore.h
sunxi-rsb.h
superhyway.h
suspend.h ACPI: PM: s2idle: Execute LPS0 _DSM functions with suspended devices 2019-08-08 11:26:01 +02:00
svga.h
sw842.h
swab.h
swait.h
swap_cgroup.h
swap_slots.h
swap.h mm: vmscan: detect file thrashing at the reclaim root 2019-12-01 12:59:07 -08:00
swapfile.h
swapops.h mm: stub out all of swapops.h for !CONFIG_MMU 2019-07-16 19:23:21 -07:00
swiotlb.h swiotlb: Split size parameter to map/unmap APIs 2019-09-11 12:34:29 +02:00
switchtec.h
sxgbe_platform.h net: of_get_phy_mode: Change API to solve int/unit warnings 2019-11-04 11:21:25 -08:00
sync_core.h
sync_file.h
synclink.h
sys_soc.h base: soc: Handle custom soc information sysfs entries 2019-10-10 14:35:32 +02:00
sys.h
syscalls.h y2038: time: avoid timespec usage in settimeofday() 2019-11-15 14:38:30 +01:00
syscore_ops.h
sysctl.h include/linux/sysctl.h: inline braces for ctl_table and ctl_table_header 2019-12-04 19:44:11 -08:00
sysfs.h sysfs: Fixes __BIN_ATTR_WO() macro 2019-11-13 00:33:21 +11:00
syslog.h
sysrq.h
sysv_fs.h
t10-pi.h block: centralize PI remapping logic to the block layer 2019-09-17 20:03:49 -06:00
task_io_accounting_ops.h
task_io_accounting.h
task_work.h
taskstats_kern.h
tboot.h
tc.h
tca6416_keypad.h
tcp.h tcp: add TCP_INFO status for failed client TFO 2019-10-25 19:25:37 -07:00
tee_drv.h
textsearch_fsm.h
textsearch.h
tfrc.h
thermal.h docs: thermal: add it to the driver API 2019-07-31 13:25:15 -06:00
thread_info.h uaccess: disallow > INT_MAX copy sizes 2019-12-04 19:44:14 -08:00
threads.h
thunderbolt.h thunderbolt: Add support for Intel Ice Lake 2019-08-26 12:15:06 +03:00
ti_wilink_st.h
ti-emif-sram.h
tick.h Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-11-26 15:42:43 -08:00
tifm.h
timb_dma.h
timb_gpio.h
time32.h y2038: uapi: change __kernel_time_t to __kernel_old_time_t 2019-11-15 14:38:29 +01:00
time64.h vfs: Add file timestamp range support 2019-08-30 07:27:17 -07:00
time.h y2038: move itimer reset into itimer.c 2019-11-15 14:38:30 +01:00
timecounter.h
timekeeper_internal.h timekeeping/vsyscall: Prevent math overflow in BOOTTIME update 2019-08-23 02:12:11 +02:00
timekeeping32.h
timekeeping.h
timer.h timers: Prepare support for PREEMPT_RT 2019-08-01 20:51:22 +02:00
timerfd.h
timeriomem-rng.h hwrng: timeriomem - add include guard to timeriomem-rng.h 2019-08-02 14:45:14 +10:00
timerqueue.h posix-cpu-timers: Utilize timerqueue for storage 2019-08-28 11:50:43 +02:00
timex.h
tnum.h bpf: add include guard to tnum.h 2019-08-20 17:05:05 +02:00
topology.h Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2019-09-16 17:25:49 -07:00
torture.h rcu: Use CONFIG_PREEMPTION 2019-07-31 19:03:35 +02:00
toshiba.h
tpm_command.h
tpm_eventlog.h efi/tpm: Only set 'efi_tpm_final_log_size' after successful event log parsing 2019-10-07 15:24:36 +02:00
tpm.h KEYS: trusted: Move TPM2 trusted keys code 2019-11-12 21:45:37 +02:00
trace_clock.h
trace_events.h tracing: Adding new functions for kernel access to Ftrace instances 2019-11-22 19:41:08 -05:00
trace_seq.h tracing: Use seq_buf_hex_dump() to dump buffers 2019-11-14 13:15:12 -05:00
trace.h tracing: Adding new functions for kernel access to Ftrace instances 2019-11-22 19:41:08 -05:00
tracefs.h
tracehook.h ptrace: add PTRACE_GET_SYSCALL_INFO request 2019-07-16 19:23:24 -07:00
tracepoint-defs.h
tracepoint.h
transport_class.h
ts-nbus.h
tsacct_kern.h
tty_driver.h
tty_flip.h
tty_ldisc.h
tty.h
typecheck.h
types.h y2038: syscall implementation cleanups 2019-12-01 14:00:59 -08:00
u64_stats_sync.h u64_stats: provide u64_stats_t type 2019-11-07 20:03:08 -08:00
uaccess.h uaccess: Add strict non-pagefault kernel-space read function 2019-11-02 12:39:12 -07:00
ucb1400.h
ucs2_string.h
udp.h
uidgid.h
uio_driver.h
uio.h pipe: Use head and tail pointers for the ring, not cursor and length 2019-10-31 15:12:34 +00:00
umh.h
unicode.h
uprobes.h
usb_usual.h
usb.h usb: add a HCD_DMA flag instead of guestimating DMA capabilities 2019-08-21 10:03:35 -07:00
usbdevice_fs.h
user_namespace.h
user-return-notifier.h
user.h
userfaultfd_k.h
util_macros.h
uts.h
utsname.h
uuid.h
vbox_utils.h
verification.h PKCS#7: Refactor verify_pkcs7_signature() 2019-08-05 18:40:18 -04:00
vermagic.h Kbuild: Handle PREEMPT_RT for version string and magic 2019-08-14 01:10:42 +09:00
vexpress.h
vfio.h
vfs.h
vga_switcheroo.h
vgaarb.h
via_i2c.h
via-core.h
via-gpio.h
via.h
videodev2.h
virtio_byteorder.h
virtio_caif.h
virtio_config.h
virtio_console.h
virtio_net.h
virtio_ring.h
virtio_vsock.h vsock: handle buffer_size sockopts in the core 2019-11-14 18:12:18 -08:00
virtio.h
visorbus.h
vlynq.h
vm_event_item.h
vmacache.h
vmalloc.h kasan: support backing vmalloc space with real shadow memory 2019-12-01 12:59:05 -08:00
vme.h
vmpressure.h
vmstat.h mm/memcontrol: use vmstat names for printing statistics 2019-12-04 19:44:11 -08:00
vmw_vmci_api.h vsock/vmci: register vmci_transport only when VMCI guest/host are active 2019-11-14 18:12:18 -08:00
vmw_vmci_defs.h
vringh.h
vt_buffer.h
vt_kern.h
vt.h
vtime.h context_tracking: Check static key on context_tracking_enabled_*cpu() 2019-10-29 10:01:16 +01:00
w1-gpio.h
w1.h w1: Fix documentation warning. 2019-11-14 12:20:02 +08:00
wait_bit.h
wait.h Add wake_up_interruptible_sync_poll_locked() 2019-10-31 15:12:23 +00:00
watchdog.h
win_minmax.h
wireless.h
wkup_m3_ipc.h
wl12xx.h
wm97xx.h
wmi.h
workqueue.h workqueue: unconfine alloc/apply/free_workqueue_attrs() 2019-09-13 21:15:39 +10:00
writeback.h writeback, memcg: Implement cgroup_writeback_by_id() 2019-08-27 09:22:38 -06:00
ww_mutex.h locking/lockdep: Remove unused @nested argument from lock_release() 2019-10-09 12:46:10 +02:00
xarray.h xarray.h: fix kernel-doc warning 2019-10-14 15:04:01 -07:00
xattr.h
xxhash.h
xz.h
yam.h
z2_battery.h
zbud.h
zconf.h
zlib.h
zorro.h
zpool.h zpool: add malloc_support_movable to zpool_driver 2019-09-24 15:54:12 -07:00
zsmalloc.h
zstd.h
zutil.h