2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-29 15:43:59 +08:00
linux-next/include/linux
Minchan Kim ecb8ac8b1f mm/madvise: introduce process_madvise() syscall: an external memory hinting API
There is usecase that System Management Software(SMS) want to give a
memory hint like MADV_[COLD|PAGEEOUT] to other processes and in the
case of Android, it is the ActivityManagerService.

The information required to make the reclaim decision is not known to the
app.  Instead, it is known to the centralized userspace
daemon(ActivityManagerService), and that daemon must be able to initiate
reclaim on its own without any app involvement.

To solve the issue, this patch introduces a new syscall
process_madvise(2).  It uses pidfd of an external process to give the
hint.  It also supports vector address range because Android app has
thousands of vmas due to zygote so it's totally waste of CPU and power if
we should call the syscall one by one for each vma.(With testing 2000-vma
syscall vs 1-vector syscall, it showed 15% performance improvement.  I
think it would be bigger in real practice because the testing ran very
cache friendly environment).

Another potential use case for the vector range is to amortize the cost
ofTLB shootdowns for multiple ranges when using MADV_DONTNEED; this could
benefit users like TCP receive zerocopy and malloc implementations.  In
future, we could find more usecases for other advises so let's make it
happens as API since we introduce a new syscall at this moment.  With
that, existing madvise(2) user could replace it with process_madvise(2)
with their own pid if they want to have batch address ranges support
feature.

ince it could affect other process's address range, only privileged
process(PTRACE_MODE_ATTACH_FSCREDS) or something else(e.g., being the same
UID) gives it the right to ptrace the process could use it successfully.
The flag argument is reserved for future use if we need to extend the API.

I think supporting all hints madvise has/will supported/support to
process_madvise is rather risky.  Because we are not sure all hints make
sense from external process and implementation for the hint may rely on
the caller being in the current context so it could be error-prone.  Thus,
I just limited hints as MADV_[COLD|PAGEOUT] in this patch.

If someone want to add other hints, we could hear the usecase and review
it for each hint.  It's safer for maintenance rather than introducing a
buggy syscall but hard to fix it later.

So finally, the API is as follows,

      ssize_t process_madvise(int pidfd, const struct iovec *iovec,
                unsigned long vlen, int advice, unsigned int flags);

    DESCRIPTION
      The process_madvise() system call is used to give advice or directions
      to the kernel about the address ranges from external process as well as
      local process. It provides the advice to address ranges of process
      described by iovec and vlen. The goal of such advice is to improve
      system or application performance.

      The pidfd selects the process referred to by the PID file descriptor
      specified in pidfd. (See pidofd_open(2) for further information)

      The pointer iovec points to an array of iovec structures, defined in
      <sys/uio.h> as:

        struct iovec {
            void *iov_base;         /* starting address */
            size_t iov_len;         /* number of bytes to be advised */
        };

      The iovec describes address ranges beginning at address(iov_base)
      and with size length of bytes(iov_len).

      The vlen represents the number of elements in iovec.

      The advice is indicated in the advice argument, which is one of the
      following at this moment if the target process specified by pidfd is
      external.

        MADV_COLD
        MADV_PAGEOUT

      Permission to provide a hint to external process is governed by a
      ptrace access mode PTRACE_MODE_ATTACH_FSCREDS check; see ptrace(2).

      The process_madvise supports every advice madvise(2) has if target
      process is in same thread group with calling process so user could
      use process_madvise(2) to extend existing madvise(2) to support
      vector address ranges.

    RETURN VALUE
      On success, process_madvise() returns the number of bytes advised.
      This return value may be less than the total number of requested
      bytes, if an error occurred. The caller should check return value
      to determine whether a partial advice occurred.

FAQ:

Q.1 - Why does any external entity have better knowledge?

Quote from Sandeep

"For Android, every application (including the special SystemServer)
are forked from Zygote.  The reason of course is to share as many
libraries and classes between the two as possible to benefit from the
preloading during boot.

After applications start, (almost) all of the APIs end up calling into
this SystemServer process over IPC (binder) and back to the
application.

In a fully running system, the SystemServer monitors every single
process periodically to calculate their PSS / RSS and also decides
which process is "important" to the user for interactivity.

So, because of how these processes start _and_ the fact that the
SystemServer is looping to monitor each process, it does tend to *know*
which address range of the application is not used / useful.

Besides, we can never rely on applications to clean things up
themselves.  We've had the "hey app1, the system is low on memory,
please trim your memory usage down" notifications for a long time[1].
They rely on applications honoring the broadcasts and very few do.

So, if we want to avoid the inevitable killing of the application and
restarting it, some way to be able to tell the OS about unimportant
memory in these applications will be useful.

- ssp

Q.2 - How to guarantee the race(i.e., object validation) between when
giving a hint from an external process and get the hint from the target
process?

process_madvise operates on the target process's address space as it
exists at the instant that process_madvise is called.  If the space
target process can run between the time the process_madvise process
inspects the target process address space and the time that
process_madvise is actually called, process_madvise may operate on
memory regions that the calling process does not expect.  It's the
responsibility of the process calling process_madvise to close this
race condition.  For example, the calling process can suspend the
target process with ptrace, SIGSTOP, or the freezer cgroup so that it
doesn't have an opportunity to change its own address space before
process_madvise is called.  Another option is to operate on memory
regions that the caller knows a priori will be unchanged in the target
process.  Yet another option is to accept the race for certain
process_madvise calls after reasoning that mistargeting will do no
harm.  The suggested API itself does not provide synchronization.  It
also apply other APIs like move_pages, process_vm_write.

The race isn't really a problem though.  Why is it so wrong to require
that callers do their own synchronization in some manner?  Nobody
objects to write(2) merely because it's possible for two processes to
open the same file and clobber each other's writes --- instead, we tell
people to use flock or something.  Think about mmap.  It never
guarantees newly allocated address space is still valid when the user
tries to access it because other threads could unmap the memory right
before.  That's where we need synchronization by using other API or
design from userside.  It shouldn't be part of API itself.  If someone
needs more fine-grained synchronization rather than process level,
there were two ideas suggested - cookie[2] and anon-fd[3].  Both are
applicable via using last reserved argument of the API but I don't
think it's necessary right now since we have already ways to prevent
the race so don't want to add additional complexity with more
fine-grained optimization model.

To make the API extend, it reserved an unsigned long as last argument
so we could support it in future if someone really needs it.

Q.3 - Why doesn't ptrace work?

Injecting an madvise in the target process using ptrace would not work
for us because such injected madvise would have to be executed by the
target process, which means that process would have to be runnable and
that creates the risk of the abovementioned race and hinting a wrong
VMA.  Furthermore, we want to act the hint in caller's context, not the
callee's, because the callee is usually limited in cpuset/cgroups or
even freezed state so they can't act by themselves quick enough, which
causes more thrashing/kill.  It doesn't work if the target process are
ptraced(e.g., strace, debugger, minidump) because a process can have at
most one ptracer.

[1] https://developer.android.com/topic/performance/memory"

[2] process_getinfo for getting the cookie which is updated whenever
    vma of process address layout are changed - Daniel Colascione -
    https://lore.kernel.org/lkml/20190520035254.57579-1-minchan@kernel.org/T/#m7694416fd179b2066a2c62b5b139b14e3894e224

[3] anonymous fd which is used for the object(i.e., address range)
    validation - Michal Hocko -
    https://lore.kernel.org/lkml/20200120112722.GY18451@dhcp22.suse.cz/

[minchan@kernel.org: fix process_madvise build break for arm64]
  Link: http://lkml.kernel.org/r/20200303145756.GA219683@google.com
[minchan@kernel.org: fix build error for mips of process_madvise]
  Link: http://lkml.kernel.org/r/20200508052517.GA197378@google.com
[akpm@linux-foundation.org: fix patch ordering issue]
[akpm@linux-foundation.org: fix arm64 whoops]
[minchan@kernel.org: make process_madvise() vlen arg have type size_t, per Florian]
[akpm@linux-foundation.org: fix i386 build]
[sfr@canb.auug.org.au: fix syscall numbering]
  Link: https://lkml.kernel.org/r/20200905142639.49fc3f1a@canb.auug.org.au
[sfr@canb.auug.org.au: madvise.c needs compat.h]
  Link: https://lkml.kernel.org/r/20200908204547.285646b4@canb.auug.org.au
[minchan@kernel.org: fix mips build]
  Link: https://lkml.kernel.org/r/20200909173655.GC2435453@google.com
[yuehaibing@huawei.com: remove duplicate header which is included twice]
  Link: https://lkml.kernel.org/r/20200915121550.30584-1-yuehaibing@huawei.com
[minchan@kernel.org: do not use helper functions for process_madvise]
  Link: https://lkml.kernel.org/r/20200921175539.GB387368@google.com
[akpm@linux-foundation.org: pidfd_get_pid() gained an argument]
[sfr@canb.auug.org.au: fix up for "iov_iter: transparently handle compat iovecs in import_iovec"]
  Link: https://lkml.kernel.org/r/20200928212542.468e1fef@canb.auug.org.au

