linux_dsm_epyc7002/include/linux
Maarten Lankhorst e941759c74 fence: dma-buf cross-device synchronization (v18)
A fence can be attached to a buffer which is being filled or consumed
by hw, to allow userspace to pass the buffer without waiting to another
device.  For example, userspace can call page_flip ioctl to display the
next frame of graphics after kicking the GPU but while the GPU is still
rendering.  The display device sharing the buffer with the GPU would
attach a callback to get notified when the GPU's rendering-complete IRQ
fires, to update the scan-out address of the display, without having to
wake up userspace.

A driver must allocate a fence context for each execution ring that can
run in parallel. The function for this takes an argument with how many
contexts to allocate:
  + fence_context_alloc()

A fence is transient, one-shot deal.  It is allocated and attached
to one or more dma-buf's.  When the one that attached it is done, with
the pending operation, it can signal the fence:
  + fence_signal()

To have a rough approximation whether a fence is fired, call:
  + fence_is_signaled()

The dma-buf-mgr handles tracking, and waiting on, the fences associated
with a dma-buf.

The one pending on the fence can add an async callback:
  + fence_add_callback()

The callback can optionally be cancelled with:
  + fence_remove_callback()

To wait synchronously, optionally with a timeout:
  + fence_wait()
  + fence_wait_timeout()

When emitting a fence, call:
  + trace_fence_emit()

To annotate that a fence is blocking on another fence, call:
  + trace_fence_annotate_wait_on(fence, on_fence)

