1
0
Fork 0
alistair23-linux/include/linux
Vlad Yasevich 0d5501c1c8 net: Always untag vlan-tagged traffic on input.
Currently the functionality to untag traffic on input resides
as part of the vlan module and is build only when VLAN support
is enabled in the kernel.  When VLAN is disabled, the function
vlan_untag() turns into a stub and doesn't really untag the
packets.  This seems to create an interesting interaction
between VMs supporting checksum offloading and some network drivers.

There are some drivers that do not allow the user to change
tx-vlan-offload feature of the driver.  These drivers also seem
to assume that any VLAN-tagged traffic they transmit will
have the vlan information in the vlan_tci and not in the vlan
header already in the skb.  When transmitting skbs that already
have tagged data with partial checksum set, the checksum doesn't
appear to be updated correctly by the card thus resulting in a
failure to establish TCP connections.

The following is a packet trace taken on the receiver where a
sender is a VM with a VLAN configued.  The host VM is running on
doest not have VLAN support and the outging interface on the
host is tg3:
10:12:43.503055 52:54:00:ae:42:3f > 28:d2:44:7d:c2:de, ethertype 802.1Q
(0x8100), length 78: vlan 100, p 0, ethertype IPv4, (tos 0x0, ttl 64, id 27243,
offset 0, flags [DF], proto TCP (6), length 60)
    10.0.100.1.58545 > 10.0.100.10.ircu-2: Flags [S], cksum 0xdc39 (incorrect
-> 0x48d9), seq 1069378582, win 29200, options [mss 1460,sackOK,TS val
4294837885 ecr 0,nop,wscale 7], length 0
10:12:44.505556 52:54:00:ae:42:3f > 28:d2:44:7d:c2:de, ethertype 802.1Q
(0x8100), length 78: vlan 100, p 0, ethertype IPv4, (tos 0x0, ttl 64, id 27244,
offset 0, flags [DF], proto TCP (6), length 60)
    10.0.100.1.58545 > 10.0.100.10.ircu-2: Flags [S], cksum 0xdc39 (incorrect
-> 0x44ee), seq 1069378582, win 29200, options [mss 1460,sackOK,TS val
4294838888 ecr 0,nop,wscale 7], length 0

This connection finally times out.

I've only access to the TG3 hardware in this configuration thus have
only tested this with TG3 driver.  There are a lot of other drivers
that do not permit user changes to vlan acceleration features, and
I don't know if they all suffere from a similar issue.

The patch attempt to fix this another way.  It moves the vlan header
stipping code out of the vlan module and always builds it into the
kernel network core.  This way, even if vlan is not supported on
a virtualizatoin host, the virtual machines running on top of such
host will still work with VLANs enabled.