Signed-off-by: Minchan Kim <minchan@kernel.org>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Suren Baghdasaryan <surenb@google.com>
Reviewed-by: Vlastimil Babka <vbabka@suse.cz>
Acked-by: David Rientjes <rientjes@google.com>
Cc: Alexander Duyck <alexander.h.duyck@linux.intel.com>
Cc: Brian Geffon <bgeffon@google.com>
Cc: Christian Brauner <christian@brauner.io>
Cc: Daniel Colascione <dancol@google.com>
Cc: Jann Horn <jannh@google.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Joel Fernandes <joel@joelfernandes.org>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: John Dias <joaodias@google.com>
Cc: Kirill Tkhai <ktkhai@virtuozzo.com>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Oleksandr Natalenko <oleksandr@redhat.com>
Cc: Sandeep Patil <sspatil@google.com>
Cc: SeongJae Park <sj38.park@gmail.com>
Cc: SeongJae Park <sjpark@amazon.de>
Cc: Shakeel Butt <shakeelb@google.com>
Cc: Sonny Rao <sonnyrao@google.com>
Cc: Tim Murray <timmurray@google.com>
Cc: Christian Brauner <christian.brauner@ubuntu.com>
Cc: Florian Weimer <fw@deneb.enyo.de>
Cc: <linux-man@vger.kernel.org>
Link: http://lkml.kernel.org/r/20200302193630.68771-3-minchan@kernel.org
Link: http://lkml.kernel.org/r/20200508183320.GA125527@google.com
Link: http://lkml.kernel.org/r/20200622192900.22757-4-minchan@kernel.org
Link: https://lkml.kernel.org/r/20200901000633.1920247-4-minchan@kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2020-10-18 09:27:10 -07:00
..
amba Partially revert "video: fbdev: amba-clcd: Retire elder CLCD driver" 2020-09-30 16:37:39 +02:00
avf
bcma
byteorder
can can: remove obsolete version strings 2020-10-12 10:06:39 +02:00
ceph libceph: add __maybe_unused to DEFINE_CEPH_FEATURE 2020-08-24 10:33:08 +02:00
clk clk: at91: clk-utmi: add utmi support for sama7g5 2020-07-24 02:19:08 -07:00
crush libceph: replace HTTP links with HTTPS ones 2020-08-03 11:05:26 +02:00
decompress lib: Add zstd support to decompress 2020-07-31 11:49:08 +02:00
device
dma include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
dsa net: dsa: tag_8021q: add VLANs to the master interface too 2020-09-20 19:01:34 -07:00
extcon
firmware Char/Misc driver patches for 5.9-rc1 2020-08-05 11:43:47 -07:00
fpga
fsl networking changes for the 5.10 merge window 2020-10-15 18:42:13 -07:00
gpio gpiolib: unexport devprop_gpiochip_set_names() 2020-09-14 10:54:42 +02:00
greybus
hsi
i3c
iio Staging / IIO driver updates for 5.10-rc1 2020-10-15 09:46:23 -07:00
input Input: sparse-keymap: add a description for @sw 2020-10-15 07:57:55 +02:00
irqchip include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
isdn
lockd
mailbox - mediatek : 2020-08-07 12:58:11 -07:00
mdio net: xgene: Move shared header file into include/linux 2020-08-27 06:55:50 -07:00
mfd Staging / IIO driver updates for 5.10-rc1 2020-10-15 09:46:23 -07:00
mlx4
mlx5 RDMA 5.10 pull request 2020-10-17 11:18:18 -07:00
mmc mmc: core: add a 'doing_init_tune' flag and a 'mmc_doing_tune' helper 2020-09-07 09:16:31 +02:00
mtd HyperBus changes 2020-10-11 22:08:21 +02:00
mux
net/intel
netfilter Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next 2020-09-09 11:21:19 -07:00
netfilter_arp
netfilter_bridge
netfilter_ipv4
netfilter_ipv6
pcs net: pcs: Move XPCS into new PCS subdirectory 2020-08-27 06:55:50 -07:00
perf arm64: perf: Add support caps under sysfs 2020-09-28 14:53:45 +01:00
phy phy: Add new PHY attribute max_link_rate 2020-09-16 17:38:02 +05:30
pinctrl
platform_data NAND Core changes: 2020-10-17 10:45:42 -07:00
power power: supply: bq27xxx_battery: Add the BQ28z610 Battery monitor 2020-07-29 22:33:10 +02:00
qed RDMA 5.10 pull request 2020-10-17 11:18:18 -07:00
raid md: remove the kernel version of md_u.h 2020-07-16 15:35:21 +02:00
regulator regulator: unexport regulator_lock/unlock() 2020-09-21 17:43:47 +01:00
remoteproc remoteproc: kill IPA notify code 2020-07-28 17:11:02 -07:00
reset
rpmsg
rtc
sched mm: kmem: prepare remote memcg charging infra for interrupt contexts 2020-10-18 09:27:09 -07:00
soc IOMMU Updates for Linux v5.10 2020-10-14 12:08:34 -07:00
soundwire soundwire: enable Data Port test modes 2020-09-23 15:29:29 +05:30
spi eeprom: at25: allow page sizes greater than 16 bit 2020-08-28 12:08:08 +02:00
ssb
sunrpc SUNRPC: remove RC4-HMAC-MD5 support from KerberosV 2020-09-11 14:39:15 +10:00
ulpi
unaligned
usb docs updates for v5.10-rc1 2020-10-16 15:02:21 -07:00
wimax net: wimax: fix duplicate words in comments 2020-07-15 20:34:02 -07:00
8250_pci.h
a.out.h
acct.h
acpi_dma.h
acpi_iort.h ACPI/IORT: Add an input ID to acpi_dma_configure() 2020-07-28 15:51:31 +01:00
acpi_pmtmr.h
acpi.h ACPI updates for 5.10-rc1 2020-10-14 11:42:04 -07:00
adb.h
adfs_fs.h
adreno-smmu-priv.h drm/msm: Add private interface for adreno-smmu 2020-09-12 10:45:56 -07:00
adxl.h
aer.h
agp_backend.h
agpgart.h
ahci_platform.h
ahci-remap.h
aio.h
alarmtimer.h
alcor_pci.h
altera_jtaguart.h
altera_uart.h
amd-iommu.h drm, iommu: Change type of pasid to u32 2020-09-17 19:21:16 +02:00
anon_inodes.h
apm_bios.h
apm-emulation.h
apple_bl.h
apple-gmux.h
arch_topology.h cpufreq,arm,arm64: restructure definitions of arch_set_freq_scale() 2020-10-08 17:17:27 +02:00
arm_sdei.h
arm-cci.h
arm-smccc.h ARM: SoC driver updates for v5.9 2020-08-03 19:30:59 -07: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 md/raid6: let async recovery function support different page offset 2020-09-24 16:44:44 -07:00
async.h
ata_platform.h
ata.h
atalk.h
ath9k_platform.h
atm_suni.h
atm_tcp.h
atm.h
atmdev.h net/atm: remove the atmdev_ops {get, set}sockopt methods 2020-07-19 18:16:40 -07:00
atmel_pdc.h
atmel-isc-media.h
atmel-mci.h
atmel-ssc.h
atomic-arch-fallback.h
atomic-fallback.h
atomic.h
attribute_container.h
audit.h audit: purge audit_log_string from the intra-kernel audit API 2020-07-21 11:12:31 -04:00
auto_dev-ioctl.h
auto_fs.h
auxvec.h
average.h
backing-dev-defs.h writeback: remove bdi->congested_fn 2020-07-08 17:20:46 -06:00
backing-dev.h bdi: replace BDI_CAP_NO_{WRITEBACK,ACCT_DIRTY} with a single flag 2020-09-24 13:43:39 -06:00
backlight.h backlight: backlight: Make of_find_backlight static 2020-07-20 10:27:11 +01:00
badblocks.h
balloon_compaction.h
bcd.h
bch.h
bcm47xx_nvram.h
bcm47xx_sprom.h firmware: bcm47xx_sprom: Fix -Wmissing-prototypes warnings 2020-08-17 13:47:28 +02:00
bcm47xx_wdt.h
bcm963xx_nvram.h
bcm963xx_tag.h bcm963xx_tag.h: fix duplicated word 2020-10-13 11:37:11 +02:00
binfmts.h exec: Implement kernel_execve 2020-07-21 08:24:52 -05:00
bio.h
bit_spinlock.h
bitfield.h bitfield.h: don't compile-time validate _val in FIELD_FIT 2020-08-10 12:16:51 -07:00
bitmap.h
bitops.h bitops: use the same mechanism for get_count_order[_long] 2020-10-16 11:11:20 -07:00
bitrev.h
bits.h Raise gcc version requirement to 4.9 2020-07-08 10:48:35 -07:00
blk_types.h block-5.10-2020-10-12 2020-10-13 12:12:44 -07:00
blk-cgroup.h writeback: remove struct bdi_writeback_congested 2020-07-08 17:05:53 -06:00
blk-crypto.h block: make bio_crypt_clone() able to fail 2020-10-05 10:47:43 -06:00
blk-mq-pci.h
blk-mq-rdma.h
blk-mq-virtio.h
blk-mq.h blk-mq, elevator: Count requests per hctx to improve performance 2020-09-03 15:20:47 -06:00
blk-pm.h
blkdev.h kernel.h: split out min()/max() et al. helpers 2020-10-16 11:11:19 -07:00
blkpg.h
blktrace_api.h
blockgroup_lock.h
bma150.h
bootconfig.h
bottom_half.h
bpf_lirc.h
bpf_local_storage.h bpf: Split bpf_local_storage to bpf_sk_storage 2020-08-25 15:00:04 -07:00
bpf_lsm.h bpf: Implement bpf_local_storage for inodes 2020-08-25 15:00:04 -07:00
bpf_trace.h
bpf_types.h bpf: Implement bpf_local_storage for inodes 2020-08-25 15:00:04 -07:00
bpf_verifier.h bpf: Introduce pseudo_btf_id 2020-10-02 14:59:25 -07:00
bpf-cgroup.h bpf: tcp: Allow bpf prog to write and parse TCP header option 2020-08-24 14:35:00 -07:00
bpf-netns.h bpf: Introduce SK_LOOKUP program type with a dedicated attach point 2020-07-17 20:18:16 -07:00
bpf.h bpf: Allow for map-in-map with dynamic inner array map entries 2020-10-11 10:21:04 -07:00
bpfilter.h bpfilter: switch bpfilter_ip_set_sockopt to sockptr_t 2020-07-24 15:41:54 -07:00
brcmphy.h net: phy: bcm7xxx: Add an entry for BCM72113 2020-09-21 17:16:17 -07:00
bsearch.h
bsg-lib.h
bsg.h
btf_ids.h btf: Add BTF_ID_LIST_SINGLE macro 2020-09-21 15:00:40 -07:00
btf.h bpf: Introduce bpf_per_cpu_ptr() 2020-10-02 15:00:49 -07:00
btree-128.h
btree-type.h
btree.h include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
btrfs.h
buffer_head.h
bug.h
build_bug.h
build-salt.h
bvec.h kernel.h: split out min()/max() et al. helpers 2020-10-16 11:11:19 -07:00
c2port.h
cache.h
cacheinfo.h cacheinfo: Move resctrl's get_cache_id() to the cacheinfo header file 2020-08-19 11:04:23 +02:00
capability.h capabilities: Introduce CAP_CHECKPOINT_RESTORE 2020-07-19 20:14:42 +02:00
cb710.h
cciss_ioctl.h
ccp.h
cdev.h
cdrom.h cdrom: remove the unused cdrom_media_changed function 2020-07-08 16:20:01 -06:00
cfag12864b.h
cgroup_rdma.h
cgroup_subsys.h
cgroup-defs.h cgroup: Fix sock_cgroup_data on big-endian. 2020-07-09 16:28:44 -07:00
cgroup.h cgroup: fix cgroup_sk_alloc() for sk_clone_lock() 2020-07-07 13:34:11 -07:00
circ_buf.h
cleancache.h
clk-provider.h Merge branches 'clk-microchip', 'clk-mmp', 'clk-unused' and 'clk-at91' into clk-next 2020-08-03 15:07:18 -07:00
clk.h
clkdev.h
clockchips.h
clocksource.h
cm4000_cs.h
cma.h mm: cma: use CMA_MAX_NAME to define the length of cma name array 2020-09-01 09:19:43 +02:00
cmdline-parser.h
cn_proc.h
cnt32_to_63.h
coda.h
compaction.h include/linux/compaction.h: clean code by removing unused enum value 2020-10-13 18:38:34 -07:00
compat.h Merge branch 'compat.mount' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2020-10-12 16:44:57 -07:00
compiler_attributes.h Compiler Attributes: fix comment concerning GCC 4.6 2020-08-27 09:53:06 +02:00
compiler_types.h sparse: use static inline for __chk_{user,io}_ptr() 2020-08-29 09:29:32 +02:00
compiler-clang.h compiler-clang: add build check for clang 10.0.1 2020-10-13 18:38:26 -07:00
compiler-gcc.h compiler-gcc: improve version error 2020-10-13 18:38:26 -07:00
compiler-intel.h
compiler.h compiler.h: avoid escaped section names 2020-10-13 18:38:26 -07:00
completion.h
component.h
configfs.h
connector.h
console_struct.h
console.h vt: make vc_data pointers const in selection.h 2020-08-18 13:45:20 +02:00
consolemap.h vt: make vc_data pointers const in selection.h 2020-08-18 13:45:20 +02:00
const.h
container.h
context_tracking_state.h
context_tracking.h compiler.h: Move instrumentation_begin()/end() to new <linux/instrumentation.h> header 2020-07-24 13:56:23 +02:00
cookie.h bpf, net: Rework cookie generator as per-cpu one 2020-09-30 11:50:35 -07:00
cordic.h
coredump.h binfmt_elf, binfmt_elf_fdpic: use a VMA list snapshot 2020-10-16 11:11:21 -07:00
coresight-pmu.h
coresight-stm.h
coresight.h coresight: cti: Don't disable ect device if it's not enabled 2020-09-28 19:47:41 +02:00
count_zeros.h
counter_enum.h
counter.h
cper.h cper,edac,efi: Memory Error Record: bank group/address and chip id 2020-09-17 10:19:52 +03:00
cpu_cooling.h
cpu_pm.h
cpu_rmap.h
cpu.h
cpufeature.h
cpufreq.h cpufreq,arm,arm64: restructure definitions of arch_set_freq_scale() 2020-10-08 17:17:27 +02:00
cpuhotplug.h powerpc updates for 5.10 2020-10-16 12:21:15 -07:00
cpuidle_haltpoll.h
cpuidle.h cpuidle: record state entry rejection statistics 2020-09-23 14:10:31 +02:00
cpumask.h
cpuset.h
crash_core.h printk changes for 5.10 2020-10-13 15:58:10 -07:00
crash_dump.h
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
crypto.h crypto: algapi - introduce the flag CRYPTO_ALG_ALLOCATES_MEMORY 2020-07-16 21:49:09 +10:00
cs5535.h
ctype.h
cuda.h
cyclades.h
dasd_mod.h
davinci_emac.h
dax.h New code for 5.10: 2020-10-14 12:23:00 -07:00
dca.h
dcache.h fscrypt: rename DCACHE_ENCRYPTED_NAME to DCACHE_NOKEY_NAME 2020-09-23 21:29:49 -07:00
dccp.h
dcookies.h
debug_locks.h kernel.h: Move oops_in_progress to printk.h 2020-09-15 13:51:08 +02:00
debugfs.h debugfs: make sure we can remove u32_array files cleanly 2020-07-10 13:54:00 -07:00
debugobjects.h debugobjects: Allow debug_obj_descr to be const 2020-09-24 21:56:24 +02:00
delay.h include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
delayacct.h
delayed_call.h
dev_printk.h printk: move dictionary keys to dev_printk_info 2020-09-22 11:27:48 +02:00
devcoredump.h
devfreq_cooling.h thermal: Update power allocator and devfreq cooling to SPDX licensing 2020-07-30 19:26:10 +02:00
devfreq-event.h PM / devfreq: event: Change prototype of devfreq_event_get_edev_by_phandle function 2020-09-29 17:50:10 +09:00
devfreq.h PM / devfreq: remove a duplicated kernel-doc markup 2020-10-16 07:28:20 +02:00
device_cgroup.h
device-mapper.h dm: remove special-casing of bio-based immutable singleton target on NVMe 2020-10-07 18:08:41 -04:00
device.h dma-mapping updates for 5.10 2020-10-15 14:43:29 -07:00
devpts_fs.h
digsig.h
dim.h
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: fix kernel-doc warning in <linux/dma-buf.h> 2020-09-02 14:39:44 +02:00
dma-direct.h dma-mapping: merge <linux/dma-noncoherent.h> into <linux/dma-map-ops.h> 2020-10-06 07:07:06 +02:00
dma-direction.h dma-mapping: move valid_dma_direction to dma-direction.h 2020-09-25 06:12:25 +02:00
dma-fence-array.h
dma-fence-chain.h
dma-fence.h dma-fence: prime lockdep annotations 2020-07-21 09:42:19 +02:00
dma-heap.h
dma-iommu.h
dma-map-ops.h dma-direct: simplify the DMA_ATTR_NO_KERNEL_MAPPING handling 2020-10-07 11:09:20 +02:00
dma-mapping.h dma-mapping: move dma-debug.h to kernel/dma/ 2020-10-06 07:07:05 +02:00
dma-resv.h dma-buf: Use sequence counter with associated wound/wait mutex 2020-07-29 16:14:25 +02:00
dmaengine.h dmaengine: Mark dma_request_slave_channel() deprecated 2020-09-03 12:21:03 +05:30
dmapool.h
dmar.h iommu/vt-d: Skip TE disabling on quirky gfx dedicated iommu 2020-07-24 14:33:39 +02:00
dmi.h
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 dyndbg: refine export, rename to dynamic_debug_exec_queries() 2020-09-04 17:21:56 +02:00
dynamic_queue_limits.h locking/seqlock, headers: Untangle the spaghetti monster 2020-08-06 16:13:13 +02:00
earlycpio.h
ecryptfs.h
edac.h
edd.h
eeprom_93cx6.h
eeprom_93xx46.h
efi_embedded_fw.h test_firmware: Test platform fw loading on non-EFI systems 2020-09-10 18:19:16 +02:00
efi-bgrt.h
efi.h Merge branch 'efi/urgent' into efi/core, to pick up fixes 2020-10-12 13:38:31 +02:00
efs_vh.h
eisa.h
elevator.h
elf-fdpic.h
elf-randomize.h
elf.h
elfcore-compat.h take fdpic-related parts of elf_prstatus out 2020-07-27 14:29:22 -04:00
elfcore.h kill elf_fpxregs_t 2020-07-27 14:29:23 -04:00
elfnote.h
enclosure.h
energy_model.h
entry-common.h * Misc minor cleanups. 2020-10-12 10:51:02 -07:00
entry-kvm.h entry: Provide infrastructure for work before transitioning to guest mode 2020-07-24 15:03:42 +02:00
err.h
errname.h
errno.h
error-injection.h
errqueue.h
errseq.h
etherdevice.h
ethtool_netlink.h
ethtool.h ethtool: allow netdev driver to define phy tunables 2020-10-06 06:16:01 -07:00
eventfd.h
eventpoll.h
evm.h
export.h export.h: fix section name for CONFIG_TRIM_UNUSED_KSYMS for Clang 2020-10-13 18:38:26 -07:00
exportfs.h include/linux/exportfs.h: drop duplicated word in a comment 2020-08-12 10:57:59 -07:00
ext2_fs.h
extable.h
extcon-provider.h
extcon.h
f2fs_fs.h f2fs: Use generic casefolding support 2020-09-10 14:03:31 -07:00
f75375s.h
falloc.h
fanotify.h fanotify: add support for FAN_REPORT_NAME 2020-07-27 23:24:00 +02:00
fault-inject-usercopy.h lib, include/linux: add usercopy failure capability 2020-10-16 11:11:22 -07:00
fault-inject.h
fb.h Merge drm/drm-next into drm-misc-next 2020-08-12 20:42:08 +02:00
fbcon.h
fcdevice.h
fcntl.h
fd.h
fddidevice.h
fdtable.h
fec.h
fiemap.h
file.h fs: Expand __receive_fd() to accept existing fd 2020-07-13 11:03:45 -07:00
filter.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next 2020-09-23 13:11:11 -07:00
fips.h
firewire.h
firmware-map.h
firmware.h firmware: Add request_partial_firmware_into_buf() 2020-10-05 13:37:04 +02:00
fixp-arith.h
flat.h
flex_proportions.h
font.h drm next for 5.10-rc1 2020-10-15 10:46:16 -07:00
freezer.h freezer: Add unsafe versions of freezable_schedule_timeout_interruptible for NFS 2020-07-17 13:12:44 -04:00
frontswap.h include/linux/frontswap.h: drop duplicated word in a comment 2020-08-12 10:57:57 -07:00
fs_context.h fuse: reject options on reconfigure via fsconfig(2) 2020-07-14 14:45:41 +02:00
fs_enet_pd.h
fs_parser.h fs: fix cast in fsparam_u32hex() macro 2020-09-16 19:12:27 -04:00
fs_pin.h
fs_stack.h
fs_struct.h vfs: Use sequence counter with associated spinlock 2020-07-29 16:14:27 +02:00
fs_types.h
fs_uart_pd.h
fs.h f2fs-for-5.10-rc1 2020-10-16 15:14:43 -07:00
fscache-cache.h
fscache.h
fscrypt.h fscrypt: export fscrypt_d_revalidate() 2020-09-28 14:44:51 -07: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 fsnotify: create method handle_inode_event() in fsnotify_operations 2020-07-27 23:25:50 +02:00
fsnotify.h fsnotify: remove check that source dentry is positive 2020-07-27 23:24:00 +02:00
fsverity.h fs-verity: use smp_load_acquire() for ->i_verity_info 2020-07-21 16:02:41 -07:00
ftrace_irq.h
ftrace.h ftrace: ftrace_global_list is renamed to ftrace_ops_list 2020-10-08 15:29:06 -04:00
futex.h
fwnode.h
gameport.h
gcd.h
genalloc.h
generic-radix-tree.h lib/generic-radix-tree.c: remove unneeded __rcu 2020-08-12 10:57:59 -07:00
genetlink.h
genhd.h block: move the NEED_PART_SCAN flag to struct gendisk 2020-09-23 10:43:18 -06:00
genl_magic_func.h
genl_magic_struct.h
getcpu.h
gfp.h dma-mapping updates for 5.10 2020-10-15 14:43:29 -07:00
glob.h
gnss.h
goldfish.h
gpio_keys.h
gpio-pxa.h
gpio.h
greybus.h
hardirq.h x86/entry: Fix NMI vs IRQ state tracking 2020-07-10 12:00:01 +02:00
hash.h
hashtable.h sched: sch_api: add missing rcu read lock to silence the warning 2020-07-20 17:00:02 -07:00
hdlc.h
hdlcdrv.h
hdmi.h
hid-debug.h
hid-roccat.h
hid-sensor-hub.h
hid-sensor-ids.h
hid.h HID: add vivaldi HID driver 2020-09-30 22:44:26 +02:00
hidden.h x86/boot/compressed: Force hidden visibility for all symbol references 2020-08-14 12:52:34 +02:00
hiddev.h
hidraw.h
highmem.h include/linux/highmem.h: fix duplicated words in a comment 2020-08-12 10:57:57 -07:00
highuid.h
hil_mlc.h
hil.h
hippidevice.h
hmm.h mm/hmm: provide the page mapping order in hmm_range_fault() 2020-07-10 16:24:28 -03:00
host1x.h media: gpu: host1x: mipi: Keep MIPI clock enabled and mutex locked till calibration done 2020-08-28 15:12:38 +02:00
hp_sdc.h
hpet.h
hrtimer_defs.h
hrtimer.h locking/seqlock, headers: Untangle the spaghetti monster 2020-08-06 16:13:13 +02:00
htcpld.h
huge_mm.h include/linux/huge_mm.h: remove mincore_huge_pmd declaration 2020-10-13 18:38:32 -07:00
hugetlb_cgroup.h
hugetlb_inline.h
hugetlb.h mm: and drivers core: Convert hugetlb_report_node_meminfo to sysfs_emit 2020-10-02 13:16:33 +02:00
hw_breakpoint.h hw_breakpoint: Remove unused __register_perf_hw_breakpoint() declaration 2020-08-06 17:54:04 +02:00
hw_random.h
hwmon-sysfs.h
hwmon-vid.h
hwmon.h hwmon: (core) Add support for rated attributes 2020-09-23 09:42:39 -07:00
hwspinlock.h
hyperv.h hv: hyperv.h: Introduce some hvpfn helper functions 2020-09-28 08:55:13 +00:00
hypervisor.h
i2c-algo-bit.h
i2c-algo-pca.h i2c: algo: pca: Reapply i2c bus settings after reset 2020-09-09 10:22:40 +02:00
i2c-algo-pcf.h
i2c-dev.h
i2c-mux.h
i2c-smbus.h
i2c.h Merge branch 'i2c/for-5.9' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux 2020-08-13 18:41:00 -07:00
i8042.h
i8253.h
icmp.h icmp: prepare rfc 4884 for ipv6 2020-07-24 17:12:41 -07:00
icmpv6.h
ide.h ide-gd: stop using the disk events mechanism 2020-09-10 09:32:31 -06:00
idle_inject.h thermal/idle_inject: Fix comment of idle_duration_us and name of latency_ns 2020-10-12 12:08:35 +02:00
idr.h lib/idr.c: document that ida_simple_{get,remove}() are deprecated 2020-10-16 11:11:20 -07:00
ieee80211.h nl80211: extend support to config spatial reuse parameter set 2020-09-28 15:07:41 +02:00
ieee802154.h
if_arp.h
if_bridge.h net: bridge: mcast: rename br_ip's u member to dst 2020-09-23 13:24:34 -07:00
if_eql.h
if_ether.h
if_fddi.h
if_frad.h
if_link.h
if_ltalk.h
if_macvlan.h
if_phonet.h
if_pppol2tp.h
if_pppox.h
if_rmnet.h
if_tap.h
if_team.h
if_tun.h net-tun: Eliminate two tun/xdp related function calls from vhost-net 2020-08-19 14:02:49 -07:00
if_tunnel.h
if_vlan.h vlan: consolidate VLAN parsing code and limit max parsing depth 2020-07-07 15:48:38 -07:00
igmp.h
ihex.h
ima.h LSM: Add "contents" flag to kernel_read_file hook 2020-10-05 13:37:03 +02:00
imx-media.h
in6.h
in.h
indirect_call_wrapper.h
inet_diag.h ip: expose inet sockopts through inet_diag 2020-09-03 15:17:28 -07:00
inet.h
inetdevice.h
init_ohci1394_dma.h
init_syscalls.h init: add an init_dup helper 2020-08-04 21:02:38 -04:00
init_task.h
init.h
initrd.h initrd: remove support for multiple floppies 2020-07-30 08:22:33 +02:00
inotify.h
input-polldev.h
input.h
instrumentation.h compiler.h: Move instrumentation_begin()/end() to new <linux/instrumentation.h> header 2020-07-24 13:56:23 +02:00
instrumented.h instrumented.h: Introduce read-write instrumentation hooks 2020-08-24 15:09:58 -07:00
integrity.h
intel_rapl.h powercap: Add Power Limit4 support 2020-07-27 14:17:36 +02:00
intel_th.h
intel-iommu.h IOMMU Updates for Linux v5.10 2020-10-14 12:08:34 -07:00
intel-ish-client-if.h
intel-pti.h
intel-svm.h drm, iommu: Change type of pasid to u32 2020-09-17 19:21:16 +02:00
interconnect-provider.h Merge branch 'icc-syncstate' into icc-next 2020-09-18 09:13:40 +03:00
interconnect.h interconnect: Add bulk API helpers 2020-09-08 16:28:49 +03:00
interrupt.h tasklet: Introduce new initialization API 2020-07-30 11:16:01 -07:00
interval_tree_generic.h
interval_tree.h
io_uring.h io_uring: move io_uring_get_socket() into io_uring.h 2020-09-30 20:32:33 -06:00
io-64-nonatomic-hi-lo.h iomap: constify ioreadX() iomem argument (as in generic implementation) 2020-08-14 19:56:57 -07:00
io-64-nonatomic-lo-hi.h iomap: constify ioreadX() iomem argument (as in generic implementation) 2020-08-14 19:56:57 -07:00
io-mapping.h io-mapping: indicate mapping failure 2020-07-24 12:42:42 -07:00
io-pgtable.h iommu: Rename iommu_tlb_* functions to iommu_iotlb_* 2020-09-04 11:16:09 +02:00
io.h
ioasid.h
iocontext.h
iomap.h iomap: Allow filesystem to call iomap_dio_complete without i_rwsem 2020-09-28 08:51:08 -07:00
iommu-helper.h
iommu.h IOMMU Updates for Linux v5.10 2020-10-14 12:08:34 -07:00
iopoll.h iopoll: update kerneldoc of read_poll_timeout_atomic() 2020-09-25 16:30:06 +02:00
ioport.h kernel/resource: make iomem_resource implicit in release_mem_region_adjustable() 2020-10-16 11:11:18 -07:00
ioprio.h
iova.h
ip.h
ipack.h
ipc_namespace.h
ipc.h
ipmi_smi.h
ipmi.h ipmi: add retry in try_get_dev_id() 2020-09-16 08:54:53 -05:00
ipv6_route.h
ipv6.h net: ipv6: remove unused arg exact_dif in compute_score 2020-08-31 13:08:10 -07:00
irq_cpustat.h
irq_poll.h
irq_sim.h
irq_work.h
irq.h Merge branch 'irq/qcom-pdc-wakeup' into irq/irqchip-next 2020-10-06 11:28:03 +01:00
irqbypass.h
irqchip.h irqchip: Fix IRQCHIP_PLATFORM_DRIVER_* compilation by including module.h 2020-07-27 08:55:04 +01:00
irqdesc.h genirq: Remove preflow handler support 2020-07-04 10:02:06 +02:00
irqdomain.h Surgery of the MSI interrupt handling to prepare the support of upcoming 2020-10-12 11:40:41 -07:00
irqflags.h lockdep: Only trace IRQ edges 2020-08-26 12:41:56 +02:00
irqhandler.h genirq: Remove preflow handler support 2020-07-04 10:02:06 +02:00
irqnr.h
irqreturn.h
isa.h
isapnp.h PNP: remove the now unused pnp_find_card() function 2020-10-08 18:00:08 +02:00
iscsi_boot_sysfs.h
iscsi_ibft.h
isicom.h
iversion.h
jbd2.h Improvements to ext4's block allocator performance for very large file 2020-08-21 11:03:38 -07:00
jhash.h treewide: Use fallthrough pseudo-keyword 2020-08-23 17:36:59 -05:00
jiffies.h kernel.h: split out min()/max() et al. helpers 2020-10-16 11:11:19 -07:00
journal-head.h
joystick.h
jump_label_ratelimit.h
jump_label.h
jz4740-adc.h
jz4780-nemc.h
kallsyms.h kallsyms: Refactor kallsyms_show_value() to take cred 2020-07-08 15:59:57 -07:00
kasan-checks.h
kasan.h KUnit: KASAN Integration 2020-10-13 18:38:32 -07:00
kbd_diacr.h
kbd_kern.h
kbuild.h
kconfig.h
kcore.h
kcov.h
kcsan-checks.h kcsan: Support compounded read-write instrumentation 2020-08-24 15:09:32 -07:00
kcsan.h
kd.h
kdb.h
kdebug.h
kdev_t.h
kern_levels.h
kernel_read_file.h fs/kernel_file_read: Add "offset" arg for partial reads 2020-10-05 13:37:04 +02:00
kernel_stat.h
kernel-page-flags.h mm: Add PG_arch_2 page flag 2020-09-04 12:46:06 +01:00
kernel.h kernel.h: split out min()/max() et al. helpers 2020-10-16 11:11:19 -07:00
kernelcapi.h
kernfs.h
kexec.h kexec_file: Allow archs to handle special regions while locating memory hole 2020-07-29 23:47:53 +10:00
key-type.h
key.h
keyboard.h
keyctl.h
keyslot-manager.h
kfifo.h
kgdb.h kgdb: Honour the kprobe blocklist when setting breakpoints 2020-09-28 12:14:08 +01:00
khugepaged.h mm: khugepaged: recalculate min_free_kbytes after memory hotplug as expected by khugepaged 2020-10-11 10:31:11 -07:00
klist.h
kmemleak.h
kmod.h
kmsg_dump.h
kobj_map.h
kobject_ns.h
kobject.h kobject: remove unused KOBJ_MAX action 2020-07-23 10:33:12 +02:00
kprobes.h This tree prepares to unify the kretprobe trampoline handler and make 2020-10-12 14:21:15 -07:00
kref.h
ks0108.h
ks8842.h
ks8851_mll.h
ksm.h mm/ksm: Remove reuse_ksm_page() 2020-09-04 09:25:20 -07:00
kthread.h
ktime.h locking/seqlock, headers: Untangle the spaghetti monster 2020-08-06 16:13:13 +02:00
kvm_host.h KVM: arm64: pvtime: Fix stolen time accounting across migration 2020-08-21 14:04:14 +01:00
kvm_irqfd.h kvm/eventfd: Use sequence counter with associated spinlock 2020-07-29 16:14:29 +02:00
kvm_para.h
kvm_types.h KVM: Move x86's version of struct kvm_mmu_memory_cache to common code 2020-07-09 13:29:42 -04:00
l2tp.h
lantiq.h
lapb.h
latencytop.h
lcd.h
lcm.h
led-class-flash.h
led-class-multicolor.h leds: multicolor: Introduce a multicolor class definition 2020-07-22 14:41:29 +02:00
led-lm3530.h
leds-bd2802.h
leds-lp3944.h
leds-lp3952.h
leds-pca9532.h
leds-regulator.h
leds-ti-lmu-common.h include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
leds.h leds: trigger: add support for LED-private device triggers 2020-07-22 14:42:07 +02:00
libata.h libata: implement ATA_HORKAGE_MAX_TRIM_128M and apply to Sandisks 2020-09-02 11:31:23 -06:00
libfdt_env.h
libfdt.h
libgcc.h
libnvdimm.h ACPI: NFIT: Add runtime firmware activate support 2020-07-28 19:29:22 -06:00
libps2.h
license.h
lightnvm.h block: move ->make_request_fn to struct block_device_operations 2020-07-01 07:27:24 -06:00
limits.h
linear_range.h
linkage.h
linkmode.h linkmode: introduce linkmode_intersects() 2020-07-20 17:59:43 -07:00
linux_logo.h
lis3lv02d.h
list_bl.h
list_lru.h
list_nulls.h
list_sort.h
list.h include/linux/list.h: add a macro to test if entry is pointing to the head 2020-10-16 11:11:20 -07:00
livepatch.h
llc.h
llist.h
local_lock_internal.h
local_lock.h
lockdep_types.h lockdep: Fix usage_traceoverflow 2020-10-09 08:53:08 +02:00
lockdep.h Merge branch 'locking/urgent' into locking/core, to pick up fixes 2020-10-09 08:55:17 +02:00
lockref.h
log2.h include/linux/log2.h: add missing () around n in roundup_pow_of_two() 2020-09-05 12:14:30 -07:00
logic_pio.h
lp.h
lru_cache.h
lsm_audit.h
lsm_hook_defs.h LSM: Fix type of id parameter in kernel_post_load_data prototype 2020-10-07 09:23:39 +02:00
lsm_hooks.h LSM: Add "contents" flag to kernel_read_file hook 2020-10-05 13:37:03 +02:00
lz4.h
lzo.h
mailbox_client.h
mailbox_controller.h
maple.h
marvell_phy.h
math64.h math64.h: kernel-docs: Convert some markups into normal comments 2020-10-15 07:49:46 +02:00
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 net: phy: Fixup kernel doc 2020-09-23 18:02:49 -07:00
mei_cl_bus.h
mem_encrypt.h
memblock.h memblock: use separate iterators for memory and reserved regions 2020-10-13 18:38:35 -07:00
memcontrol.h mm: kmem: enable kernel memcg accounting from interrupt contexts 2020-10-18 09:27:09 -07:00
memfd.h
memory_hotplug.h mm/memory_hotplug: MEMHP_MERGE_RESOURCE to specify merging of System RAM resources 2020-10-16 11:11:18 -07:00
memory.h
mempolicy.h include/linux/mempolicy.h: fix typo 2020-08-12 10:57:56 -07:00
mempool.h
memregion.h
memremap.h mm/memremap_pages: support multiple ranges per invocation 2020-10-13 18:38:28 -07:00
memstick.h memstick: Skip allocating card when removing host 2020-09-28 12:16:13 +02:00
mhi.h bus: mhi: Remove unused nr_irqs_req variable 2020-10-02 11:33:47 +02:00
mic_bus.h misc: mic: <linux/mic_bus.h>: drop a duplicated word 2020-07-23 09:35:36 +02:00
micrel_phy.h net: phy: mchp: Add support for LAN8814 QUAD PHY 2020-09-11 17:41:55 -07:00
microchipphy.h
migrate_mode.h
migrate.h mm/migrate: introduce a standard migration target allocation function 2020-08-12 10:58:02 -07:00
mii_timestamper.h
mii.h
min_heap.h
minmax.h kernel.h: split out min()/max() et al. helpers 2020-10-16 11:11:19 -07:00
miscdevice.h include/linux/miscdevice.h - Fix typo/grammar 2020-08-28 12:37:42 +02:00
mISDNdsp.h
mISDNhw.h
mISDNif.h
mm_inline.h mm: replace hpage_nr_pages with thp_nr_pages 2020-08-14 19:56:56 -07:00
mm_types_task.h
mm_types.h Initial support for sharing virtual addresses between the CPU and 2020-10-12 10:40:34 -07:00
mm-arch-hooks.h
mm.h mm/madvise: pass mm to do_madvise 2020-10-18 09:27:09 -07:00
mman.h mm: Introduce arch_validate_flags() 2020-09-04 12:46:07 +01:00
mmap_lock.h mmap locking API: add mmap_lock_is_contended() 2020-10-13 18:38:31 -07:00
mmdebug.h
mmiotrace.h
mmu_context.h cpuidle: Make CPUIDLE_FLAG_TLB_FLUSHED generic 2020-08-26 12:41:53 +02:00
mmu_notifier.h mm/migrate: fix migrate_pgmap_owner w/o CONFIG_MMU_NOTIFIER 2020-08-07 11:33:21 -07:00
mmzone.h include/linux/mmzone.h: remove unused early_pfn_valid() 2020-10-16 11:11:19 -07:00
mnt_namespace.h
mod_devicetable.h soundwire updates for 5.9-rc1 2020-07-23 09:12:15 +02:00
module_signature.h
module.h static_call: Add inline static call infrastructure 2020-09-01 09:58:04 +02:00
moduleloader.h
moduleparam.h Linux 5.9-rc1 2020-08-18 14:14:25 +02:00
most.h
mount.h
moxtet.h
mpage.h
mpi.h lib/mpi: Introduce ec implementation to MPI library 2020-09-25 17:48:54 +10:00
mpls_iptunnel.h
mpls.h
mroute6.h net/ipv6: switch ip6_mroute_setsockopt to sockptr_t 2020-07-24 15:41:54 -07:00
mroute_base.h
mroute.h net/ipv4: switch ip_mroute_setsockopt to sockptr_t 2020-07-24 15:41:54 -07:00
msdos_fs.h
msdos_partition.h
msg.h
msi.h PCI/MSI: Make arch_.*_msi_irq[s] fallbacks selectable 2020-09-16 16:52:37 +02:00
mtio.h
mutex.h locking/seqlock, headers: Untangle the spaghetti monster 2020-08-06 16:13:13 +02:00
mv643xx_eth.h
mv643xx_i2c.h
mv643xx.h
mvebu-pmsu.h
mxm-wmi.h
n_r3964.h
namei.h
nd.h
ndctl.h
net.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net 2020-10-05 18:40:01 -07:00
netdev_features.h net: Fix broken NETIF_F_CSUM_MASK spell in netdev_features.h 2020-09-10 13:30:22 -07:00
netdevice.h net: add function dev_fetch_sw_netstats for fetching pcpu_sw_netstats 2020-10-13 17:33:48 -07:00
netfilter_bridge.h
netfilter_defs.h
netfilter_ingress.h
netfilter_ipv4.h
netfilter_ipv6.h netfilter: avoid ipv6 -> nf_defrag_ipv6 module dependency 2020-08-13 04:16:15 +02:00
netfilter.h netfilter: switch nf_setsockopt to sockptr_t 2020-07-24 15:41:54 -07:00
netlink.h netlink: export policy in extended ACK 2020-10-09 20:22:32 -07:00
netpoll.h netpoll: Remove unused inline function netpoll_netdev_init() 2020-07-15 07:45:25 -07:00
nfs3.h
nfs4.h NFS client updates for Linux 5.9 2020-08-15 08:26:55 -07:00
nfs_fs_i.h
nfs_fs_sb.h NFSv4.2: query the server for extended attribute support 2020-07-13 17:52:45 -04:00
nfs_fs.h NFSv4.2: add client side xattr caching. 2020-07-13 17:52:46 -04:00
nfs_iostat.h
nfs_page.h
nfs_xdr.h pNFS/flexfiles: Be consistent about mirror index types 2020-09-18 09:25:33 -04:00
nfs.h
nfsacl.h
nitro_enclaves.h nitro_enclaves: Add ioctl interface definition 2020-09-22 13:58:40 +02:00
nl802154.h
nls.h
nmi.h
node.h mm: don't panic when links can't be created in sysfs 2020-10-16 11:11:18 -07:00
nodemask.h kernel.h: split out min()/max() et al. helpers 2020-10-16 11:11:19 -07:00
nospec.h asm/rwonce: Don't pull <asm/barrier.h> into 'asm-generic/rwonce.h' 2020-07-21 10:50:36 +01:00
notifier.h notifier: Fix broken error handling pattern 2020-09-01 09:58:03 +02:00
ns_common.h
nsc_gpio.h
nsproxy.h
ntb_transport.h
ntb.h
nubus.h
numa.h mm/memory_hotplug: introduce default phys_to_target_node() implementation 2020-10-13 18:38:27 -07:00
nvme-fc-driver.h nvme-fc: drop a duplicated word in a comment 2020-07-29 07:45:20 +02:00
nvme-fc.h
nvme-rdma.h
nvme-tcp.h
nvme.h nvmet: add passthru code to process commands 2020-07-29 07:45:21 +02:00
nvmem-consumer.h nvmem: core: Add nvmem_cell_read_u8() 2020-07-29 17:12:08 +02:00
nvmem-provider.h nvmem: core: add support to auto devid 2020-07-29 17:12:08 +02:00
nvram.h
objagg.h
objtool.h objtool: Make unwind hint definitions available to other architectures 2020-09-10 10:43:13 -05:00
of_address.h of_address: Add bus type match for pci ranges parser 2020-07-28 22:49:52 +02:00
of_clk.h
of_device.h of/device: Add input id to of_dma_configure() 2020-07-28 15:51:32 +01:00
of_dma.h
of_fdt.h
of_gpio.h
of_graph.h of_graph: add of_graph_is_present() 2020-07-01 10:49:02 +02:00
of_iommu.h of/device: Add input id to of_dma_configure() 2020-07-28 15:51:32 +01:00
of_irq.h of/irq: Make of_msi_map_rid() PCI bus agnostic 2020-07-28 15:51:32 +01:00
of_mdio.h of: add of_mdio_find_device() api 2020-09-24 19:49:36 -07:00
of_net.h
of_pci.h
of_pdt.h
of_platform.h
of_reserved_mem.h
of.h of: Export of_remove_property() to modules 2020-09-05 13:09:03 -07:00
oid_registry.h X.509: support OSCCA certificate parse 2020-09-25 17:48:54 +10:00
olpc-ec.h
omap-dma.h
omap-gpmc.h
omap-iommu.h
omap-mailbox.h
omapfb.h
once.h
oom.h mm, oom_adj: don't loop through tasks in __set_oom_adj when not necessary 2020-10-13 18:38:35 -07:00
openvswitch.h
oprofile.h
osq_lock.h
overflow.h RDMA 5.10 pull request 2020-10-17 11:18:18 -07:00
packing.h
padata.h padata: remove padata_parallel_queue 2020-07-23 17:34:18 +10:00
page_counter.h
page_ext.h
page_idle.h
page_owner.h mm/page_owner: change split_page_owner to take a count 2020-10-16 11:11:15 -07:00
page_ref.h mm/page_ref: Convert the open coded tracepoint enabled to the new helper 2020-09-25 18:01:48 -04:00
page_reporting.h
page-flags-layout.h x86/mm/numa: Remove uninitialized_var() usage 2020-07-16 12:32:25 -07:00
page-flags.h mm,hwpoison: rework soft offline for in-use pages 2020-10-16 11:11:16 -07:00
page-isolation.h
pageblock-flags.h mm/page_alloc.c: remove unnecessary end_bitidx for [set|get]_pfnblock_flags_mask() 2020-08-07 11:33:29 -07:00
pagemap.h mm/readahead: add page_cache_sync_ra and page_cache_async_ra 2020-10-16 11:11:16 -07:00
pagevec.h
pagewalk.h
parman.h
parport_pc.h
parport.h
parser.h
part_stat.h
pata_arasan_cf_data.h
patchkey.h
path.h
pch_dma.h
pci_hotplug.h
pci_ids.h VFIO updates for v5.9-rc1 2020-08-12 12:09:36 -07:00
pci-acpi.h
pci-ats.h PCI/ATS: Add pci_pri_supported() to check device or associated PF 2020-07-24 09:50:41 -05:00
pci-dma-compat.h
pci-ecam.h
pci-ep-cfs.h
pci-epc.h
pci-epf.h
pci-p2pdma.h
pci.h pci-v5.9-changes 2020-08-07 18:48:15 -07:00
pcs-lynx.h net: phy: add Lynx PCS module 2020-08-31 12:52:33 -07:00
pda_power.h
pe.h include: pe.h: Add RISC-V related PE definition 2020-09-11 09:30:01 +03:00
percpu_counter.h percpu_counter: add percpu_counter_sync() 2020-08-07 11:33:26 -07:00
percpu-defs.h
percpu-refcount.h percpu_ref: reduce memory footprint of percpu_ref in fast path 2020-10-06 07:29:36 -06:00
percpu-rwsem.h locking/percpu-rwsem: Use this_cpu_{inc,dec}() for read_count 2020-09-16 16:26:56 +02:00
percpu.h
perf_event.h perf/core: Pull pmu::sched_task() into perf_event_context_sched_out() 2020-09-10 11:19:34 +02:00
perf_regs.h
personality.h
pfn_t.h
pfn.h
pgtable.h arm64 updates for 5.10 2020-10-12 10:00:51 -07:00
phonet.h
phy_fixed.h
phy_led_triggers.h
phy.h net: phy: Document core PHY structures 2020-09-23 18:02:49 -07:00
phylink.h net: phylink: add helper function to decode USXGMII word 2020-08-31 12:52:33 -07:00
pid_namespace.h
pid.h pid: move pidfd_get_pid() to pid.c 2020-10-18 09:27:10 -07:00
pim.h
pipe_fs_i.h pipe: remove pipe_wait() and fix wakeup race with splice 2020-10-01 19:14:36 -07:00
pkeys.h
pktcdvd.h
pl320-ipc.h
pl353-smc.h
platform_device.h
pldmfw.h Add pldmfw library for PLDM firmware update 2020-07-28 17:07:06 -07:00
plist.h
pm2301_charger.h
pm_clock.h
pm_domain.h PM: domains: Rename power state enums for genpd 2020-10-02 19:15:16 +02:00
pm_opp.h Merge branch 'cpufreq/arm/linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm 2020-08-04 12:44:53 +02:00
pm_qos.h
pm_runtime.h PM: runtime: Add kerneldoc comments to multiple helpers 2020-08-04 12:39:28 +02:00
pm_wakeirq.h
pm_wakeup.h
pm-trace.h
pm.h PM: runtime: Fix timer_expires data type on 32-bit arches 2020-09-28 16:38:11 +02:00
pmbus.h
pmu.h
pnfs_osd_xdr.h
pnp.h
poison.h include/linux/poison.h: remove obsolete comment 2020-08-12 10:57:59 -07:00
poll.h
posix_acl_xattr.h
posix_acl.h
posix-clock.h
posix-timers.h posix-cpu-timers: Provide mechanisms to defer timer handling to task_work 2020-08-06 16:50:59 +02:00
power_supply.h power: supply: wilco_ec: Add long life charging mode 2020-07-31 14:33:56 +02:00
powercap.h powercap: make documentation reflect code 2020-09-10 19:27:59 +02:00
ppp_channel.h
ppp_defs.h
ppp-comp.h
pps_kernel.h
pps-gpio.h
pr.h
prandom.h random32: move the pseudo-random 32-bit definitions to prandom.h 2020-08-03 23:24:26 -07:00
preempt.h
prefetch.h i40e: optimise prefetch page refcount 2020-09-14 09:45:34 -07:00
prime_numbers.h
printk.h Merge branch 'printk-rework' into for-linus 2020-10-12 13:01:37 +02:00
proc_fs.h bpf: Refactor to provide aux info to bpf_iter_init_seq_priv_t 2020-07-25 20:16:32 -07:00
proc_ns.h
processor.h
profile.h
projid.h
property.h Driver Core patches for 5.10-rc1 2020-10-14 16:09:32 -07:00
psci.h firmware: psci: Extend psci_set_osi_mode() to allow reset to PC mode 2020-09-22 17:50:32 +02:00
pseudo_fs.h
psi_types.h
psi.h
psp-sev.h
psp-tee.h
pstore_blk.h
pstore_ram.h
pstore_zone.h
pstore.h
ptdump.h
pti.h
ptp_classify.h ptp: add stub function for ptp_get_msgtype() 2020-09-27 13:29:49 -07:00
ptp_clock_kernel.h
ptr_ring.h include/linux: Remove smp_read_barrier_depends() from comments 2020-07-21 10:50:37 +01:00
ptrace.h
purgatory.h
pvclock_gtod.h
pwm_backlight.h
pwm.h
pxa2xx_ssp.h spi: pxa2xx: Drop useless comment in the pxa2xx_ssp.h 2020-08-26 20:15:34 +01:00
pxa168_eth.h
qcom_scm.h media: firmware: qcom_scm: Add memory protect virtual address ranges 2020-09-14 15:45:25 +02:00
qcom-geni-se.h serial: qcom_geni_serial: To correct QUP Version detection logic 2020-09-30 09:12:03 +02:00
qnx6_fs.h
quota.h
quotaops.h quota: simplify the quotactl compat handling 2020-09-17 13:00:46 -04:00
radix-tree.h
raid_class.h
ramfs.h
random.h random32: move the pseudo-random 32-bit definitions to prandom.h 2020-08-03 23:24:26 -07:00
range.h mm/memremap_pages: convert to 'struct range' 2020-10-13 18:38:28 -07:00
ras.h
ratelimit_types.h printk: Make linux/printk.h self-contained 2020-07-27 17:46:24 +09:00
ratelimit.h printk: Make linux/printk.h self-contained 2020-07-27 17:46:24 +09:00
rational.h
rbtree_augmented.h
rbtree_latch.h rbtree_latch: Use seqcount_latch_t 2020-09-10 11:19:29 +02:00
rbtree.h
rcu_node_tree.h
rcu_segcblist.h
rcu_sync.h
rculist_bl.h
rculist_nulls.h
rculist.h These were the main changes in this cycle: 2020-08-03 14:39:35 -07:00
rcupdate_trace.h Merge branch 'rtt-speedup.2020.09.16a' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu into bpf-next 2020-09-23 19:32:09 -07:00
rcupdate_wait.h
rcupdate.h rcu: Introduce single argument kvfree_rcu() interface 2020-06-29 11:59:26 -07:00
rcutiny.h
rcutree.h
rcuwait.h
reboot-mode.h
reboot.h
reciprocal_div.h
refcount.h locking/refcount: Provide __refcount API to obtain the old value 2020-08-26 12:42:02 +02:00
regmap.h regmap: irq: Add support to clear ack registers 2020-10-05 18:35:30 +01:00
regset.h regset: kill user_regset_copyout{,_zero}() 2020-07-27 14:31:13 -04:00
relay.h
remoteproc.h remoteproc: Add remoteproc character device interface 2020-08-04 20:16:37 -07:00
resctrl.h x86/resctrl: Include pid.h 2020-08-18 17:06:15 +02:00
reset-controller.h
reset.h
resource_ext.h
resource.h
restart_block.h
rfkill.h
rhashtable-types.h
rhashtable.h rhashtable: Restore RCU marking on rhash_lock_head 2020-07-28 17:09:49 -07:00
ring_buffer.h ring-buffer: speed up buffer resets by avoiding synchronize_rcu for each CPU 2020-06-30 17:18:56 -04:00
rio_drv.h
rio_ids.h
rio_regs.h
rio.h
rmap.h
rmi.h Input: synaptics-rmi4 - drop a duplicated word 2020-07-21 14:07:51 -07:00
rndis.h
rodata_test.h
root_dev.h
rpmsg.h
rslib.h
rtc.h rtc: cleanup obsolete comment about struct rtc_class_ops 2020-07-16 13:35:25 +02:00
rtmutex.h
rtnetlink.h
rtsx_common.h
rtsx_pci.h misc: rtsx: Use standard PCI definitions 2020-07-22 13:39:31 +02:00
rtsx_usb.h
rwlock_api_smp.h
rwlock_types.h
rwlock.h
rwsem.h rwsem: fix commas in initialisation 2020-07-16 23:19:51 +02:00
s3c_adc_battery.h
sbitmap.h
scatterlist.h lib/scatterlist: Add support in dynamic allocation of SG table from pages 2020-10-05 20:45:45 -03:00
scc.h
sched_clock.h sched_clock: Expose struct clock_read_data 2020-07-20 11:50:47 +01:00
sched.h sched.h: drop in_ubsan field when UBSAN is in trap mode 2020-10-16 11:11:22 -07:00
scif.h scif: Fix spelling of EACCES 2020-09-01 14:18:28 +02:00
scmi_protocol.h firmware: arm_scmi: Remove fixed size fields from reports/scmi_event_header 2020-07-13 09:40:21 +01:00
scpi_protocol.h
screen_info.h
scs.h
sctp.h
scx200_gpio.h
scx200.h
sdb.h
sdla.h
seccomp.h Generic implementation of common syscall, interrupt and exception 2020-08-04 21:00:11 -07:00
securebits.h
security.h LSM: Add "contents" flag to kernel_read_file hook 2020-10-05 13:37:03 +02:00
sed-opal.h
seg6_genl.h
seg6_hmac.h
seg6_iptunnel.h
seg6_local.h
seg6.h
selection.h vc: propagate "viewed as bool" from screenpos up 2020-08-18 13:45:20 +02:00
sem.h
semaphore.h
seq_buf.h
seq_file_net.h
seq_file.h
seqlock.h locking/seqlock: Tweak DEFINE_SEQLOCK() kernel doc 2020-10-07 18:14:14 +02:00
seqno-fence.h
serdev.h
serial_8250.h serial: 8250: Add 8250 port clock update method 2020-07-29 17:14:38 +02:00
serial_bcm63xx.h
serial_core.h serial: core: fix console port-lock regression 2020-09-16 13:22:44 +02: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
sh_clk.h
sh_dma.h
sh_eth.h
sh_intc.h
sh_timer.h
shdma-base.h
shm.h
shmem_fs.h tmpfs: support 64-bit inums per-sb 2020-08-07 11:33:24 -07:00
shrinker.h
signal_types.h
signal.h treewide: Use fallthrough pseudo-keyword 2020-08-23 17:36:59 -05:00
signalfd.h
siox.h
siphash.h
sirfsoc_dma.h
sizes.h
skb_array.h
skbuff.h networking changes for the 5.10 merge window 2020-10-15 18:42:13 -07:00
skmsg.h bpf, sockmap: Allow skipping sk_skb parser program 2020-10-11 18:09:44 -07:00
slab_def.h mm: memcg/slab: use a single set of kmem_caches for all allocations 2020-08-07 11:33:25 -07:00
slab.h include/linux/slab.h: fix a typo error in comment 2020-10-13 18:38:27 -07:00
slimbus.h
slub_def.h mm: memcg/slab: use a single set of kmem_caches for all allocations 2020-08-07 11:33:25 -07:00
sm501-regs.h
sm501.h
smc91x.h
smc911x.h
smp_types.h
smp.h
smpboot.h
smsc911x.h
smscphy.h
sock_diag.h bpf, net: Rework cookie generator as per-cpu one 2020-09-30 11:50:35 -07:00
socket.h iov_iter: Move unnecessary inclusion of crypto/hash.h 2020-06-30 09:34:23 -04:00
sockptr.h net: Revert "net: optimize the sockptr_t for unified kernel/user address spaces" 2020-08-10 12:06:44 -07:00
sonet.h
sony-laptop.h
sonypi.h
sort.h
sound.h
soundcard.h
spinlock_api_smp.h
spinlock_api_up.h
spinlock_types_up.h
spinlock_types.h
spinlock_up.h
spinlock.h
splice.h
spmi.h
sram.h
srcu.h
srcutiny.h
srcutree.h
ssbi.h
stackdepot.h
stackleak.h stackleak: let stack_erasing_sysctl take a kernel pointer buffer 2020-09-19 13:13:39 -07:00
stackprotector.h
stacktrace.h stacktrace: Remove reliable argument from arch_stack_walk() callback 2020-09-18 14:24:16 +01:00
start_kernel.h
stat.h
statfs.h
static_call_types.h static_call: Handle tail-calls 2020-09-01 09:58:06 +02:00
static_call.h static_call: Fix return type of static_call_init 2020-10-02 21:18:25 +02:00
static_key.h
stddef.h
stm.h
stmmac.h stmmac: intel: Adding ref clock 1us tic for LPI cntr 2020-09-28 18:43:57 -07:00
stmp3xxx_rtc_wdt.h
stmp_device.h
stop_machine.h
string_helpers.h lib: string_helpers: provide kfree_strarray() 2020-09-30 10:50:30 +02:00
string.h x86, powerpc: Rename memcpy_mcsafe() to copy_mc_to_{user, kernel}() 2020-10-06 11:18:04 +02:00
stringhash.h
stringify.h
sungem_phy.h
sunserialcore.h
sunxi-rsb.h
superhyway.h
suspend.h PM: rewrite is_hibernate_resume_dev to not require an inode 2020-09-23 10:43:19 -06:00
svga.h
sw842.h
swab.h
swait.h
swap_cgroup.h
swap_slots.h mm/swap_slots.c: remove always zero and unused return value of enable_swap_slots_cache() 2020-10-13 18:38:30 -07:00
swap.h mm: remove activate_page() from unuse_pte() 2020-10-13 18:38:30 -07:00
swapfile.h
swapops.h
swiotlb.h swiotlb: Declare swiotlb_late_init_with_default_size() in header 2020-09-10 09:41:30 -04:00
switchtec.h
sxgbe_platform.h
sync_core.h
sync_file.h
synclink.h
sys_soc.h
sys.h
syscalls.h mm/madvise: introduce process_madvise() syscall: an external memory hinting API 2020-10-18 09:27:10 -07:00
syscore_ops.h
sysctl.h all arch: remove system call sys_sysctl 2020-08-14 19:56:56 -07:00
sysfs.h sysfs: Add sysfs_emit and sysfs_emit_at to format sysfs output 2020-10-02 12:02:30 +02:00
syslog.h
sysrq.h
sysv_fs.h
t10-pi.h
task_io_accounting_ops.h
task_io_accounting.h
task_work.h task_work: teach task_work_add() to do signal_wake_up() 2020-06-30 12:18:08 -06:00
taskstats_kern.h
tboot.h ACPI: Use valid link to the ACPI specification 2020-07-27 14:11:22 +02:00
tc.h
tca6416_keypad.h
tcp.h tcp: record received TOS value in the request socket 2020-09-10 13:15:40 -07:00
tee_drv.h
textsearch_fsm.h
textsearch.h
tfrc.h
thermal.h thermal: cooling: Remove unused variable *tz 2020-10-12 12:08:36 +02:00
thread_info.h
threads.h
thunderbolt.h
ti_wilink_st.h
ti-emif-sram.h
tick.h
tifm.h
timb_dma.h
timb_gpio.h
time32.h
time64.h
time_namespace.h nsproxy: support CLONE_NEWTIME with setns() 2020-07-08 11:14:22 +02:00
time.h locking/seqlock, headers: Untangle the spaghetti monster 2020-08-06 16:13:13 +02:00
timecounter.h
timekeeper_internal.h
timekeeping32.h
timekeeping.h timekeeping: Provide multi-timestamp accessor to NMI safe timekeeper 2020-08-23 10:38:24 +02:00
timer.h timers: Mask invalid flags in do_init_timer() 2020-09-24 22:12:18 +02:00
timerfd.h
timeriomem-rng.h
timerqueue.h
timex.h
tnum.h
topology.h sched/topology: Allow archs to override cpu_smt_mask 2020-09-16 22:05:18 +10:00
torture.h rcutorture: Add races with task-exit processing 2020-06-29 12:01:44 -07:00
toshiba.h
tpm_command.h
tpm_eventlog.h tpm: Require that all digests are present in TCG_PCR_EVENT2 structures 2020-07-24 08:16:01 +03:00
tpm.h tpm: Unify the mismatching TPM space buffer sizes 2020-07-24 09:26:23 +03:00
trace_clock.h
trace_events.h
trace_seq.h
trace.h tracing: Add trace_export support for trace_marker 2020-10-05 12:43:53 +02:00
tracefs.h
tracehook.h
tracepoint-defs.h Updates for tracing and bootconfig: 2020-10-15 15:51:28 -07:00
tracepoint.h tracepoint: Fix overly long tracepoint names 2020-09-08 14:10:59 +02:00
transport_class.h
ts-nbus.h
tsacct_kern.h
tty_driver.h
tty_flip.h
tty_ldisc.h
tty.h
typecheck.h
types.h locking/atomic: Move ATOMIC_INIT into linux/types.h 2020-07-29 16:14:18 +02:00
u64_stats_sync.h
uacce.h drm, iommu: Change type of pasid to u32 2020-09-17 19:21:16 +02:00
uaccess.h lib, uaccess: add failure injection to usercopy functions 2020-10-16 11:11:22 -07:00
ucb1400.h
ucs2_string.h
udp.h
uidgid.h
uio_driver.h
uio.h Merge branch 'work.iov_iter' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2020-10-12 16:35:51 -07:00
umh.h umh: Stop calling do_execve_file 2020-07-04 09:35:36 -05:00
unicode.h unicode: Add utf8_casefold_hash 2020-09-10 14:03:31 -07:00
units.h
uprobes.h
usb_usual.h
usb.h USB: correct API of usb_control_msg_send/recv 2020-09-25 16:33:58 +02:00
usbdevice_fs.h
user_namespace.h
user-return-notifier.h
user.h
userfaultfd_k.h
usermode_driver.h umd: Remove exit_umh 2020-07-07 11:58:59 -05:00
util_macros.h
uts.h
utsname.h
uuid.h uuid: remove unused uuid_le_to_bin() definition 2020-07-20 15:04:32 +02:00
vbox_utils.h virt: vbox: Log unknown ioctl requests as error 2020-07-10 13:45:32 +02:00
vdpa.h vdpa: Modify get_vq_state() to return error code 2020-08-05 19:00:23 -04:00
verification.h
vermagic.h
vexpress.h
vfio.h
vfs.h
vga_switcheroo.h
vgaarb.h vgaarb: mark vga_tryget static 2020-08-01 11:28:17 +02:00
vhost_iotlb.h
via_i2c.h
via-core.h fbdev: via-core: use generic power management 2020-09-08 13:33:11 +02:00
via-gpio.h
via.h
videodev2.h locking/seqlock, headers: Untangle the spaghetti monster 2020-08-06 16:13:13 +02:00
virtio_byteorder.h
virtio_caif.h virtio_caif: correct tags for config space fields 2020-08-05 11:08:41 -04:00
virtio_config.h virtio: Add get_shm_region method 2020-09-10 10:05:58 +02:00
virtio_console.h
virtio_dma_buf.h virtio: add dma-buf support for exported objects 2020-08-18 10:01:44 +02:00
virtio_net.h
virtio_ring.h virtio_ring: sparse warning fixup 2020-08-05 09:30:19 -04:00
virtio_vsock.h
virtio.h virtio: add dma-buf support for exported objects 2020-08-18 10:01:44 +02:00
visorbus.h
vlynq.h
vm_event_item.h Merge branch 'simplify-do_wp_page' 2020-09-04 09:31:54 -07:00
vmacache.h
vmalloc.h
vme.h
vmpressure.h
vmstat.h mm: use self-explanatory macros rather than "2" 2020-10-16 11:11:19 -07:00
vmw_vmci_api.h
vmw_vmci_defs.h misc: vmw_vmci_defs: Mark 'struct vmci_handle VMCI_ANON_SRC_HANDLE' as __maybe_unused 2020-07-10 14:55:25 +02:00
vringh.h
vt_buffer.h
vt_kern.h
vt.h
vtime.h
w1-gpio.h
w1.h w1: Constify struct w1_family_ops 2020-10-05 13:21:49 +02:00
wait_bit.h
wait.h mm: allow a controlled amount of unfairness in the page lock 2020-09-17 10:26:41 -07:00
watch_queue.h pipe: Fix memory leaks in create_pipe_files() 2020-10-01 09:40:35 -04:00
watchdog.h watchdog: add support for adjusting last known HW keepalive time 2020-08-05 18:43:02 +02:00
win_minmax.h
wireless.h
wkup_m3_ipc.h include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
wl12xx.h
wm97xx.h
wmi.h
workqueue.h
writeback.h
ww_mutex.h locking/seqlock, headers: Untangle the spaghetti monster 2020-08-06 16:13:13 +02:00
xarray.h XArray: add xas_split 2020-10-16 11:11:15 -07:00
xattr.h Highlights: 2020-08-09 13:58:04 -07:00
xxhash.h include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
xz.h include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
yam.h
z2_battery.h
zbud.h
zconf.h
zlib.h include/: replace HTTP links with HTTPS ones 2020-08-12 10:57:59 -07:00
zorro.h
zpool.h
zsmalloc.h
zstd.h
zutil.h