A default software-only implementation is provided, which can be used
by drivers attaching a fence to a buffer when they have no other means
for hw sync.  But a memory backed fence is also envisioned, because it
is common that GPU's can write to, or poll on some memory location for
synchronization.  For example:

  fence = custom_get_fence(...);
  if ((seqno_fence = to_seqno_fence(fence)) != NULL) {
    dma_buf *fence_buf = seqno_fence->sync_buf;
    get_dma_buf(fence_buf);

    ... tell the hw the memory location to wait ...
    custom_wait_on(fence_buf, seqno_fence->seqno_ofs, fence->seqno);
  } else {
    /* fall-back to sw sync * /
    fence_add_callback(fence, my_cb);
  }

On SoC platforms, if some other hw mechanism is provided for synchronizing
between IP blocks, it could be supported as an alternate implementation
with it's own fence ops in a similar way.

enable_signaling callback is used to provide sw signaling in case a cpu
waiter is requested or no compatible hardware signaling could be used.

The intention is to provide a userspace interface (presumably via eventfd)
later, to be used in conjunction with dma-buf's mmap support for sw access
to buffers (or for userspace apps that would prefer to do their own
synchronization).

v1: Original
v2: After discussion w/ danvet and mlankhorst on #dri-devel, we decided
    that dma-fence didn't need to care about the sw->hw signaling path
    (it can be handled same as sw->sw case), and therefore the fence->ops
    can be simplified and more handled in the core.  So remove the signal,
    add_callback, cancel_callback, and wait ops, and replace with a simple
    enable_signaling() op which can be used to inform a fence supporting
    hw->hw signaling that one or more devices which do not support hw
    signaling are waiting (and therefore it should enable an irq or do
    whatever is necessary in order that the CPU is notified when the
    fence is passed).
v3: Fix locking fail in attach_fence() and get_fence()
v4: Remove tie-in w/ dma-buf..  after discussion w/ danvet and mlankorst
    we decided that we need to be able to attach one fence to N dma-buf's,
    so using the list_head in dma-fence struct would be problematic.
v5: [ Maarten Lankhorst ] Updated for dma-bikeshed-fence and dma-buf-manager.
v6: [ Maarten Lankhorst ] I removed dma_fence_cancel_callback and some comments
    about checking if fence fired or not. This is broken by design.
    waitqueue_active during destruction is now fatal, since the signaller
    should be holding a reference in enable_signalling until it signalled
    the fence. Pass the original dma_fence_cb along, and call __remove_wait
    in the dma_fence_callback handler, so that no cleanup needs to be
    performed.
v7: [ Maarten Lankhorst ] Set cb->func and only enable sw signaling if
    fence wasn't signaled yet, for example for hardware fences that may
    choose to signal blindly.
v8: [ Maarten Lankhorst ] Tons of tiny fixes, moved __dma_fence_init to
    header and fixed include mess. dma-fence.h now includes dma-buf.h
    All members are now initialized, so kmalloc can be used for
    allocating a dma-fence. More documentation added.
v9: Change compiler bitfields to flags, change return type of
    enable_signaling to bool. Rework dma_fence_wait. Added
    dma_fence_is_signaled and dma_fence_wait_timeout.
    s/dma// and change exports to non GPL. Added fence_is_signaled and
    fence_enable_sw_signaling calls, add ability to override default
    wait operation.
v10: remove event_queue, use a custom list, export try_to_wake_up from
    scheduler. Remove fence lock and use a global spinlock instead,
    this should hopefully remove all the locking headaches I was having
    on trying to implement this. enable_signaling is called with this
    lock held.
v11:
    Use atomic ops for flags, lifting the need for some spin_lock_irqsaves.
    However I kept the guarantee that after fence_signal returns, it is
    guaranteed that enable_signaling has either been called to completion,
    or will not be called any more.

    Add contexts and seqno to base fence implementation. This allows you
    to wait for less fences, by testing for seqno + signaled, and then only
    wait on the later fence.

    Add FENCE_TRACE, FENCE_WARN, and FENCE_ERR. This makes debugging easier.
    An CONFIG_DEBUG_FENCE will be added to turn off the FENCE_TRACE
    spam, and another runtime option can turn it off at runtime.
v12:
    Add CONFIG_FENCE_TRACE. Add missing documentation for the fence->context
    and fence->seqno members.
v13:
    Fixup CONFIG_FENCE_TRACE kconfig description.
    Move fence_context_alloc to fence.
    Simplify fence_later.
    Kill priv member to fence_cb.
v14:
    Remove priv argument from fence_add_callback, oops!
v15:
    Remove priv from documentation.
    Explicitly include linux/atomic.h.
v16:
    Add trace events.
    Import changes required by android syncpoints.
v17:
    Use wake_up_state instead of try_to_wake_up. (Colin Cross)
    Fix up commit description for seqno_fence. (Rob Clark)
v18:
    Rename release_fence to fence_release.
    Move to drivers/dma-buf/.
    Rename __fence_is_signaled and __fence_signal to *_locked.
    Rename __fence_init to fence_init.
    Make fence_default_wait return a signed long, and fix wait ops too.

Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com> #use smp_mb__before_atomic()
Acked-by: Sumit Semwal <sumit.semwal@linaro.org>
Acked-by: Daniel Vetter <daniel@ffwll.ch>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2014-07-08 12:18:56 -07:00
..
amba Merge branch 'for-linus' of git://git.infradead.org/users/vkoul/slave-dma 2014-06-10 10:28:45 -07:00
bcma Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus 2014-01-30 17:20:32 -08:00
byteorder
can can: unify identifiers to ensure unique include processing 2014-05-19 09:38:24 +02:00
ceph Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client 2014-06-12 23:06:23 -07:00
clk Merge branch 'for-v3.16/ti-clk-drv' of github.com:t-kristo/linux-pm into clk-next 2014-06-10 16:53:25 -07:00
crush crush: add SET_CHOOSELEAF_VARY_R step 2014-04-04 21:07:28 -07:00
decompress lib/decompress_inflate.c: include appropriate header file 2014-04-03 16:21:12 -07:00
dma
extcon extcon: Move OF helper function to extcon core and change function name 2014-03-19 14:41:58 +09:00
fsl/bestcomm
gpio gpio: include linux/bug.h in interface header 2014-05-16 17:52:36 +02:00
hsi HSI: Introduce driver for SSI Protocol 2014-05-16 00:55:30 +02:00
i2c This pull-request contains some misplaced patches from Tony 2014-06-12 12:42:32 -07:00
iio iio: Add TEMP_AMBIENT and TEMP_OBJECT channel modifiers 2014-05-03 11:35:23 +01:00
input Input: add common DT binding for touchscreens 2014-05-29 00:05:59 -07:00
irqchip irqchip: gic: Use mask field in GICC_IAR 2014-05-19 00:35:23 +00:00
isdn isdn/capi: move capi_info2str to capidrv.c 2014-06-04 23:13:41 -07:00
lockd nfsd: remove <linux/nfsd/nfsfh.h> 2014-05-06 17:54:53 -04:00
mfd rtc: s5m: use shorter time of register update 2014-06-10 15:34:47 -07:00
mlx4 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2014-06-12 14:27:40 -07:00
mlx5 mlx5_core: Store MR attributes in mlx5_mr_core during creation and after UMR 2014-05-27 11:53:06 -07:00
mmc mmc: sdhci: track whether preset mode is currently enabled in hardware 2014-05-22 08:33:30 -04:00
mtd MTD updates for 3.16: 2014-06-11 08:35:34 -07:00
netfilter netfilter: nfnetlink_acct: Adding quota support to accounting framework 2014-04-29 18:25:14 +02:00
netfilter_arp
netfilter_bridge
netfilter_ipv4
netfilter_ipv6
phy phy: core: make NULL a valid phy reference if !CONFIG_GENERIC_PHY 2014-04-24 12:53:38 -07:00
pinctrl
platform_data New driver for Sensirion SHTC1 humidity / temperature sensor 2014-06-14 14:43:23 -07:00
power
raid
regulator Merge remote-tracking branch 'regulator/fix/core' into regulator-linus 2014-06-16 16:05:56 +01:00
rtc
sched mm: update comment for DEFAULT_MAX_MAP_COUNT 2014-06-04 16:54:05 -07:00
spi Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2014-06-12 14:27:40 -07:00
ssb ssb: sprom: add dev_id field for value overriding standard ID 2014-05-19 16:42:15 -04:00
sunrpc NFS client updates for Linux 3.16 2014-06-10 15:02:42 -07:00
unaligned
usb Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2014-06-12 14:27:40 -07:00
uwb
wimax
8250_pci.h
a.out.h
acct.h
acpi_dma.h acpi-dma: convert to return error code when asked for channel 2014-02-11 23:30:50 +05:30
acpi_pmtmr.h
acpi.h Merge branch 'acpi-enumeration' 2014-06-03 23:12:20 +02:00
adb.h
adfs_fs.h
aer.h
agp_backend.h
agpgart.h
ahci_platform.h libahci_platform: add host_flags parameter in ahci_platform_init_host() 2014-05-14 13:07:10 -04:00
aio.h
alarmtimer.h
altera_jtaguart.h
altera_uart.h
amd-iommu.h
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h
apm_bios.h
apm-emulation.h
apple_bl.h
arcdevice.h
arm-cci.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 ath9k: Allow platform override without EEPROM override 2014-05-07 16:08:08 -04:00
atm_suni.h
atm_tcp.h
atm.h
atmdev.h
atmel_pdc.h
atmel_pwm.h
atmel_serial.h
atmel_tc.h
atmel-mci.h
atmel-pwm-bl.h
atmel-ssc.h ASoC: atmel_ssc_dai: make option to choose clock 2014-02-12 17:21:22 +00:00
atomic.h arch: Prepare for smp_mb__{before,after}_atomic() 2014-04-18 11:40:30 +02:00
attribute_container.h
audit.h AUDIT: make audit_is_compat depend on CONFIG_AUDIT_COMPAT_GENERIC 2014-04-10 17:51:29 -04:00
auto_dev-ioctl.h
auto_fs.h
auxvec.h
average.h
b1pcmcia.h
backing-dev.h bdi: avoid oops on device removal 2014-04-03 16:20:49 -07:00
backlight.h backlight: Add backlight device (un)registration notification 2014-05-27 01:29:01 +02:00
balloon_compaction.h
basic_mmio_gpio.h gpio: generic: Add label to platform data 2014-02-06 10:33:47 +01:00
bcd.h
bch.h
bcm47xx_wdt.h
bfin_mac.h
binfmts.h exec: kill bprm->tcomm[], simplify the "basename" logic 2014-04-07 16:36:05 -07:00
bio.h block: add support for limiting gaps in SG lists 2014-06-24 16:22:24 -06:00
bit_spinlock.h
bitmap.h
bitops.h arch: Prepare for smp_mb__{before,after}_atomic() 2014-04-18 11:40:30 +02:00
bitrev.h
blk_types.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2014-06-12 10:30:18 -07:00
blk-iopoll.h block: remove old blk_iopoll_enabled variable 2014-03-13 09:38:42 -06:00
blk-mq.h blk-mq: bitmap tag: fix races on shared ::wake_index fields 2014-06-17 22:12:35 -07:00
blkdev.h block: add support for limiting gaps in SG lists 2014-06-24 16:22:24 -06:00
blktrace_api.h
blockgroup_lock.h
bma150.h
bootmem.h include/linux/bootmem.h: cleanup the comment for BOOTMEM_ flags 2014-06-04 16:54:04 -07:00
bottom_half.h
brcmphy.h net: phy: add Broadcom BCM7xxx internal PHY driver 2014-02-14 00:27:58 -05:00
bsearch.h
bsg-lib.h
bsg.h
btree-128.h
btree-type.h
btree.h
btrfs.h
buffer_head.h fs/buffer.c: remove block_write_full_page_endio() 2014-06-04 16:54:02 -07:00
bug.h
c2port.h
cache.h
capability.h fs,userns: Change inode_capable to capable_wrt_inode_uidgid 2014-06-10 13:57:22 -07:00
cb710.h
cciss_ioctl.h
ccp.h crypto: ccp - Move HMAC calculation down to ccp ops file 2014-02-09 09:59:23 +08:00
cdev.h
cdrom.h
cfag12864b.h
cgroup_subsys.h cgroup: disallow debug controller on the default hierarchy 2014-05-19 16:37:06 -04:00
cgroup.h Merge branch 'for-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu 2014-06-09 14:56:07 -07:00
circ_buf.h
cleancache.h
clk-private.h
clk-provider.h The clock framework changes for 3.16 are pretty typical: mostly clock 2014-06-07 20:27:30 -07:00
clk.h clk: add pr_debug & kerneldoc around clk notifiers 2014-02-24 17:13:55 -08:00
clkdev.h
clksrc-dbx500-prcmu.h
clockchips.h tick: Fixup more fallout from hrtimer broadcast mode 2014-02-09 15:11:47 +01:00
clocksource.h of: consolidate linker section OF match table declarations 2014-05-20 14:25:24 -05:00
cm4000_cs.h
cmdline-parser.h
cn_proc.h
cnt32_to_63.h
coda_psdev.h
coda.h
com20020.h
compaction.h mm, compaction: embed migration mode in compact_control 2014-06-04 16:54:06 -07:00
compat.h Merge branch 'x86-x32-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-04-02 12:51:41 -07:00
compiler-clang.h LLVMLinux: Add support for clang to compiler.h and new compiler-clang.h 2014-04-09 13:44:35 -07:00
compiler-gcc3.h
compiler-gcc4.h compiler/gcc4: Make quirk for asm_volatile_goto() unconditional 2014-02-13 12:34:05 +01:00
compiler-gcc.h
compiler-intel.h compiler-intel.h: Remove duplicate definition 2014-04-15 09:15:39 -07:00
compiler.h Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-06-12 19:18:49 -07:00
completion.h
component.h component: add support for component match array 2014-07-03 11:32:43 +01:00
concap.h
configfs.h
connector.h connector: allow multiple messages to be sent in one packet 2014-05-27 13:56:21 -07:00
console_struct.h console: Use explicit pointer type for vc_uni_pagedir* fields 2014-05-28 13:37:21 -07:00
console.h
consolemap.h
container.h
context_tracking_state.h
context_tracking.h
cordic.h
coredump.h
cper.h
cpu_cooling.h
cpu_pm.h
cpu_rmap.h
cpu.h idle: remove cpu_idle() forward declarations 2014-06-06 16:08:18 -07:00
cpufeature.h cpu: add generic support for CPU feature based module autoloading 2014-02-18 12:38:37 -08:00
cpufreq.h cpufreq: add support for intermediate (stable) frequencies 2014-06-05 23:32:29 +02:00
cpuidle.h Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus 2014-06-09 18:10:34 -07:00
cpumask.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2014-06-12 14:27:40 -07:00
cpuset.h mm: page_alloc: use jump labels to avoid checking number_of_cpusets 2014-06-04 16:54:08 -07:00
cputime.h cputime: Bring cputime -> nsecs conversion 2014-03-13 15:56:44 +01:00
crash_dump.h include/linux/crash_dump.h: add vmcore_cleanup() prototype 2014-04-07 16:36:06 -07:00
crc7.h lib/crc7: Shift crc7() output left 1 bit 2014-05-16 14:26:52 -04:00
crc8.h
crc16.h
crc32.h
crc32c.h
crc-ccitt.h
crc-itu-t.h
crc-t10dif.h
cred.h kernel/groups.c: remove return value of set_groups 2014-04-03 16:21:05 -07:00
crypto.h
cryptohash.h
cryptouser.h
cs5535.h
ctype.h
cuda.h
cyclades.h
cycx_x25.h
davinci_emac.h
dca.h
dcache.h dentry_kill(): don't try to remove from shrink list 2014-05-01 10:30:00 -04:00
dccp.h
dcookies.h
debug_locks.h
debugfs.h
debugobjects.h
delay.h
delayacct.h
dell-led.h dell-led: add mic mute led interface 2014-05-08 14:28:07 +08:00
devfreq.h PM / devfreq: Add devm_devfreq_{register,unregister}_opp_notfier function 2014-05-24 22:33:41 +09:00
device_cgroup.h
device-mapper.h dm: remove symbol export for dm_set_device_limits 2014-06-04 09:46:34 -04:00
device.h devres: remove devm_request_and_ioremap() 2014-06-19 20:01:36 -07:00
devpts_fs.h
digsig.h
dio.h
dirent.h
dlm_plock.h
dlm.h
dm9000.h
dm-dirty-log.h
dm-io.h
dm-kcopyd.h
dm-region-hash.h
dma_remapping.h
dma-attrs.h
dma-buf.h dma-buf: update debugfs output 2014-02-13 10:08:52 +05:30
dma-contiguous.h cma: add placement specifier for "cma=" kernel parameter 2014-06-04 16:53:57 -07:00
dma-debug.h
dma-direction.h
dma-mapping.h Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm into next 2014-06-05 15:57:04 -07:00
dmaengine.h Merge branch 'for-linus' of git://git.infradead.org/users/vkoul/slave-dma 2014-06-10 10:28:45 -07:00
dmapool.h
dmar.h iommu/vt-d: Change scope lists to struct device, bus, devfn 2014-03-24 14:05:08 +00: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: Define the size of res_opts->cpu_mask in a single place 2014-02-17 16:46:48 +01:00
drbd_limits.h
drbd.h drbd: Test cstate while holding req_lock 2014-04-30 13:46:56 -06:00
ds1286.h
ds2782_battery.h
ds17287rtc.h
dtlk.h
dw_apb_timer.h
dw_dmac.h dma: dw: remove leftovers in the comment blocks 2014-02-17 14:16:54 +05:30
dynamic_debug.h
dynamic_queue_limits.h
earlycpio.h
ecryptfs.h
edac.h
edd.h
edma.h
eeprom_93cx6.h
eeprom_93xx46.h
efi-bgrt.h
efi.h efi: Add shared FDT related functions for ARM/ARM64 2014-04-30 19:49:57 +01:00
efs_vh.h
eisa.h
elevator.h Revert "block: add __init to elv_register" 2014-06-22 16:34:11 -06:00
elf-fdpic.h
elf.h
elfcore-compat.h
elfcore.h
elfnote.h
enclosure.h
err.h err.h: use bool for IS_ERR and IS_ERR_OR_NULL 2014-04-03 16:21:06 -07:00
errno.h
errqueue.h
etherdevice.h
ethtool.h ethtool: Replace ethtool_ops::{get,set}_rxfh_indir() with {get,set}_rxfh() 2014-06-03 02:42:44 +01:00
eventfd.h
eventpoll.h
evm.h
export.h
exportfs.h
ext2_fs.h
extcon.h extcon: Add devm_extcon_dev_allocate/free to manage the resource of extcon device 2014-04-29 09:45:56 +09:00
f2fs_fs.h f2fs: large volume support 2014-06-04 13:34:30 +09:00
f75375s.h
falloc.h
fanotify.h
fault-inject.h
fb.h fbdev/fb.h: silence warning with -Wsign-compare 2014-05-02 15:57:42 +03:00
fcdevice.h
fcntl.h
fd.h
fddidevice.h
fdtable.h get rid of files_defer_init() 2014-04-01 23:19:14 -04:00
fec.h
fence.h fence: dma-buf cross-device synchronization (v18) 2014-07-08 12:18:56 -07:00
file.h get rid of fget_light() 2014-03-10 11:44:42 -04:00
filter.h net: filter: cleanup A/X name usage 2014-06-11 00:13:16 -07:00
fips.h
firewire.h ALSA: firewire/bebob: Add a workaround for M-Audio special Firewire series 2014-05-26 14:33:10 +02:00
firmware-map.h
firmware.h
fixp-arith.h
flat.h
flex_array.h
flex_proportions.h
fmc-sdb.h FMC: show_sdb_tree: dump synthesis/commit ID info 2014-02-28 15:12:09 -08:00
fmc.h
font.h
freezer.h
frontswap.h
fs_enet_pd.h
fs_stack.h
fs_struct.h
fs_uart_pd.h
fs.h File locking related bugfixes for v3.16 (pile #2) 2014-06-21 16:40:30 -10:00
fscache-cache.h
fscache.h
fsl_devices.h
fsl_hypervisor.h
fsl_ifc.h driver/memory:Move Freescale IFC driver to a common driver 2014-02-18 12:20:45 -08:00
fsl-diu-fb.h
fsnotify_backend.h fanotify: convert access_mutex to spinlock 2014-04-03 16:20:51 -07:00
fsnotify.h
ftrace_event.h tracing: Add __bitmask() macro to trace events to cpumasks and other bitmasks 2014-05-15 11:29:37 -04:00
ftrace_irq.h
ftrace.h Lots of tweaks, small fixes, optimizations, and some helper functions 2014-06-09 16:39:15 -07:00
futex.h futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test 2014-03-03 11:32:08 +01:00
gameport.h
gcd.h
genalloc.h
genetlink.h
genhd.h arch: Mass conversion of smp_mb__*() 2014-04-18 14:20:48 +02:00
genl_magic_func.h
genl_magic_struct.h
getcpu.h
gfp.h include/linux/gfp.h: exclude duplicate header 2014-06-04 16:54:10 -07:00
goldfish.h goldfish: fix >> 32 warning 2014-05-20 10:30:40 +09:00
gpio_keys.h Input: gpio_keys - convert struct descriptions to kernel-doc 2014-05-14 16:39:49 -07:00
gpio_mouse.h
gpio-fan.h
gpio-pxa.h
gpio.h Merge branch 'master' into for-next 2014-02-20 14:54:28 +01:00
gsmmux.h
hardirq.h genirq: Provide synchronize_hardirq() 2014-02-19 17:22:44 +01:00
hash.h
hashtable.h
hdlc.h
hdlcdrv.h
hdmi.h drm/docs: Include hdmi infoframe helper reference 2014-03-13 12:48:32 +01:00
hid-debug.h
hid-roccat.h
hid-sensor-hub.h iio: hid-sensors: Add API to power on/off 2014-05-05 10:59:49 +01:00
hid-sensor-ids.h iio: hid-sensors: Added device rotation support 2014-04-29 22:11:53 +01:00
hid.h Merge branches 'for-3.16/i2c-hid', 'for-3.16/rmi4', 'for-3.16/sony' and 'for-3.16/thingm' into for-linus 2014-06-04 13:09:43 +02:00
hiddev.h
hidraw.h
highmem.h
highuid.h
hil_mlc.h
hil.h
hippidevice.h
host1x.h gpu: host1x: export host1x_syncpt_incr_max() function 2014-04-04 09:12:49 +02:00
hp_sdc.h
hpet.h
hrtimer.h hrtimer: Rearrange comments in the order struct members are declared 2014-03-20 12:35:45 +01:00
htcpld.h
htirq.h
huge_mm.h mm: close PageTail race 2014-03-04 07:55:47 -08:00
hugetlb_cgroup.h cgroup: clean up cgroup_subsys names and initialization 2014-02-08 10:36:58 -05:00
hugetlb_inline.h
hugetlb.h hugetlb: rename hugepage_migration_support() to ..._supported() 2014-06-04 16:54:12 -07:00
hw_breakpoint.h
hw_random.h virtio-rng: fixes for device registration/unregistration 2014-05-19 09:26:40 +09:30
hwmon-sysfs.h
hwmon-vid.h
hwmon.h
hwspinlock.h
hyperv.h Drivers: hv: vmbus: Implement per-CPU mapping of relid to channel 2014-05-03 19:24:26 -04:00
i2c-algo-bit.h
i2c-algo-pca.h
i2c-algo-pcf.h
i2c-dev.h
i2c-gpio.h
i2c-mux-gpio.h
i2c-mux-pinctrl.h
i2c-mux.h
i2c-ocores.h
i2c-omap.h
i2c-pca-platform.h
i2c-pnx.h
i2c-pxa.h
i2c-smbus.h Update Jean Delvare's e-mail address 2014-01-29 20:40:08 +01:00
i2c-xiic.h
i2c.h i2c: add deprecation warning for class based instantiation 2014-03-05 17:16:45 +01:00
i2o.h
i7300_idle.h
i8042.h
i8253.h
i82593.h
icmp.h
icmpv6.h
ide.h
idr.h idr: reorder the fields 2014-06-06 16:08:13 -07:00
ieee80211.h wireless: add missing WLAN_EID_BSS_INTOLERANT_CHL_REPORT 2014-05-28 16:22:47 +02:00
if_arp.h
if_bridge.h bridge: memorize and export selected IGMP/MLD querier port 2014-06-10 23:50:47 -07:00
if_eql.h
if_ether.h
if_fddi.h
if_frad.h
if_link.h net-next:v4: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool. 2014-05-23 15:04:02 -04:00
if_ltalk.h
if_macvlan.h macvlan: add netpoll support 2014-06-02 16:05:24 -07:00
if_phonet.h
if_pppol2tp.h
if_pppox.h
if_team.h team: fix mtu setting 2014-06-02 14:56:01 -07:00
if_tun.h
if_tunnel.h
if_vlan.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2014-05-24 00:32:30 -04:00
igmp.h
ihex.h
ima.h
in6.h
in.h
inet_diag.h
inet_lro.h
inet.h
inetdevice.h
init_ohci1394_dma.h
init_task.h Linux 3.13 2014-03-07 11:41:32 -05:00
init.h init.h: Update initcall_sync variants to fix build errors 2014-05-27 14:26:31 -07:00
initrd.h
inotify.h
input-polldev.h Input: implement managed polled input devices 2014-05-14 16:40:04 -07:00
input.h
integrity.h
intel_mid_dma.h
intel_pmic_gpio.h
intel-iommu.h iommu/vt-d: Store PCI segment number in struct intel_iommu 2014-03-24 14:07:31 +00:00
interrupt.h Merge commit '3cf2f34' into sched/core, to fix build error 2014-06-12 13:46:37 +02:00
interval_tree_generic.h
interval_tree.h
io-mapping.h
io.h Kconfig: rename HAS_IOPORT to HAS_IOPORT_MAP 2014-04-07 16:36:11 -07:00
ioc3.h
ioc4.h
iocontext.h
iommu-helper.h
iommu.h
ioport.h vsprintf: Add support for IORESOURCE_UNSET in %pR 2014-02-26 14:42:09 -07:00
ioprio.h
iova.h iommu/vt-d: Update IOMMU state when memory hotplug happens 2014-03-04 17:51:06 +01:00
ip.h
ipack.h
ipc_namespace.h ipc,mqueue: remove limits for the amount of system-wide queues 2014-02-25 15:25:45 -08:00
ipc.h ipc: change kern_ipc_perm.deleted type to bool 2014-01-27 21:02:39 -08:00
ipmi_smi.h ipmi: boolify some things 2014-04-17 12:30:40 -07:00
ipmi-fru.h
ipmi.h ipmi: Turn off all activity on an idle ipmi interface 2014-04-17 12:23:07 -07:00
ipv6_route.h
ipv6.h
irq_cpustat.h
irq_work.h perf/x86: Warn to early_printk() in case irq_work is too slow 2014-02-21 21:49:07 +01:00
irq.h genirq: Remove dynamic_irq mess 2014-05-16 14:05:22 +02:00
irqchip.h
irqdesc.h genirq: Sanitize spurious interrupt detection of threaded irqs 2014-05-03 23:15:39 +02:00
irqdomain.h
irqflags.h
irqnr.h
irqreturn.h
isa.h
isapnp.h module: remove MODULE_GENERIC_TABLE 2014-03-13 12:11:00 +10:30
iscsi_boot_sysfs.h
iscsi_ibft.h
isdn_divertif.h
isdn_ppp.h net: isdn: use sk_unattached_filter api 2014-03-31 00:45:09 -04:00
isdn.h
isdnif.h
isicom.h
jbd2.h
jbd_common.h
jbd.h
jhash.h
jiffies.h
journal-head.h
joystick.h
jump_label_ratelimit.h
jump_label.h include/linux/jump_label.h: expose the reference count 2014-06-04 16:54:08 -07:00
jz4740-adc.h
kallsyms.h
kbd_diacr.h
kbd_kern.h
kbuild.h
kcmp.h
kconfig.h
kcore.h
kd.h
kdb.h
kdebug.h
kdev_t.h
kern_levels.h
kernel_stat.h Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-04-01 11:22:57 -07:00
kernel-page-flags.h
kernel.h Nothing major: the stricter permissions checking for sysfs broke 2014-04-06 09:38:07 -07:00
kernelcapi.h
kernfs.h kernfs: kernfs_notify() must be useable from non-sleepable contexts 2014-07-02 09:32:09 -07:00
kexec.h kexec/compat: convert to COMPAT_SYSCALL_DEFINE with changing parameter types 2014-03-06 16:30:46 +01:00
key-type.h
key.h Merge branch 'serge-next-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sergeh/linux-security 2014-06-10 10:05:36 -07:00
keyboard.h
kfifo.h treewide: Fix typo in Documentation/DocBook 2014-02-19 14:58:17 +01:00
kgdb.h kgdb/kdb: Fix no KDB config problem 2014-01-25 08:55:09 +01:00
khugepaged.h
klist.h
kmemcheck.h
kmemleak.h mm: introduce kmemleak_update_trace() 2014-06-06 16:08:17 -07:00
kmod.h
kmsg_dump.h
kobj_map.h
kobject_ns.h
kobject.h kobject: Make support for uevent_helper optional. 2014-04-25 12:00:49 -07:00
kprobes.h Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-06-12 19:18:49 -07:00
kref.h
ks0108.h
ks8842.h
ks8851_mll.h
ksm.h
kthread.h
ktime.h ktime: add ktime_after and ktime_before helper 2014-06-11 12:23:17 -07:00
kvm_host.h Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-06-12 19:42:15 -07:00
kvm_para.h
kvm_types.h
l2tp.h
lapb.h
latencytop.h
lcd.h
lcm.h
led-lm3530.h
leds_pwm.h
leds-bd2802.h
leds-lp3944.h
leds-pca9532.h
leds-regulator.h
leds-tca6507.h
leds.h
lglock.h lglock: map to spinlock when !CONFIG_SMP 2014-04-07 16:36:14 -07:00
lguest_launcher.h
lguest.h
libata.h libata/ahci: accommodate tag ordered controllers 2014-04-18 15:56:03 -04:00
libfdt_env.h
libfdt.h
libps2.h
license.h
linkage.h asmlinkage: Revert "lto: Make asmlinkage __visible" 2014-05-05 16:07:37 -07:00
linux_logo.h
lis3lv02d.h
list_bl.h
list_lru.h mm: keep page cache radix tree nodes in check 2014-04-03 16:21:01 -07:00
list_nulls.h
list_sort.h
list.h
llc.h
llist.h
lockdep.h Merge branch 'x86-asmlinkage-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-03-31 14:13:25 -07:00
lockref.h
log2.h
lp.h
lru_cache.h
lsm_audit.h
lz4.h
lzo.h
m48t86.h
mailbox.h
maple.h
marvell_phy.h
math64.h
max17040_battery.h
mbcache.h fs/mbcache.c: change block and index hash chain to hlist_bl_node 2014-03-18 19:19:41 -04:00
mbus.h bus: mvebu: pass the coherency availability information at init time 2014-04-24 05:00:36 +00:00
mc6821.h
mc146818rtc.h drivers/rtc/rtc-cmos.c: drivers/char/rtc.c features for DECstation support 2014-06-06 16:08:07 -07:00
mcb.h mcb: Add support for shared PCI IRQs 2014-05-27 17:38:11 -07:00
mdio-bitbang.h
mdio-gpio.h net: mdio-gpio: Add support for separate MDI and MDO gpio pins 2014-04-16 15:09:51 -04:00
mdio-mux.h
mdio.h
mei_cl_bus.h
memblock.h memblock: introduce memblock_alloc_range() 2014-06-04 16:53:57 -07:00
memcontrol.h memcg: cleanup kmem cache creation/destruction functions naming 2014-06-04 16:54:08 -07:00
memory_hotplug.h mem-hotplug: implement get/put_online_mems 2014-06-04 16:53:59 -07:00
memory.h
mempolicy.h hugetlb: restrict hugepage_migration_support() to x86_64 2014-06-04 16:53:51 -07:00
mempool.h
memstick.h
mg_disk.h
micrel_phy.h
migrate_mode.h
migrate.h mm, migration: add destination page freeing callback 2014-06-04 16:54:06 -07:00
mii.h
miscdevice.h miscdevice.h: Simple syntax fix to make pointers consistent. 2014-05-27 17:43:11 -07:00
mISDNdsp.h
mISDNhw.h
mISDNif.h
mm_inline.h
mm_types.h Merge branch 'x86/vdso' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip into next 2014-06-05 08:05:29 -07:00
mm.h Merge branch 'x86/vdso' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip into next 2014-06-05 08:05:29 -07:00
mman.h
mmdebug.h mm: pass VM_BUG_ON() reason to dump_page() 2014-06-04 16:53:58 -07:00
mmiotrace.h
mmu_context.h
mmu_notifier.h
mmzone.h mm: page_alloc: use unsigned int for order in more places 2014-06-04 16:54:09 -07:00
mnt_namespace.h
mod_devicetable.h x86: LLVMLinux: Fix "incomplete type const struct x86cpu_device_id" 2014-04-09 13:44:35 -07:00
module.h Nothing major: the stricter permissions checking for sysfs broke 2014-04-06 09:38:07 -07:00
moduleloader.h
moduleparam.h param: hand arguments after -- straight to init 2014-04-28 11:48:34 +09:30
mount.h smarter propagate_mnt() 2014-04-01 23:19:08 -04:00
mpage.h
mpi.h
mpls.h UAPI: add MPLS label stack definition 2014-03-04 13:51:06 -05:00
mroute6.h
mroute.h
msdos_fs.h
msg.h ipc: whitespace cleanup 2014-01-27 21:02:39 -08:00
msi.h
msm_mdp.h
mutex-debug.h
mutex.h locking/mutexes: Introduce cancelable MCS lock for adaptive spinning 2014-03-11 12:14:56 +01:00
mv643xx_eth.h
mv643xx_i2c.h
mv643xx.h
mxm-wmi.h
n_r3964.h
namei.h
nbd.h switch nbd to sockfd_lookup/sockfd_put 2014-04-01 23:19:10 -04:00
net.h net: avoid dependency of net_get_random_once on nop patching 2014-05-14 00:37:34 -04:00
netdev_features.h net: Fix GSO constants to match NETIF flags 2014-06-15 01:00:49 -07:00
netdevice.h net: Fix GSO constants to match NETIF flags 2014-06-15 01:00:49 -07:00
netfilter_bridge.h
netfilter_ipv4.h
netfilter_ipv6.h
netfilter.h
netlink.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2014-06-03 23:32:12 -07:00
netpoll.h netpoll: Rename netpoll_rx_enable/disable to netpoll_poll_disable/enable 2014-03-29 17:58:37 -04:00
nfs3.h
nfs4.h nfs4: remove unused CHANGE_SECURITY_LABEL 2014-06-06 19:22:49 -04:00
nfs_fs_i.h
nfs_fs_sb.h
nfs_fs.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2014-06-12 10:30:18 -07:00
nfs_idmap.h
nfs_iostat.h
nfs_page.h nfs: page group syncing in write path 2014-05-29 11:11:45 -04:00
nfs_xdr.h pnfs: support multiple verfs per direct req 2014-05-29 11:11:48 -04:00
nfs.h pnfs: support multiple verfs per direct req 2014-05-29 11:11:48 -04:00
nfsacl.h
nilfs2_fs.h nilfs2: verify metadata sizes read from disk 2014-04-03 16:21:26 -07:00
nl802154.h ieee802154: add netlink interfaces for llsec 2014-05-16 17:23:41 -04:00
nls.h nls: have register_nls() set ->owner 2014-01-25 03:14:05 -05:00
nmi.h kernel/watchdog.c: print traces for all cpus on lockup detection 2014-06-23 16:47:44 -07:00
node.h
nodemask.h
notifier.h
nsc_gpio.h
nsproxy.h
ntb.h NTB: Code Style Clean-up 2014-04-07 10:59:19 -07:00
nubus.h
numa.h
nvme.h NVMe: Fix hot cpu notification dead lock 2014-06-13 10:43:34 -04:00
nvram.h
nwpserial.h
nx842.h
of_address.h Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm into next 2014-06-05 15:57:04 -07:00
of_device.h of/device: Nullify match table in of_match_device() for CONFIG_OF=n 2014-02-05 10:04:37 -06:00
of_dma.h
of_fdt.h of/fdt: add FDT address translation support 2014-05-20 15:19:25 -05:00
of_gpio.h gpio: make of_get_named_gpiod_flags() private 2014-05-21 11:14:46 +02:00
of_graph.h of: Fix of_graph_parse_endpoint stub for !CONFIG_OF builds 2014-03-07 16:02:46 +01:00
of_iommu.h
of_irq.h of/irq: do irq resolution in platform_get_irq_byname() 2014-05-23 11:40:25 +09:00
of_mdio.h net: of_mdio: add of_mdiobus_link_phydev() 2014-05-29 15:23:29 -07:00
of_mtd.h of_mtd: Add helpers to get ECC strength and ECC step size 2014-03-10 22:42:28 -07:00
of_net.h
of_pci.h of/irq: provide more wrappers for !CONFIG_OF 2014-06-04 04:45:46 -05:00
of_pdt.h
of_platform.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial into next 2014-06-04 08:50:34 -07:00
of_reserved_mem.h of: consolidate linker section OF match table declarations 2014-05-20 14:25:24 -05:00
of.h DeviceTree for 3.16: 2014-06-04 10:02:38 -07:00
oid_registry.h
olpc-ec.h
omap-dma.h MMC highlights for 3.16: 2014-06-10 14:35:22 -07:00
omap-dmaengine.h MMC highlights for 3.16: 2014-06-10 14:35:22 -07:00
omap-iommu.h
omap-mailbox.h
omapfb.h
oom.h
openvswitch.h
oprofile.h
oxu210hp.h
padata.h
page_cgroup.h
page-debug-flags.h
page-flags-layout.h
page-flags.h kexec: save PG_head_mask in VMCOREINFO 2014-06-23 16:47:43 -07:00
page-isolation.h
pageblock-flags.h mm: page_alloc: reduce number of times page_to_pfn is called 2014-06-04 16:54:09 -07:00
pagemap.h mm: non-atomically mark page accessed during page cache allocation where possible 2014-06-04 16:54:10 -07:00
pagevec.h mm + fs: prepare for non-page entries in page cache radix trees 2014-04-03 16:21:00 -07:00
parport_pc.h
parport.h
parser.h
pata_arasan_cf_data.h
patchkey.h
path.h
pch_dma.h
pci_hotplug.h
pci_ids.h PCI: Remove old serial device IDs 2014-04-24 15:01:33 -06:00
pci-acpi.h ACPI / hotplug / PCI: Rework acpiphp_check_host_bridge() 2014-02-06 17:31:52 +01:00
pci-aspm.h
pci-ats.h
pci-dma.h
pci.h Merge branch 'pci/iommu' into next 2014-06-02 16:18:48 -06:00
pcieport_if.h
pda_power.h
percpu_counter.h
percpu_ida.h
percpu-defs.h
percpu-refcount.h Merge branch 'for-3.15-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git into for-3.16 2014-06-04 12:50:47 -04:00
percpu-rwsem.h
percpu.h Merge branch 'for-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu 2014-06-09 14:56:07 -07:00
perf_event.h perf: Differentiate exec() and non-exec() comm events 2014-06-06 07:56:22 +02:00
perf_regs.h
personality.h
pfn.h
phonedev.h
phonet.h
phy_fixed.h net: phy: fix sparse warning in fixed.c 2014-06-05 15:38:57 -07:00
phy.h net: phylib: add link_change_notify callback to phy device 2014-06-21 15:50:00 -07:00
pid_namespace.h
pid.h
pim.h
pipe_fs_i.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2014-04-12 14:49:50 -07:00
pktcdvd.h
platform_device.h
plist.h lib/plist: add plist_requeue 2014-06-04 16:54:07 -07:00
pm2301_charger.h
pm_clock.h
pm_domain.h
pm_opp.h PM / OPP: Move cpufreq specific OPP functions out of generic OPP library 2014-05-07 00:39:03 +02:00
pm_qos.h PM / QoS: Add type to dev_pm_qos_add_ancestor_request() arguments 2014-02-11 00:36:00 +01:00
pm_runtime.h PM / sleep: Mechanism to avoid resuming runtime-suspended devices unnecessarily 2014-05-16 23:15:44 +02:00
pm_wakeup.h
pm.h PM / sleep: Mechanism to avoid resuming runtime-suspended devices unnecessarily 2014-05-16 23:15:44 +02:00
pmu.h
pnfs_osd_xdr.h
pnp.h
poison.h
poll.h
posix_acl_xattr.h fs: add generic xattr_acl handlers 2014-01-25 23:58:17 -05:00
posix_acl.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2014-01-28 08:38:04 -08:00
posix-clock.h
posix-timers.h
power_supply.h power_supply: allow power supply devices registered w/o wakeup source 2014-05-30 13:45:25 +02:00
powercap.h
ppp_channel.h
ppp_defs.h
ppp-comp.h
pps_kernel.h
pps-gpio.h
preempt_mask.h
preempt.h
prefetch.h
printk.h kernel/printk: use symbolic defines for console loglevels 2014-06-04 16:54:17 -07:00
prio_heap.h
proc_fs.h init/main.c: remove an ifdef 2014-06-04 16:54:21 -07:00
proc_ns.h
profile.h sparc: fix sparse warnings in smp_32.c + smp_64.c 2014-05-18 19:01:33 -07:00
projid.h
proportions.h
pstore_ram.h
pstore.h
pti.h
ptp_classify.h net: ptp: move PTP classifier in its own file 2014-04-01 16:43:18 -04:00
ptp_clock_kernel.h ptp: introduce programmable pins. 2014-03-21 14:21:13 -04:00
ptrace.h ptrace,x86: force IRET path after a ptrace_stop() 2014-07-03 17:27:23 -07:00
pvclock_gtod.h
pwm_backlight.h pwm-backlight: switch to gpiod interface 2014-05-07 10:15:31 +02:00
pwm.h pwm: modify PWM_LOOKUP to initialize all struct pwm_lookup members 2014-05-21 11:19:36 +02:00
pxa2xx_ssp.h ARM: pxa: fix pxa_ssp_* declarations 2014-03-21 18:26:03 +01:00
pxa168_eth.h
qnx6_fs.h
quicklist.h
quota.h xfs: fix Q_XQUOTARM ioctl 2014-05-05 17:25:50 +10:00
quotaops.h quota: provide function to grab quota structure reference 2014-04-03 16:20:54 -07:00
radix-tree.h mm: keep page cache radix tree nodes in check 2014-04-03 16:21:01 -07:00
raid_class.h
ramfs.h
random.h random: Add arch_has_random[_seed]() 2014-03-19 22:24:08 -04:00
range.h
ratelimit.h
rational.h
rbtree_augmented.h
rbtree.h
rculist_bl.h
rculist_nulls.h
rculist.h rcu: Indentation and spacing fixes. 2014-02-17 15:01:52 -08:00
rcupdate.h rcu: Provide API to suppress stall warnings while sysrc runs 2014-05-19 10:52:04 -07:00
rcutiny.h rcutorture: Export RCU grace-period kthread wait state to rcutorture 2014-05-14 09:46:09 -07:00
rcutree.h rcutorture: Export RCU grace-period kthread wait state to rcutorture 2014-05-14 09:46:09 -07:00
reboot.h x86: Remove the PCI reboot method from the default chain 2014-04-16 08:56:09 +02:00
reciprocal_div.h
regmap.h regmap: add reg_read/reg_write callbacks to regmap_bus struct 2014-04-18 16:07:22 +01:00
regset.h
relay.h
remoteproc.h
res_counter.h res_counter: remove interface for locked charging and uncharging 2014-04-07 16:35:54 -07:00
reservation.h
reset-controller.h
reset.h reset: Add of_reset_control_get to reset.h 2014-04-14 16:47:28 +02:00
resource.h
resume-trace.h
rfkill-gpio.h net: rfkill: gpio: remove unused and obsolete platform parameters 2014-04-11 09:29:16 +02:00
rfkill-regulator.h
rfkill.h
ring_buffer.h ring-buffer: Check if buffer exists before polling 2014-06-10 09:46:00 -04:00
rio_drv.h
rio_ids.h
rio_regs.h
rio.h rapidio: rework device hierarchy and introduce mport class of devices 2014-04-07 16:36:07 -07:00
rmap.h mm/rmap.c: cleanup ttu_flags 2014-06-04 16:54:12 -07:00
rndis.h
root_dev.h
rotary_encoder.h
rpmsg.h
rslib.h
rtc-ds2404.h
rtc-v3020.h
rtc.h
rtmutex.h
rtnetlink.h rtnetlink: wait for unregistering devices in rtnl_link_unregister() 2014-05-15 15:30:33 -04:00
rwlock_api_smp.h
rwlock_types.h
rwlock.h
rwsem-spinlock.h
rwsem.h locking/rwsem: Fix warnings for CONFIG_RWSEM_GENERIC_SPINLOCK 2014-06-05 10:38:45 +02:00
rxrpc.h
s3c_adc_battery.h
sa11x0-dma.h
scatterlist.h
scc.h
sched_clock.h sched_clock: Remove deprecated setup_sched_clock() API 2014-04-22 13:38:33 -07:00
sched.h Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-06-12 19:42:15 -07:00
screen_info.h
sctp.h
scx200_gpio.h
scx200.h
sdb.h
sdla.h
seccomp.h net: filter: rework/optimize internal BPF interpreter's instruction set 2014-03-31 00:45:09 -04:00
securebits.h
security.h Merge branch 'serge-next-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sergeh/linux-security 2014-06-10 10:05:36 -07:00
selection.h
selinux.h
sem.h
semaphore.h
seq_file_net.h
seq_file.h
seqlock.h
serial_8250.h
serial_bcm63xx.h tty: serial: bcm63xx_uart: define UART_REG_SIZE constant 2014-02-28 16:27:18 -08:00
serial_core.h serial: earlycon: add DT support 2014-05-20 15:19:25 -05:00
serial_max3100.h
serial_mfd.h
serial_pnx8xxx.h
serial_s3c.h serial: s3c: Fix build of header without serial_core.h preinclusion 2014-03-21 04:12:33 +09:00
serial_sci.h serial: sh-sci: Add more register documentation 2014-03-17 16:20:49 -07:00
serial.h
serio.h Input: serio - add firmware_id sysfs attribute 2014-04-19 22:42:19 -07:00
sfi_acpi.h
sfi.h
sh_clk.h ARM: shmobile: wait for MSTP clock status to toggle, when enabling it 2014-02-04 10:22:39 +09:00
sh_dma.h
sh_eth.h
sh_intc.h
sh_timer.h clocksource: sh_cmt: Add support for multiple channels per device 2014-04-16 12:03:14 +02:00
shdma-base.h DMA: shdma: add cyclic transfer support 2014-05-02 21:48:33 +05:30
shm.h ipc/shm.c: increase the defaults for SHMALL, SHMMAX 2014-06-06 16:08:14 -07:00
shmem_fs.h mm + fs: prepare for non-page entries in page cache radix trees 2014-04-03 16:21:00 -07:00
shrinker.h
signal.h signals: introduce kernel_sigaction() 2014-06-06 16:08:12 -07:00
signalfd.h
sirfsoc_dma.h
sizes.h
skbuff.h net: add skb_pop_rcv_encapsulation 2014-06-15 01:00:50 -07:00
slab_def.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2014-01-25 11:17:34 -08:00
slab.h memcg: cleanup kmem cache creation/destruction functions naming 2014-06-04 16:54:08 -07:00
slub_def.h slub: use sysfs'es release mechanism for kmem_cache 2014-05-06 13:04:59 -07:00
sm501-regs.h
sm501.h
smc91x.h
smc911x.h
smp.h idle: remove cpu_idle() forward declarations 2014-06-06 16:08:18 -07:00
smpboot.h
smsc911x.h
smscphy.h
sock_diag.h net: Move the permission check in sock_diag_put_filterinfo to packet_diag_dump 2014-04-24 13:44:53 -04:00
socket.h iovec: move memcpy_from/toiovecend to lib/iovec.c 2014-06-27 11:47:58 -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 fs/splice.c: remove unneeded exports 2014-06-12 00:21:11 -04:00
spmi.h spmi: Linux driver framework for SPMI 2014-02-15 11:55:28 -08:00
srcu.h rcu: Stop tracking FSF's postal address 2014-02-17 15:01:37 -08:00
ssbi.h mfd: ssbi: Add regmap read/write helpers 2014-03-19 08:58:30 +00:00
stackprotector.h
stacktrace.h
start_kernel.h
stat.h
statfs.h
static_key.h
stddef.h
ste_modem_shm.h
stmmac.h
stmp3xxx_rtc_wdt.h
stmp_device.h
stop_machine.h
string_helpers.h
string.h lib: add glibc style strchrnul() variant 2014-05-23 11:23:27 +09:00
stringify.h
sudmac.h
sungem_phy.h
sunserialcore.h
superhyway.h
suspend.h PM / hibernate: introduce "nohibernate" boot parameter 2014-06-16 23:29:39 +02:00
svga.h
swab.h
swap.h mm/vmscan.c: use DIV_ROUND_UP for calculation of zone's balance_gap and correct comments. 2014-06-04 16:54:11 -07:00
swapfile.h swap: change swap_list_head to plist, add swap_avail_head 2014-06-04 16:54:07 -07:00
swapops.h x86: define _PAGE_NUMA by reusing software bits on the PMD and PTE levels 2014-06-04 16:53:55 -07:00
swiotlb.h x86: enable DMA CMA with swiotlb 2014-06-04 16:53:57 -07:00
sxgbe_platform.h net: sxgbe: add basic framework for Samsung 10Gb ethernet driver 2014-03-26 16:49:31 -04:00
synclink.h
sys_soc.h
sys.h
syscalls.h mm: constify nmask argument to set_mempolicy() 2014-06-04 16:54:03 -07:00
syscore_ops.h
sysctl.h
sysfs.h sysfs.h: don't return a void-valued expression in sysfs_remove_file 2014-05-27 14:29:56 -07:00
syslog.h
sysrq.h
sysv_fs.h
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: make cwnd-limited checks measurement-based, and gentler 2014-05-22 12:04:49 -04:00
tegra-ahb.h
tegra-cpuidle.h
tegra-powergate.h
tegra-soc.h
textsearch_fsm.h
textsearch.h
tfrc.h
thermal.h
thinkpad_acpi.h
thread_info.h mm: get rid of __GFP_KMEMCG 2014-06-04 16:53:56 -07:00
threads.h
ti_wilink_st.h
tick.h
tifm.h
timb_dma.h
timb_gpio.h
time.h
timekeeper_internal.h
timer.h
timerfd.h
timeriomem-rng.h
timerqueue.h
timex.h
topology.h mm: disable zone_reclaim_mode by default 2014-06-04 16:53:59 -07:00
torture.h torture: Remove unused definition 2014-05-14 09:46:32 -07:00
toshiba.h
tpm_command.h
tpm.h
trace_clock.h
trace_seq.h tracing: Add __bitmask() macro to trace events to cpumasks and other bitmasks 2014-05-15 11:29:37 -04:00
tracehook.h arch: Mass conversion of smp_mb__*() 2014-04-18 14:20:48 +02:00
tracepoint.h tracing: Add trace_<tracepoint>_enabled() function 2014-05-07 12:10:51 -04:00
transport_class.h
tsacct_kern.h
tty_driver.h
tty_flip.h
tty_ldisc.h tty_ldisc: add more limits to the @write_wakeup 2014-04-24 16:16:33 -07:00
tty.h Revert "tty: Fix race condition between __tty_buffer_request_room and flush_to_ldisc" 2014-05-03 18:14:28 -04:00
typecheck.h
types.h DMA-API: Clarify physical/bus address distinction 2014-05-20 16:54:21 -06:00
u64_stats_sync.h net: Replace u64_stats_fetch_begin_bh to u64_stats_fetch_begin_irq 2014-03-14 22:41:36 -04:00
uaccess.h
ucb1400.h
ucs2_string.h
udp.h net: Make enabling of zero UDP6 csums more restrictive 2014-05-23 16:28:53 -04:00
uidgid.h
uinput.h Input: uinput - add UI_GET_SYSNAME ioctl to retrieve the sysfs path 2014-02-12 15:00:34 -08:00
uio_driver.h
uio.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending 2014-06-28 09:43:58 -07:00
uprobes.h Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-06-12 19:18:49 -07:00
usb_usual.h usb-storage/SCSI: Add broken_fua blacklist flag 2014-06-30 22:47:18 -07:00
usb.h USB: separate usb_address0 mutexes for each bus 2014-05-27 16:11:49 -07:00
usbdevice_fs.h
user_namespace.h
user-return-notifier.h
user.h
uts.h
utsname.h
uuid.h
uwb.h
vermagic.h
vexpress.h ARM: vexpress: move HBI check to sysreg driver 2014-05-15 17:02:21 +01:00
vfio.h drivers/vfio: Rework offsetofend() 2014-05-30 11:35:54 -06:00
vfs.h
vga_switcheroo.h
vgaarb.h
via_i2c.h
via-core.h
via-gpio.h
via.h
videodev2.h
virtio_caif.h
virtio_config.h
virtio_console.h
virtio_mmio.h
virtio_ring.h
virtio_scsi.h virtio-scsi.h: Add virtio_scsi_cmd_req_pi + VIRTIO_SCSI_F_T10_PI bits 2014-06-02 12:41:33 -07:00
virtio.h virtio: virtio_break_device() to mark all virtqueues broken. 2014-04-28 11:34:13 +09:30
vlynq.h
vm_event_item.h mm,vmacache: add debug data 2014-06-04 16:53:57 -07:00
vm_sockets.h
vmacache.h mm: per-thread vma caching 2014-04-07 16:35:53 -07:00
vmalloc.h
vme.h
vmpressure.h
vmstat.h mm,vmacache: add debug data 2014-06-04 16:53:57 -07:00
vmw_vmci_api.h
vmw_vmci_defs.h
vringh.h
vt_buffer.h
vt_kern.h
vt.h
vtime.h
w1-gpio.h
wait.h wait: explain the shadowing and type inconsistencies 2014-04-18 16:40:08 -07:00
wanrouter.h
watchdog.h
wireless.h
wl12xx.h wl1251: move power GPIO handling into the driver 2014-02-28 14:08:26 -05:00
wm97xx.h
workqueue.h workqueue: remove unused work_clear_pending() 2014-05-22 11:35:51 -04:00
writeback.h mm: remove unused arg of set_page_dirty_balance() 2014-04-07 16:35:57 -07:00
ww_mutex.h
xattr.h
xz.h
yam.h
z2_battery.h
zbud.h mm/zbud.c: make size unsigned like unique callsite 2014-06-04 16:54:13 -07:00
zconf.h
zlib.h
zorro.h
zsmalloc.h zsmalloc: add copyright 2014-01-30 16:56:55 -08:00
zutil.h