CC: Patrick McHardy <kaber@trash.net>
CC: Nithin Nayak Sujir <nsujir@broadcom.com>
CC: Michael Chan <mchan@broadcom.com>
CC: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: Vladislav Yasevich <vyasevic@redhat.com>
Acked-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
2014-08-11 12:16:51 -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 bcma: use NS prefix for names of Northstar specific cores 2014-07-31 13:45:32 -04:00
byteorder include/linux/byteorder/generic.h: minor comment fix 2014-08-06 18:01:23 -07:00
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 clk: Support for clock parents and rates assigned from device tree 2014-07-25 15:16:27 -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: sm5502: Change internal hardware switch according to cable type 2014-07-23 10:22:35 +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 Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-08-05 17:46:42 -07:00
input Input: add common DT binding for touchscreens 2014-05-29 00:05:59 -07:00
irqchip Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-08-05 17:38:45 -07: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 sound updates for 3.17-rc1 2014-08-06 20:07:24 -07:00
mlx4 net/mlx4_core: Use low memory profile on kdump kernel 2014-07-22 19:53:14 -07:00
mlx5 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2014-08-06 09:38:14 -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: Let node ptr of PHY point to PHY and not of PHY provider 2014-07-22 12:46:11 +05:30
pinctrl pinctrl: Add void * to pinctrl_pin_desc 2014-01-16 14:25:37 +01:00
platform_data sound updates for 3.17-rc1 2014-08-06 20:07:24 -07:00
power isp1704_charger: Add DT support 2013-12-23 18:34:58 -08:00
raid
regulator Merge remote-tracking branches 'regulator/topic/da9211', 'regulator/topic/getreg', 'regulator/topic/gpio' and 'regulator/topic/lp872x' into regulator-next 2014-08-05 18:29:21 +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-08-06 09:38:14 -07:00
ssb ssb: extract power info from SPROM revs 4 and 5 2014-07-18 13:45:24 -04:00
sunrpc sched: Allow wait_on_bit_action() functions to support a timeout 2014-07-16 15:10:41 +02:00
unaligned
usb Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2014-08-06 09:38:14 -07:00
uwb uwb: Use dev_is_pci() to check whether it is pci device 2013-12-08 18:01:56 -08:00
wimax
8250_pci.h
a.out.h
acct.h
acpi.h ACPICA: Linux: Allow ACPICA inclusion for CONFIG_ACPI=n builds. 2014-07-23 01:10:45 +02:00
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
adb.h
adfs_fs.h
aer.h x86/ras: Fix build warnings in <linux/aer.h> 2014-07-30 10:42:55 -07:00
agp_backend.h
agpgart.h
ahci_platform.h ata: libahci_platform: move port_map parameters into the AHCI structure 2014-07-30 15:39:46 -04:00
aio.h
alarmtimer.h
altera_jtaguart.h
altera_uart.h
amd-iommu.h iommu/amd: Moving PPR fault flags macros definitions 2014-07-09 16:02:41 +02:00
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h
apm-emulation.h
apm_bios.h
apple_bl.h
arcdevice.h net: arcnet: Remove "#define bool int" 2014-07-07 21:34:43 -07:00
arm-cci.h
asn1.h
asn1_ber_bytecode.h
asn1_decoder.h
assoc_array.h
assoc_array_priv.h
async.h
async_tx.h
ata.h
ata_platform.h
atalk.h
ath9k_platform.h ath9k: Allow platform override without EEPROM override 2014-05-07 16:08:08 -04:00
atm.h
atm_suni.h
atm_tcp.h
atmdev.h
atmel-mci.h
atmel-pwm-bl.h
atmel-ssc.h ASoC: atmel_ssc_dai: enable fslen extension feature 2014-06-21 11:37:35 +01:00
atmel_pdc.h
atmel_pwm.h
atmel_serial.h
atmel_tc.h
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 auxvec.h: account for AT_HWCAP2 in AT_VECTOR_SIZE_BASE 2013-12-24 09:35:17 -08:00
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 lib: bitmap: add missing mask in bitmap_andnot 2014-08-06 18:01:27 -07:00
bitops.h arch: Prepare for smp_mb__{before,after}_atomic() 2014-04-18 11:40:30 +02:00
bitrev.h
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
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
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 sched/preempt, locking: Rework local_bh_{dis,en}able() 2014-01-13 17:32:27 +01:00
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 printk/cache: mark printk_once test variable __read_mostly 2014-01-23 16:36:56 -08:00
capability.h CAPABILITIES: remove undefined caps from all processes 2014-07-24 21:53:47 +10: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.h cgroup: make CFTYPE_ONLY_ON_DFL and CFTYPE_NO_ internal to cgroup core 2014-07-15 11:05:10 -04:00
cgroup_subsys.h cgroup: disallow debug controller on the default hierarchy 2014-05-19 16:37:06 -04:00
circ_buf.h
cleancache.h
clk-private.h Merge branch 'clk-next-unregister' into clk-next 2013-12-31 11:35:12 -08:00
clk-provider.h clk: define and export clk_debugs_add_file 2014-07-02 16:15:55 -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 clocksource: Get rid of cycle_last 2014-07-23 15:01:52 -07:00
cm4000_cs.h
cma.h mm, CMA: change cma_declare_contiguous() to obey coding convention 2014-08-06 18:01:16 -07:00
cmdline-parser.h block: remove unrelated header files and export symbol 2014-01-21 20:18:26 -08:00
cn_proc.h
cnt32_to_63.h
coda.h
coda_psdev.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-gcc.h
compiler-gcc3.h
compiler-gcc4.h compiler/gcc4: Make quirk for asm_volatile_goto() unconditional 2014-02-13 12:34:05 +01:00
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.h
console_struct.h console: Use explicit pointer type for vc_uni_pagedir* fields 2014-05-28 13:37:21 -07:00
consolemap.h
container.h ACPI / hotplug / driver core: Handle containers in a special way 2013-12-29 15:25:48 +01:00
context_tracking.h
context_tracking_state.h
cordic.h
coredump.h
cper.h trace, RAS: Add eMCA trace event interface 2014-06-25 13:26:47 -07:00
cpu.h idle: remove cpu_idle() forward declarations 2014-06-06 16:08:18 -07:00
cpu_cooling.h
cpu_pm.h
cpu_rmap.h
cpufeature.h cpu: add generic support for CPU feature based module autoloading 2014-02-18 12:38:37 -08:00
cpufreq.h cpufreq: Introduce new relation for freq selection 2014-07-21 13:43:19 +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
crc-ccitt.h
crc-itu-t.h
crc-t10dif.h
crc7.h lib/crc7: Shift crc7() output left 1 bit 2014-05-16 14:26:52 -04:00
crc8.h
crc16.h
crc32.h lib: crc32: Add some additional __pure annotations 2014-06-25 16:04:00 -07:00
crc32c.h
cred.h kernel/groups.c: remove return value of set_groups 2014-04-03 16:21:05 -07:00
crypto.h crypto: Resolve shadow warnings 2014-08-01 22:35:55 +08:00
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-mapper.h dm: remove symbol export for dm_set_device_limits 2014-06-04 09:46:34 -04:00
device.h IOMMU Updates for Linux v3.17 2014-08-05 15:59:35 -07:00
device_cgroup.h
devpts_fs.h
digsig.h
dio.h
dirent.h
dlm.h
dlm_plock.h
dm-dirty-log.h
dm-io.h
dm-kcopyd.h
dm-region-hash.h
dm9000.h
dma-attrs.h
dma-buf.h dma-buf: add poll support, v3 2014-07-08 13:36:52 -07:00
dma-contiguous.h CMA: generalize CMA reserved area management functionality 2014-08-06 18:01:16 -07:00
dma-debug.h dma-debug: introduce debug_dma_assert_idle() 2014-01-21 16:19:41 -08:00
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
dma_remapping.h iommu/vt-d: keep shared resources when failed to initialize iommu devices 2014-01-09 12:43:40 +01:00
dmaengine.h dma: Support for 3 bytes word size 2014-07-04 18:55:13 +01:00
dmapool.h
dmar.h iommu/vt-d: Simplify include/linux/dmar.h 2014-07-23 16:04:47 +02:00
dmi.h
dnotify.h
dns_resolver.h
dqblk_qtree.h
dqblk_v1.h
dqblk_v2.h
drbd.h drbd: Test cstate while holding req_lock 2014-04-30 13:46:56 -06:00
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_genl_api.h
drbd_limits.h
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 EDAC: Add an edac_report parameter to EDAC 2013-12-11 18:06:47 +01:00
edd.h
edma.h
eeprom_93cx6.h
eeprom_93xx46.h
efi-bgrt.h
efi.h efi: Update stale locking comment for struct efivars 2014-07-18 21:24:00 +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 etherdevice: Use ether_addr_copy to copy an Ethernet address 2014-01-15 15:39:33 -08:00
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 export: declare ksymtab symbols 2014-01-16 10:23:02 +10:30
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 reservation: add suppport for read-only access using rcu 2014-07-08 13:41:08 -07:00
file.h get rid of fget_light() 2014-03-10 11:44:42 -04:00
filter.h net: filter: split 'struct sk_filter' into socket and bpf parts 2014-08-02 15:03:58 -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 firmware loader: inform direct failure when udev loader is disabled 2014-07-08 15:28:16 -07:00
fixp-arith.h
flat.h
flex_array.h reciprocal_divide: update/correction of the algorithm 2014-01-21 23:17:20 -08:00
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.h fs.h, drivers/hwmon/asus_atk0110.c: fix DEFINE_SIMPLE_ATTRIBUTE semicolon definition and use 2014-08-06 18:01:23 -07:00
fs_enet_pd.h
fs_stack.h
fs_struct.h
fs_uart_pd.h
fscache-cache.h
fscache.h
fsl-diu-fb.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
fsnotify.h
fsnotify_backend.h fanotify: fix double free of pending permission events 2014-08-06 18:01:12 -07:00
ftrace.h ftrace: Rename ftrace_ops field from trampolines to nr_trampolines 2014-07-23 15:03:00 -04:00
ftrace_event.h tracing: Kill ftrace_event_call->files 2014-07-16 14:28:41 -04:00
ftrace_irq.h
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 include/linux/genalloc.h: spinlock_t needs spinlock_types.h 2014-01-23 16:36:52 -08:00
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 mm/page_alloc.c: add __meminit to alloc_pages_exact_nid() 2014-08-06 18:01:15 -07:00
glob.h lib: add lib/glob.c 2014-08-06 18:01:24 -07:00
goldfish.h goldfish: fix >> 32 warning 2014-05-20 10:30:40 +09:00
gpio-fan.h
gpio-pxa.h
gpio.h Merge branch 'master' into for-next 2014-02-20 14:54:28 +01:00
gpio_keys.h Input: gpio_keys - convert struct descriptions to kernel-doc 2014-05-14 16:39:49 -07:00
gpio_mouse.h
gsmmux.h
hardirq.h genirq: Provide synchronize_hardirq() 2014-02-19 17:22:44 +01:00
hash.h lib: introduce arch optimized hash library 2013-12-17 14:27:17 -05:00
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 HID: lenovo: Add support for Compact (BT|USB) keyboard 2014-07-29 11:24:47 +02:00
hiddev.h
hidraw.h
highmem.h mm: BUG when __kmap_atomic_idx equals KM_TYPE_NR 2014-08-06 18:01:22 -07:00
highuid.h
hil.h
hil_mlc.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 time: Consolidate the time accessor prototypes 2014-07-23 10:17:54 -07:00
htcpld.h
htirq.h
huge_mm.h mm: make copy_pte_range static again 2014-08-06 18:01:19 -07:00
hugetlb.h mm, hugetlb: remove hugetlb_zero and hugetlb_infinity 2014-08-06 18:01:19 -07:00
hugetlb_cgroup.h cgroup: clean up cgroup_subsys names and initialization 2014-02-08 10:36:58 -05:00
hugetlb_inline.h
hw_breakpoint.h
hw_random.h hwrng: add per-device entropy derating 2014-07-15 04:49:40 -04:00
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: pnx: Use devm_*() functions 2014-01-16 11:15:50 +01:00
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 mac80211: add TDLS QoS param IE on setup-confirm 2014-07-21 12:14:04 +02:00
if_arp.h
if_bridge.h bridge: export knowledge about the presence of IGMP/MLD queriers 2014-07-08 16:12:53 -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 net: unify the pcpu_tstats and br_cpu_netstats as one 2014-01-04 20:10:24 -05:00
if_vlan.h net: Always untag vlan-tagged traffic on input. 2014-08-11 12:16:51 -07:00
igmp.h
ihex.h
ima.h ima: add support for measuring and appraising firmware 2014-07-25 11:47:46 -07:00
in.h
in6.h
inet.h
inet_diag.h
inet_lro.h lro: remove dead code 2013-12-29 16:34:25 -05:00
inetdevice.h ipv4: fix wildcard search with inet_confirm_addr() 2013-12-11 14:47:40 -05:00
init.h init.h: Update initcall_sync variants to fix build errors 2014-05-27 14:26:31 -07:00
init_ohci1394_dma.h
init_task.h rcu: Simplify priority boosting by putting rt_mutex in rcu_node 2014-07-09 09:15:01 -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-iommu.h iommu/vt-d: Make use of IOMMU sysfs support 2014-07-04 12:35:59 +02:00
intel_mid_dma.h
intel_pmic_gpio.h
interrupt.h Merge commit '3cf2f34' into sched/core, to fix build error 2014-06-12 13:46:37 +02:00
interval_tree.h
interval_tree_generic.h
io-mapping.h
io.h of: Provide a function to request and map memory 2014-07-23 12:02:30 +02:00
ioc3.h
ioc4.h
iocontext.h
iommu-helper.h
iommu.h iommu: Fix IOMMU sysfs stubs 2014-07-08 09:40:06 +02:00
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: Introduce helper function iova_size() to improve code readability 2014-07-23 16:04:47 +02:00
ip.h
ipack.h
ipc.h ipc: change kern_ipc_perm.deleted type to bool 2014-01-27 21:02:39 -08:00
ipc_namespace.h ipc,mqueue: remove limits for the amount of system-wide queues 2014-02-25 15:25:45 -08:00
ipmi-fru.h
ipmi.h ipmi: Turn off all activity on an idle ipmi interface 2014-04-17 12:23:07 -07:00
ipmi_smi.h ipmi: boolify some things 2014-04-17 12:30:40 -07:00
ipv6.h ipv6: Implement automatic flow label generation on transmit 2014-07-07 21:14:21 -07:00
ipv6_route.h
irq.h genirq: generic chip: Export irq_map_generic_chip function 2014-07-17 13:30:00 +00:00
irq_cpustat.h
irq_work.h irq_work: Implement remote queueing 2014-06-16 16:26:54 +02:00
irqchip.h
irqdesc.h genirq: Sanitize spurious interrupt detection of threaded irqs 2014-05-03 23:15:39 +02:00
irqdomain.h genirq: Export irq_domain_disassociate() to architecture interrupt drivers 2014-06-21 23:03:36 +02:00
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.h
isdn_divertif.h
isdn_ppp.h net: filter: split 'struct sk_filter' into socket and bpf parts 2014-08-02 15:03:58 -07:00
isdnif.h
isicom.h
jbd.h
jbd2.h
jbd_common.h
jhash.h
jiffies.h sched/nohz: Fix overflow error in scheduler_tick_max_deferment() 2014-01-16 00:08:12 +01:00
journal-head.h
joystick.h
jump_label.h include/linux/jump_label.h: expose the reference count 2014-06-04 16:54:08 -07:00
jump_label_ratelimit.h
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-page-flags.h
kernel.h kernel.h: remove deprecated pack_hex_byte 2014-08-06 18:01:25 -07:00
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
kernelcapi.h
kernfs.h Merge branch 'for-3.16-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup 2014-07-10 11:38:23 -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 KEYS: Allow expiry time to be set when preparsing a key 2014-07-22 21:46:08 +01:00
key.h Merge branch 'keys-fixes' into keys-next 2014-07-22 21:55:45 +01: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 klist: use same naming scheme as hlist for klist_add_after() 2014-08-06 18:01:24 -07:00
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.h kobject: Make support for uevent_helper optional. 2014-04-25 12:00:49 -07:00
kobject_ns.h
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 mm/rmap: use rmap_walk() in page_referenced() 2014-01-21 16:19:45 -08:00
kthread.h kthread_work: remove the unused wait_queue_head 2014-07-28 14:16:30 -04:00
ktime.h time: Consolidate the time accessor prototypes 2014-07-23 10:17:54 -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-bd2802.h
leds-lp3944.h
leds-pca9532.h
leds-regulator.h
leds-tca6507.h
leds.h
leds_pwm.h
lglock.h lglock: map to spinlock when !CONFIG_SMP 2014-04-07 16:36:14 -07:00
lguest.h
lguest_launcher.h
libata.h libata: introduce ata_host->n_tags to avoid oops on SAS controllers 2014-07-23 10:30:34 -04:00
libfdt.h
libfdt_env.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.h list: fix order of arguments for hlist_add_after(_rcu) 2014-08-06 18:01:24 -07:00
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
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 mm: do not allocate page->ptl dynamically, if spinlock_t fits to long 2013-12-20 12:25:45 -08:00
log2.h
lp.h
lru_cache.h
lsm_audit.h
lz4.h
lzo.h
m48t86.h
mISDNdsp.h
mISDNhw.h
mISDNif.h
mailbox.h
maple.h
marvell_phy.h
math64.h math64: Add mul_u64_u32_shr() 2013-12-11 15:52:34 +01:00
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 mdio: unused ethtool functions 2013-12-26 13:29:35 -05:00
mei_cl_bus.h
memblock.h include/linux/memblock.h: add __init to memblock_set_bottom_up() 2014-08-06 18:01:15 -07:00
memcontrol.h memcg: cleanup kmem cache creation/destruction functions naming 2014-06-04 16:54:08 -07:00
memory.h drivers: base: Add prototype declaration to the header file 2013-12-20 12:20:26 -08:00
memory_hotplug.h memory-hotplug: add zone_for_memory() for selecting zone for new memory 2014-08-06 18:01:21 -07:00
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
mic_bus.h misc: mic: add a bus driver for virtual MIC devices 2014-07-11 18:27:56 -07:00
micrel_phy.h micrel: add support for KSZ8041RNLI 2013-12-11 13:54:13 -05:00
migrate.h mm, migration: add destination page freeing callback 2014-06-04 16:54:06 -07:00
migrate_mode.h
mii.h
miscdevice.h miscdevice.h: Simple syntax fix to make pointers consistent. 2014-05-27 17:43:11 -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
mm_inline.h
mm_types.h x86/mm: Add tracepoints for TLB flushes 2014-07-31 08:48:51 -07:00
mman.h mm: add overcommit_kbytes sysctl variable 2014-01-21 16:19:44 -08:00
mmdebug.h include/linux/mmdebug.h: add VM_WARN_ONCE() 2014-08-06 18:01:18 -07:00
mmiotrace.h
mmu_context.h
mmu_notifier.h mmu_notifier: add call_srcu and sync function for listener to delay call and sync 2014-08-06 18:01:22 -07:00
mmzone.h mm: page_alloc: reduce cost of the fair zone allocation policy 2014-08-06 18:01:20 -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 Add module param type 'ullong' 2014-07-17 22:07:37 +02:00
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
mroute.h
mroute6.h
msdos_fs.h
msg.h ipc: whitespace cleanup 2014-01-27 21:02:39 -08:00
msi.h PCI/MSI: Cache Multiple Message Capable in struct msi_desc 2014-07-03 16:55:07 -06:00
msm_mdp.h
mutex-debug.h
mutex.h arch, locking: Ciao arch_mutex_cpu_relax() 2014-07-17 12:32:47 +02:00
mv643xx.h
mv643xx_eth.h
mv643xx_i2c.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 openvswitch: Enable tunnel GSO for OVS bridge. 2014-07-24 01:15:04 -07:00
netdevice.h net: kernel-doc compliant documentation for net_device 2014-07-31 21:34:20 -07:00
netfilter.h
netfilter_bridge.h
netfilter_ipv4.h
netfilter_ipv6.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
nfs.h pnfs: support multiple verfs per direct req 2014-05-29 11:11:48 -04:00
nfs3.h
nfs4.h nfs4: remove unused CHANGE_SECURITY_LABEL 2014-06-06 19:22:49 -04:00
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_fs_i.h
nfs_fs_sb.h
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
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 acpi, apei, ghes: Make NMI error notification to be GHES architecture extension. 2014-07-22 15:05:06 -07:00
node.h
nodemask.h mm, oom: ensure memoryless node zonelist always includes zones 2014-08-06 18:01:21 -07:00
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.h DeviceTree for 3.16: 2014-06-04 10:02:38 -07:00
of_address.h of: Provide a function to request and map memory 2014-07-23 12:02:30 +02: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: Add memory limiting function for flattened devicetrees 2014-07-29 21:26:45 -06: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: fix circular dependency in of_mdio code 2014-07-02 00:24:14 -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
oid_registry.h pefile: Parse the "Microsoft individual code signing" data blob 2014-07-09 14:58:37 +01:00
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 iommu/omap: Remove virtual memory manager 2014-07-29 12:38:07 +02:00
omap-mailbox.h
omapfb.h
oom.h mm, oom: rename zonelist locking functions 2014-08-06 18:01:21 -07:00
openvswitch.h
oprofile.h
osq_lock.h locking/spinlocks/mcs: Introduce and use init macro and function for osq locks 2014-07-16 13:28:05 +02:00
oxu210hp.h
padata.h
page-debug-flags.h
page-flags-layout.h
page-flags.h mm: page-flags: clean up the page flag test, set, clear macros 2014-08-06 18:01:17 -07:00
page-isolation.h
page_cgroup.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: describe mmap_sem rules for __lock_page_or_retry() and callers 2014-08-06 18:01:20 -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.h
parport_pc.h
parser.h lib/parser.c: add match_wildcard() function 2014-01-23 16:36:55 -08:00
pata_arasan_cf_data.h
patchkey.h
path.h
pch_dma.h
pci-acpi.h ACPI / PM: Revork the handling of ACPI device wakeup notifications 2014-07-23 01:00:45 +02:00
pci-aspm.h
pci-ats.h PCI: Removed unused parts of Page Request Interface support 2014-01-10 14:00:47 -07:00
pci-dma.h
pci.h Char / Misc driver patches for 3.17-rc1 2014-08-04 17:32:24 -07:00
pci_hotplug.h
pci_ids.h PCI: Add include guard to include/linux/pci_ids.h 2014-07-10 16:49:15 -06:00
pcieport_if.h
pda_power.h
pe.h Provide PE binary definitions 2014-07-09 14:58:37 +01:00
percpu-defs.h Merge branch 'for-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu 2014-08-04 10:09:27 -07:00
percpu-refcount.h percpu-refcount: implement percpu_ref_reinit() and percpu_ref_is_zero() 2014-06-28 08:10:14 -04:00
percpu-rwsem.h
percpu.h percpu: move {raw|this}_cpu_*() definitions to include/linux/percpu-defs.h 2014-06-17 19:12:39 -04:00
percpu_counter.h
percpu_ida.h percpu_ida: Make percpu_ida_alloc + callers accept task state bitmask 2014-01-23 20:17:18 +00: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.h net: libphy: Add phy specific function to access mmd phy registers 2014-07-30 20:00:21 -07:00
phy_fixed.h net: phy: fix sparse warning in fixed.c 2014-06-05 15:38:57 -07:00
pid.h
pid_namespace.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 driver core: platform: add device binding path 'driver_override' 2014-07-08 15:31:26 -07:00
plist.h lib/plist: add plist_requeue 2014-06-04 16:54:07 -07:00
pm.h PM / sleep: Mechanism to avoid resuming runtime-suspended devices unnecessarily 2014-05-16 23:15:44 +02: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: Create PM workqueue if runtime PM is not configured too 2014-07-23 01:00:36 +02:00
pm_wakeup.h
pmu.h
pnfs_osd_xdr.h
pnp.h
poison.h
poll.h
posix-clock.h
posix-timers.h
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_acl_xattr.h fs: add generic xattr_acl handlers 2014-01-25 23:58:17 -05:00
power_supply.h power_supply: Add inlmt,iterm, min/max temp props 2014-07-18 23:40:23 +02:00
powercap.h
ppp-comp.h
ppp_channel.h
ppp_defs.h
pps-gpio.h
pps_kernel.h
preempt.h sched/preempt/x86: Fix voluntary preempt for x86 2014-01-23 14:48:35 +01:00
preempt_mask.h sched/preempt, locking: Rework local_bh_{dis,en}able() 2014-01-13 17:32:27 +01:00
prefetch.h
printk.h printk: rename DEFAULT_MESSAGE_LOGLEVEL 2014-08-06 18:01:24 -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.h pstore: Don't allow high traffic options on fragile devices 2013-12-20 13:12:01 -08:00
pstore_ram.h
pti.h
ptp_classify.h ptp: Classify ptp over ip over vlan packets 2014-07-07 16:57:18 -07: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.h pwm: modify PWM_LOOKUP to initialize all struct pwm_lookup members 2014-05-21 11:19:36 +02:00
pwm_backlight.h pwm-backlight: switch to gpiod interface 2014-05-07 10:15:31 +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 fs/ramfs/file-nommu.c: make ramfs_nommu_get_unmapped_area() and ramfs_nommu_mmap() static 2014-01-23 16:36:58 -08:00
random.h random: Add arch_has_random[_seed]() 2014-03-19 22:24:08 -04:00
range.h
ras.h RAS, debugfs: Add debugfs interface for RAS subsystem 2014-06-25 11:22:03 -07:00
ratelimit.h
rational.h
rbtree.h
rbtree_augmented.h
rculist.h list: fix order of arguments for hlist_add_after(_rcu) 2014-08-06 18:01:24 -07:00
rculist_bl.h
rculist_nulls.h
rcupdate.h rcu: Handle obsolete references to TINY_PREEMPT_RCU 2014-07-09 09:14:17 -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 reciprocal_divide: update/correction of the algorithm 2014-01-21 23:17:20 -08:00
regmap.h regmap: Fix return code for stub regmap_get_device() 2014-07-25 19:01:53 +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 reservation: add suppport for read-only access using rcu 2014-07-08 13:41:08 -07:00
reset-controller.h reset: Silence warning in reset-controller.h 2014-01-16 12:00:56 -08:00
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
rhashtable.h lib: Resizable, Scalable, Concurrent Hash Table 2014-08-02 19:49:38 -07:00
ring_buffer.h ring-buffer: Check if buffer exists before polling 2014-06-10 09:46:00 -04:00
rio.h rapidio: rework device hierarchy and introduce mport class of devices 2014-04-07 16:36:07 -07:00
rio_drv.h
rio_ids.h
rio_regs.h
rmap.h mm/rmap.c: cleanup ttu_flags 2014-06-04 16:54:12 -07:00
rndis.h hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event 2014-06-19 21:17:37 -07:00
root_dev.h
rotary_encoder.h
rpmsg.h
rslib.h
rtc-ds2404.h
rtc-v3020.h
rtc.h
rtmutex.h rtmutex: Confine deadlock logic to futex 2014-06-21 22:05:30 +02:00
rtnetlink.h bridge: fdb dumping takes a filter device 2014-07-10 12:37:33 -07:00
rwlock.h
rwlock_api_smp.h locking: Optimize lock_bh functions 2014-01-13 13:47:36 +01:00
rwlock_types.h
rwsem-spinlock.h locking/rwsem: Rename 'activity' to 'count' 2014-07-16 14:56:55 +02:00
rwsem.h locking/rwsem: Add CONFIG_RWSEM_SPIN_ON_OWNER 2014-07-16 14:57:13 +02:00
rxrpc.h
s3c_adc_battery.h
sa11x0-dma.h
scatterlist.h scatterlist: allow chaining to preallocated chunks 2014-07-25 17:16:21 -04:00
scc.h
sched.h Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security 2014-08-06 08:06:39 -07:00
sched_clock.h sched_clock: Remove deprecated setup_sched_clock() API 2014-04-22 13:38:33 -07:00
screen_info.h
sctp.h sctp: fix missing SCTP mailing list address update 2014-01-19 19:55:50 -08:00
scx200.h
scx200_gpio.h
sdb.h
sdla.h
seccomp.h seccomp: implement SECCOMP_FILTER_FLAG_TSYNC 2014-07-18 12:13:40 -07:00
securebits.h
security.h Merge branch 'stable-3.16' of git://git.infradead.org/users/pcmoore/selinux into next 2014-07-30 01:31:46 +10:00
selection.h
selinux.h
sem.h
semaphore.h
seq_file.h
seq_file_net.h
seqlock.h Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-08-05 17:46:42 -07:00
seqno-fence.h seqno-fence: Hardware dma-buf implementation of fencing (v6) 2014-07-08 12:50:59 -07:00
serial.h
serial_8250.h serial/uart/8250: Add tunable RX interrupt trigger I/F of FIFO buffers 2014-07-17 18:23:35 -07:00
serial_bcm63xx.h tty: serial: bcm63xx_uart: define UART_REG_SIZE constant 2014-02-28 16:27:18 -08:00
serial_core.h Serial: allow port drivers to have a default attribute group 2014-07-17 18:21:21 -07: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
serio.h Input: serio - add firmware_id sysfs attribute 2014-04-19 22:42:19 -07:00
sfi.h
sfi_acpi.h ACPI / SFI: Fix wrong <acpi/acpi.h> inclusion in SFI/ACPI wrapper - table definitions. 2014-07-23 01:10:45 +02:00
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_eth: add PHY IRQ to platform data 2013-12-19 19:09:38 -05:00
sh_intc.h
sh_timer.h clocksource: shmobile: Remove unused sh_timer_config members 2014-07-02 16:01:51 +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: Always untag vlan-tagged traffic on input. 2014-08-11 12:16:51 -07:00
slab.h memcg: cleanup kmem cache creation/destruction functions naming 2014-06-04 16:54:08 -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
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.h locking: Add an smp_mb__after_unlock_lock() for UNLOCK+BLOCK barrier 2013-12-16 11:36:13 +01:00
spinlock_api_smp.h locking: Optimize lock_bh functions 2014-01-13 13:47:36 +01:00
spinlock_api_up.h locking: Optimize lock_bh functions 2014-01-13 13:47:36 +01:00
spinlock_types.h
spinlock_types_up.h
spinlock_up.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 net: stmmac: Support devicetree configs for mcast and ucast filter entries 2014-07-31 14:13:29 -07:00
stmp3xxx_rtc_wdt.h
stmp_device.h
stop_machine.h
string.h lib: add glibc style strchrnul() variant 2014-05-23 11:23:27 +09:00
string_helpers.h
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: replace init_page_accessed by __SetPageReferenced 2014-08-06 18:01:19 -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.h
sys_soc.h
syscalls.h Cleanups and bug fixes to /dev/random, add a new getrandom(2) system 2014-08-06 08:16:24 -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.h
task_io_accounting_ops.h
task_work.h
taskstats_kern.h
tboot.h
tc.h
tca6416_keypad.h
tcp.h tcp: add init_req method to tcp_request_sock_ops 2014-06-27 15:53:35 -07:00
tegra-ahb.h
tegra-cpuidle.h
tegra-powergate.h ARM: tegra: fix tegra_powergate_sequence_power_up() inline 2014-01-14 08:01:10 -08:00
tegra-soc.h
textsearch.h
textsearch_fsm.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 Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-08-04 16:23:30 -07:00
tifm.h
timb_dma.h
timb_gpio.h
time.h time: Consolidate the time accessor prototypes 2014-07-23 10:17:54 -07:00
time64.h time: More core infrastructure for timespec64 2014-07-23 10:17:53 -07:00
timekeeper_internal.h timekeeping: Fixup typo in update_vsyscall_old definition 2014-07-30 09:26:25 +02:00
timekeeping.h timekeeping: Provide fast and NMI safe access to CLOCK_MONOTONIC 2014-07-23 15:01:55 -07:00
timer.h
timerfd.h timerfd: Implement timerfd_ioctl method to restore timerfd_ctx::ticks, v3 2014-07-18 11:49:57 +02:00
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.h tpm: Provide a generic means to override the chip returned timeouts 2014-07-29 23:10:56 +02:00
tpm_command.h
trace_clock.h
trace_seq.h tracing: Add trace_seq_buffer_ptr() helper function 2014-07-01 07:13:39 -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.h drivers: tty: Merge alloc_tty_struct and initialize_tty_struct 2014-07-11 17:54:28 -07:00
tty_driver.h tty: Document locking for tty driver methods 2014-07-10 16:05:19 -07:00
tty_flip.h tty: Halve flip buffer GFP_ATOMIC memory consumption 2013-12-09 11:09:24 -08:00
tty_ldisc.h tty_ldisc: add more limits to the @write_wakeup 2014-04-24 16:16:33 -07: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 sched/preempt: Take away preempt_enable_no_resched() from modules 2014-01-13 13:47:37 +01:00
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.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending 2014-06-28 09:43:58 -07:00
uio_driver.h
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.h USB: separate usb_address0 mutexes for each bus 2014-05-27 16:11:49 -07:00
usb_usual.h usb-storage/SCSI: Add broken_fua blacklist flag 2014-06-30 22:47:18 -07:00
usbdevice_fs.h
user-return-notifier.h
user.h
user_namespace.h
uts.h
utsname.h
uuid.h
uwb.h
verify_pefile.h pefile: Parse a PE binary to find a key and a signature contained therein 2014-07-09 14:58:37 +01:00
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-core.h
via-gpio.h
via.h
via_i2c.h
videodev2.h
virtio.h virtio: virtio_break_device() to mark all virtqueues broken. 2014-04-28 11:34:13 +09:30
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
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 mm/vmalloc.c: clean up map_vm_area third argument 2014-08-06 18:01:19 -07:00
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.h
vt_buffer.h
vt_kern.h
vtime.h
w1-gpio.h drivers/w1/masters/w1-gpio.c: add strong pullup emulation 2014-01-23 16:37:04 -08:00
wait.h sched: Allow wait_on_bit_action() functions to support a timeout 2014-07-16 15:10:41 +02: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 sched: Remove proliferation of wait_on_bit() action functions 2014-07-16 15:10:39 +02:00
ww_mutex.h
xattr.h
xz.h
yam.h
z2_battery.h
zbud.h mm/zbud: change zbud_alloc size type to size_t 2014-08-06 18:01:23 -07:00
zconf.h
zlib.h zlib: clean up some dead code 2014-08-06 18:01:24 -07:00
zorro.h
zpool.h mm/zpool: implement common zpool api to zbud/zsmalloc 2014-08-06 18:01:23 -07:00
zsmalloc.h zsmalloc: add copyright 2014-01-30 16:56:55 -08:00
zutil.h