alistair23-linux/include/linux
Hannes Frederic Sowa 809fa972fd reciprocal_divide: update/correction of the algorithm
Jakub Zawadzki noticed that some divisions by reciprocal_divide()
were not correct [1][2], which he could also show with BPF code
after divisions are transformed into reciprocal_value() for runtime
invariance which can be passed to reciprocal_divide() later on;
reverse in BPF dump ended up with a different, off-by-one K in
some situations.

This has been fixed by Eric Dumazet in commit aee636c480
("bpf: do not use reciprocal divide"). This follow-up patch
improves reciprocal_value() and reciprocal_divide() to work in
all cases by using Granlund and Montgomery method, so that also
future use is safe and without any non-obvious side-effects.
Known problems with the old implementation were that division by 1
always returned 0 and some off-by-ones when the dividend and divisor
where very large. This seemed to not be problematic with its
current users, as far as we can tell. Eric Dumazet checked for
the slab usage, we cannot surely say so in the case of flex_array.
Still, in order to fix that, we propose an extension from the
original implementation from commit 6a2d7a955d resp. [3][4],
by using the algorithm proposed in "Division by Invariant Integers
Using Multiplication" [5], Torbjörn Granlund and Peter L.
Montgomery, that is, pseudocode for q = n/d where q, n, d is in
u32 universe:

1) Initialization:

  int l = ceil(log_2 d)
  uword m' = floor((1<<32)*((1<<l)-d)/d)+1
  int sh_1 = min(l,1)
  int sh_2 = max(l-1,0)

2) For q = n/d, all uword:

  uword t = (n*m')>>32
  q = (t+((n-t)>>sh_1))>>sh_2

The assembler implementation from Agner Fog [6] also helped a lot
while implementing. We have tested the implementation on x86_64,
ppc64, i686, s390x; on x86_64/haswell we're still half the latency
compared to normal divide.

Joint work with Daniel Borkmann.

  [1] http://www.wireshark.org/~darkjames/reciprocal-buggy.c
  [2] http://www.wireshark.org/~darkjames/set-and-dump-filter-k-bug.c
  [3] https://gmplib.org/~tege/division-paper.pdf
  [4] http://homepage.cs.uiowa.edu/~jones/bcd/divide.html
  [5] http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.1.2556
  [6] http://www.agner.org/optimize/asmlib.zip

Reported-by: Jakub Zawadzki <darkjames-ws@darkjames.pl>
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Austin S Hemmelgarn <ahferroin7@gmail.com>
Cc: linux-kernel@vger.kernel.org
Cc: Jesse Gross <jesse@nicira.com>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Stephen Hemminger <stephen@networkplumber.org>
Cc: Matt Mackall <mpm@selenic.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Christoph Lameter <cl@linux-foundation.org>
Cc: Andy Gospodarek <andy@greyhouse.net>
Cc: Veaceslav Falico <vfalico@redhat.com>
Cc: Jay Vosburgh <fubar@us.ibm.com>
Cc: Jakub Zawadzki <darkjames-ws@darkjames.pl>
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2014-01-21 23:17:20 -08:00
..
amba Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2013-11-15 16:47:22 -08:00
bcma bcma: export bcma_find_core_unit() 2014-01-04 20:25:19 -05:00
byteorder
can can: mcp251x: Eliminate irq_flags from driver platform_data 2013-08-21 09:28:29 +02:00
ceph libceph: add function to ensure notifies are complete 2013-09-09 11:15:49 -07:00
clk ARM: mxs: remove custom .init_time hook 2013-09-29 21:09:34 +02:00
crush
decompress lib: add support for LZ4-compressed kernel 2013-07-09 10:33:30 -07:00
dma dma: mmp_pdma: add filter function 2013-08-14 13:55:15 +05:30
extcon extcon: gpio: Add support for active-low presence to detect pins 2013-09-27 09:37:01 +09:00
fsl/bestcomm dma: mxs-dma: remove code left from generic DMA binding conversion 2013-08-19 14:20:21 +05:30
gpio gpiolib: add missing declarations 2013-12-03 13:10:47 +01:00
hsi
i2c Merge branch 'i2c/for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux 2013-11-18 15:50:07 -08:00
iio iio: Remove unused iio_sw_buffer_preenable() 2013-10-16 19:17:06 +01:00
input For the 3.11 merge we only have one new MFD driver for the Kontron PLD. 2013-07-10 11:10:27 -07:00
irqchip Merge branch 'for-linus' of git://git.linaro.org/people/rmk/linux-arm 2013-11-14 08:51:29 +09:00
isdn
lockd
mfd mfd/rtc: s5m: fix register updating by adding regmap for RTC 2013-12-12 18:19:26 -08:00
mlx4 net/mlx4_core: Add basic support for TCP/IP offloads under tunneling 2013-12-31 14:31:43 -05:00
mlx5 mlx5: Use enum to indicate adapter page size 2013-11-08 14:43:01 -08:00
mmc mmc: add SDIO identifiers for Broadcom WLAN devices 2014-01-06 15:48:06 -05:00
mtd mtd: nand_bbt: kill NAND_BBT_SCANALLPAGES 2013-11-06 23:33:14 -08:00
netfilter netfilter: ipset: remove unused code 2014-01-03 23:41:35 +01:00
netfilter_arp
netfilter_bridge
netfilter_ipv4
netfilter_ipv6
nfsd
phy drivers: phy: add generic PHY framework 2013-09-27 17:35:41 -07:00
pinctrl pinctrl/gpio: non-linear GPIO ranges accesible from gpiolib 2013-10-16 15:33:50 +02:00
platform_data net: Cleanup in eth-netx.h 2014-01-02 03:30:35 -05:00
power power_supply: Add support for bq24735 charger 2013-10-25 15:56:51 -07:00
raid md update for v3.12 2013-09-10 13:03:41 -07:00
regulator Merge remote-tracking branch 'regulator/topic/optional' into regulator-next 2013-10-24 11:11:39 +01:00
rtc
sched Merge branch 'sched/core' into core/locking, to prepare the kernel/locking/ file move 2013-11-06 07:50:37 +01:00
spi Merge remote-tracking branch 'spi/topic/wr' into spi-next 2013-10-25 09:51:41 +01:00
ssb ssb: provide phy address for Gigabit Ethernet driver 2013-10-02 15:40:57 -04:00
sunrpc SUNRPC: Add a helper to switch the transport of an rpc_clnt 2013-10-28 15:21:32 -04:00
unaligned
usb usb: wusbcore: fix deadlock in wusbhc_gtk_rekey 2013-12-02 15:21:04 -08:00
uwb include: Convert ethernet mac address declarations to use ETH_ALEN 2013-08-02 12:33:54 -07:00
wimax
8250_pci.h
a.out.h
acct.h
acpi.h ACPI: Provide acpi_dev_name accessor for struct acpi_device device name 2013-11-14 23:20:45 +01:00
acpi_dma.h dma: acpi-dma: parse CSRT to extract additional resources 2013-05-14 10:23:57 +05:30
acpi_gpio.h gpiolib / ACPI: allow passing GPIOF_ACTIVE_LOW for GpioInt resources 2013-10-19 23:32:14 +02:00
acpi_io.h
acpi_pmtmr.h
adb.h
adfs_fs.h
aer.h PCI changes for the v3.11 merge window: 2013-07-03 16:31:35 -07:00
agp_backend.h
agpgart.h
ahci_platform.h
aio.h aio: Kill ki_dtor 2013-07-30 11:53:12 -04:00
alarmtimer.h alarmtimer: Add functions for timerfd support 2013-05-29 12:57:34 -07:00
altera_jtaguart.h
altera_uart.h
amd-iommu.h
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h ... and kill anon_inode_getfile_private() 2013-11-09 00:16:28 -05:00
apm-emulation.h
apm_bios.h
apple_bl.h
arcdevice.h
arm-cci.h drivers: bus: add ARM CCI support 2013-05-29 15:50:34 -04:00
asn1.h
asn1_ber_bytecode.h
asn1_decoder.h
assoc_array.h KEYS: Fix multiple key add into associative array 2013-12-02 11:24:18 +00:00
assoc_array_priv.h Add a generic associative array implementation. 2013-09-24 10:35:17 +01:00
async.h
async_tx.h drivers/dma: remove unused support for MEMSET operations 2013-07-03 16:07:42 -07:00
ata.h libata: Add some missing command descriptions 2013-10-27 08:40:39 -04:00
ata_platform.h
atalk.h
ath9k_platform.h ath9k: Use a separate TX gain table for WZR-HP-G450H 2013-12-09 15:37:58 -05:00
atm.h
atm_suni.h
atm_tcp.h
atmdev.h
atmel-mci.h
atmel-pwm-bl.h
atmel-ssc.h ARM: atmel-ssc: change phybase type to dma_addr_t 2013-07-15 11:07:56 +01:00
atmel_pdc.h
atmel_pwm.h
atmel_serial.h tty/serial: at91: add a fallback option to determine uart/usart property 2013-10-17 13:31:19 -07:00
atmel_tc.h
atomic.h
attribute_container.h
audit.h audit: call audit_bprm() only once to add AUDIT_EXECVE information 2013-11-05 11:15:03 -05: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: test bdi_init failure 2013-11-08 08:59:44 -07:00
backlight.h backlight: introduce backlight_device_registered 2013-10-16 01:16:04 +02:00
balloon_compaction.h mm: avoid reinserting isolated balloon pages into LRU lists 2013-09-30 14:31:02 -07:00
basic_mmio_gpio.h
bcd.h
bch.h
bcm47xx_wdt.h
bfin_mac.h
binfmts.h Merge branch 'akpm' (patches from Andrew Morton) 2013-11-13 15:45:43 +09:00
bio.h Merge branch 'blk-mq/core' into for-3.13/core 2013-11-08 09:08:12 -07:00
bit_spinlock.h
bitmap.h
bitops.h ACPI and power management updates for 3.13-rc1 2013-11-14 13:41:48 +09:00
bitrev.h
blk-iopoll.h
blk-mq.h blk-mq: fix for flush deadlock 2013-10-28 13:33:58 -06:00
blk_types.h blk-mq: new multi-queue block IO queueing mechanism 2013-10-25 11:56:00 +01:00
blkdev.h blk-mq: ensure that we set REQ_IO_STAT so diskstats work 2013-11-19 09:25:07 -07:00
blktrace_api.h kernel: trace: blktrace: remove redundent memcpy() in compat_blk_trace_setup() 2013-11-08 09:04:30 -07:00
blockgroup_lock.h
bma150.h
bootmem.h mm: kill free_all_bootmem_node() 2013-07-03 16:07:39 -07:00
bottom_half.h
brcmphy.h broadcom: add include guards to include/linux/brcmphy.h 2013-05-15 14:42:15 -07:00
bsearch.h
bsg-lib.h
bsg.h
btree-128.h
btree-type.h
btree.h
btrfs.h
buffer_head.h direct-io: Implement generic deferred AIO completions 2013-09-04 09:23:46 -04:00
bug.h
c2port.h
cache.h
capability.h userns: Kill nsown_capable it makes the wrong thing easy 2013-08-30 23:44:11 -07:00
cb710.h
cciss_ioctl.h
cdev.h
cdrom.h
cfag12864b.h
cgroup.h cgroup: kill css_id 2013-09-23 21:44:16 -04:00
cgroup_subsys.h net: netprio: rename config to be more consistent with cgroup configs 2014-01-03 23:41:42 +01:00
circ_buf.h
cleancache.h mm: cleancache: clean up cleancache_enabled 2013-04-30 17:04:01 -07:00
clk-private.h clk: add support for clock reparent on set_rate 2013-08-19 12:27:17 -07:00
clk-provider.h clk: of: helper for determining number of parent clocks 2013-10-07 23:13:33 -07:00
clk.h
clkdev.h
clksrc-dbx500-prcmu.h
clockchips.h clockchips: Add FEAT_PERCPU clockevent flag 2013-10-02 11:33:23 +02:00
clocksource.h clocksource: Extract max nsec calculation into separate function 2013-07-30 11:24:20 -07:00
cm4000_cs.h
cmdline-parser.h cmdline-parser: fix build 2013-11-15 09:32:23 +09:00
cn_proc.h
cnt32_to_63.h
coda.h include/linux/coda.h: remove useless '#else' 2013-07-30 11:11:44 +02:00
coda_psdev.h
com20020.h
compaction.h
compat.h Merge branch 'akpm' (patches from Andrew Morton) 2013-11-13 15:45:43 +09:00
compiler-gcc.h
compiler-gcc3.h
compiler-gcc4.h compiler/gcc4: Add quirk for 'asm goto' miscompilation bug 2013-10-11 07:39:14 +02:00
compiler-intel.h x86, build, icc: Remove uninitialized_var() from compiler-intel.h 2013-12-10 15:01:01 -08:00
compiler.h
completion.h sched: remove INIT_COMPLETION 2013-11-15 09:32:21 +09:00
concap.h
configfs.h
connector.h
console.h vt: delete unneeded function unregister_con_driver 2013-05-20 12:27:59 -07:00
console_struct.h
consolemap.h
context_tracking.h vtime: Optimize full dynticks accounting off case with static keys 2013-08-14 17:14:54 +02:00
context_tracking_state.h context_tracking: Split low level state headers 2013-08-14 17:14:51 +02:00
cordic.h
coredump.h constify do_coredump() argument 2013-11-09 00:16:29 -05:00
cper.h ACPI, APEI, CPER: Add UEFI 2.4 support for memory error 2013-10-23 10:10:20 -07:00
cpu.h ACPI and power management updates for 3.13-rc1 2013-11-14 13:41:48 +09:00
cpu_cooling.h thermal: cpu_cooling: fix stub function 2013-07-08 10:13:40 -04:00
cpu_pm.h
cpu_rmap.h Remove GENERIC_HARDIRQ config option 2013-09-13 15:09:52 +02:00
cpufreq.h Revert "cpufreq: suspend governors on system suspend/hibernate" 2013-12-08 01:04:17 +01:00
cpuidle.h cpuidle: remove cpuidle_unregister_governor() 2013-10-30 01:21:24 +01:00
cpumask.h
cpuset.h cpuset: Fix potential deadlock w/ set_mems_allowed 2013-11-06 12:40:27 +01:00
cramfs_fs.h
cramfs_fs_sb.h
crash_dump.h crash_dump: fix compilation error (on MIPS at least) 2014-01-15 14:19:42 +07:00
crc-ccitt.h
crc-itu-t.h
crc-t10dif.h Reinstate "crypto: crct10dif - Wrap crc_t10dif function all to use crypto transform framework" 2013-09-07 12:56:26 +10:00
crc7.h
crc8.h
crc16.h
crc32.h lib: crc32: add functionality to combine two crc32{, c}s in GF(2) 2013-11-03 23:04:56 -05:00
crc32c.h
cred.h
crypto.h
cryptohash.h
cryptouser.h
cs5535.h
ctype.h lib, net: make isodigit() public and use it 2013-04-29 18:28:19 -07:00
cuda.h
cyclades.h
cycx_x25.h
davinci_emac.h
dca.h
dcache.h dcache: allow word-at-a-time name hashing with big-endian CPUs 2013-12-12 10:39:01 -08:00
dccp.h
dcookies.h
debug_locks.h lockdep: remove task argument from debug_check_no_locks_held 2013-05-12 14:16:21 +02:00
debugfs.h fs/debugfs: add declaration for no CONFIG_DEBUG_FS 2013-10-03 16:14:12 -07:00
debugobjects.h debugobjects: Make debug_object_activate() return status 2013-08-18 17:39:55 -07:00
delay.h
delayacct.h
devfreq.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2013-11-15 16:47:22 -08:00
device-mapper.h dm mpath: disable WRITE SAME if it fails 2013-09-20 10:36:34 -04:00
device.h ACPI / driver core: Store an ACPI device pointer in struct acpi_dev_node 2013-11-14 23:14:43 +01: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 include: Convert ethernet mac address declarations to use ETH_ALEN 2013-08-02 12:33:54 -07:00
dma-attrs.h
dma-buf.h dma-buf: Add debugfs support 2013-05-01 16:36:22 +05:30
dma-contiguous.h drivers: dma-contiguous: clean source code and prepare for device tree 2013-08-27 09:18:29 +02:00
dma-debug.h
dma-direction.h
dma-mapping.h ARM: 7795/1: mm: dma-mapping: Add dma_max_pfn(dev) helper function 2013-10-31 14:49:24 +00:00
dma_remapping.h
dmaengine.h Merge commit 'dmaengine-3.13-v2' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/dmaengine 2013-11-16 12:02:36 +05:30
dmapool.h
dmar.h
dmi.h DMI: Parse memory device (type 17) in SMBIOS 2013-10-23 10:10:12 -07:00
dnotify.h
dns_resolver.h
dqblk_qtree.h
dqblk_v1.h
dqblk_v2.h
drbd.h drbd: Allow online change of al-stripes and al-stripe-size 2013-06-28 16:04:36 +02:00
drbd_genl.h drbd: Allow online change of al-stripes and al-stripe-size 2013-06-28 16:04:36 +02:00
drbd_genl_api.h
drbd_limits.h drbd: Allow online change of al-stripes and al-stripe-size 2013-06-28 16:04:36 +02:00
ds1286.h
ds2782_battery.h
ds17287rtc.h
dtlk.h
dw_apb_timer.h Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2013-07-06 14:09:38 -07:00
dw_dmac.h
dynamic_debug.h
dynamic_queue_limits.h
earlycpio.h
ecryptfs.h
edac.h EDAC, GHES: Update ghes error record info 2013-10-23 10:11:00 -07:00
edd.h
edma.h
eeprom_93cx6.h
eeprom_93xx46.h
efi-bgrt.h
efi.h efivars, efi-pstore: Hold off deletion of sysfs entry until the scan is completed 2013-11-28 20:16:55 +00:00
efs_vh.h
eisa.h
elevator.h elevator: Fix a race in elevator switching 2013-07-03 13:25:24 +02:00
elf-fdpic.h
elf.h switch elf_coredump_extra_notes_write() to dump_emit() 2013-11-09 00:16:24 -05:00
elfcore-compat.h
elfcore.h switch elf_core_write_extra_data() to dump_emit() 2013-11-09 00:16:23 -05:00
elfnote.h
enclosure.h
err.h PTR_RET is now PTR_ERR_OR_ZERO 2013-07-15 11:25:00 +09:30
errno.h aio: remove retry-based AIO 2013-05-07 18:38:27 -07:00
errqueue.h
etherdevice.h etherdevice: Use ether_addr_copy to copy an Ethernet address 2014-01-15 15:39:33 -08:00
ethtool.h
eventfd.h Kill indirect include of file.h from eventfd.h, use fdget() in cgroup.c 2013-09-07 19:54:57 -04:00
eventpoll.h
evm.h
export.h asmlinkage, module: Make ksymtab and kcrctab symbols and __this_module __visible 2013-10-29 09:43:37 +10:30
exportfs.h fat: restructure export_operations 2013-04-29 18:28:40 -07:00
ext2_fs.h
extcon.h extcon: Simplify extcon_dev_register() prototype by removing unnecessary parameter 2013-09-27 09:37:01 +09:00
f2fs_fs.h f2fs: support the inline xattrs 2013-08-26 20:15:23 +09:00
f75375s.h
falloc.h
fanotify.h
fault-inject.h
fb.h framebuffer: Add fb_<level> convenience logging macros 2013-10-29 12:53:04 +02:00
fcdevice.h [networking]device.h: Remove extern from function prototypes 2013-09-26 15:06:58 -07:00
fcntl.h
fd.h
fddidevice.h [networking]device.h: Remove extern from function prototypes 2013-09-26 15:06:58 -07:00
fdtable.h don't bother with deferred freeing of fdtables 2013-05-01 17:31:42 -04:00
fec.h
file.h
filter.h net: filter: let bpf_tell_extensions return SKF_AD_MAX 2014-01-21 18:57:43 -08:00
fips.h
firewire.h firewire: fix libdc1394/FlyCap2 iso event regression 2013-07-27 20:24:36 +02:00
firmware-map.h
firmware.h firmware loader: don't export cache_firmware and uncache_firmware 2013-06-06 12:41:57 -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: add needed headers 2013-06-17 16:38:57 -07:00
fmc.h fmc: avoid readl/writel namespace conflict 2013-06-19 20:30:32 -07:00
font.h
freezer.h freezer: add new freezable helpers using freezer_do_not_count() 2013-05-12 14:16:22 +02:00
frontswap.h frontswap: get rid of swap_lock dependency 2013-04-30 17:04:00 -07:00
fs.h consolidate simple ->d_delete() instances 2013-11-15 22:04:17 -05:00
fs_enet_pd.h fs_enet: cleanup clock API use 2013-08-22 22:13:54 -07:00
fs_stack.h
fs_struct.h vfs: move get_fs_root_and_pwd() to single caller 2013-09-12 10:12:47 -07:00
fs_uart_pd.h
fscache-cache.h FS-Cache: Provide the ability to enable/disable cookies 2013-09-27 18:40:25 +01:00
fscache.h FS-Cache: Provide the ability to enable/disable cookies 2013-09-27 18:40:25 +01:00
fsl-diu-fb.h
fsl_devices.h
fsl_hypervisor.h
fsnotify.h Replace a bunch of file->dentry->d_inode refs with file_inode() 2013-06-29 12:57:13 +04:00
fsnotify_backend.h inotify: convert inotify_add_to_idr() to use idr_alloc_cyclic() 2013-04-29 18:28:41 -07:00
ftrace.h tracing: Make register/unregister_ftrace_command __init 2013-11-05 17:43:40 -05:00
ftrace_event.h ftrace, perf: Avoid infinite event generation loop 2013-11-19 16:57:40 +01:00
ftrace_irq.h
futex.h
gameport.h
gcd.h
genalloc.h lib/genalloc: add a helper function for DMA buffer allocation 2013-11-13 12:09:22 +09:00
generic_acl.h
genetlink.h
genhd.h
genl_magic_func.h genetlink: make multicast groups const, prevent abuse 2013-11-19 16:39:06 -05:00
genl_magic_struct.h
getcpu.h
gfp.h include/linux/gfp.h: fix the comment for GFP_ZONE_TABLE 2013-07-09 10:33:21 -07:00
gpio-fan.h
gpio-pxa.h
gpio.h GPIO bulk changes for the v3.13 development cycle 2013-11-12 15:50:46 +09:00
gpio_keys.h
gpio_mouse.h
gsmmux.h
hardirq.h sched: Extract the basic add/sub preempt_count modifiers 2013-09-25 14:07:54 +02:00
hash.h lib: introduce arch optimized hash library 2013-12-17 14:27:17 -05:00
hashtable.h hashtable: add hash_for_each_possible_rcu_notrace() 2013-10-11 17:21:14 +11:00
hdlc.h
hdlcdrv.h
hdmi.h video/hdmi: Rename HDMI_IDENTIFIER to HDMI_IEEE_OUI 2013-08-30 08:42:01 +10:00
hid-debug.h HID: debug: break out hid_dump_report() into hid-debug 2013-04-30 10:09:06 +02:00
hid-roccat.h
hid-sensor-hub.h HID: hid-sensor-hub: Add logical min and max 2013-12-02 21:05:30 +00:00
hid-sensor-ids.h iio: hid-sensors: Fix power and report state 2013-12-02 21:05:32 +00:00
hid.h HID: provide a helper for validating hid reports 2013-09-13 15:11:21 +02:00
hiddev.h
hidraw.h HID: hidraw: Add spinlock in struct hidraw to protect list 2013-08-26 21:40:24 +02:00
highmem.h
highuid.h
hil.h
hil_mlc.h
hippidevice.h [networking]device.h: Remove extern from function prototypes 2013-09-26 15:06:58 -07:00
host1x.h gpu: host1x: Add syncpoint base support 2013-10-31 09:55:48 +01:00
hp_sdc.h
hpet.h
hrtimer.h
htcpld.h
htirq.h
huge_mm.h mm, thp: move ptl taking inside page_check_address_pmd() 2013-11-15 09:32:14 +09:00
hugetlb.h include/linux/hugetlb.h: make isolate_huge_page() an inline 2013-12-12 18:19:25 -08:00
hugetlb_cgroup.h
hugetlb_inline.h
hw_breakpoint.h
hw_random.h
hwmon-sysfs.h
hwmon-vid.h hwmon: (atxp1) Set and use error code from vid_to_reg() 2013-10-13 16:16:26 -07:00
hwmon.h hwmon: Provide managed hwmon registration 2013-10-13 16:16:28 -07:00
hwspinlock.h
hyperv.h Merge 3.12-rc3 into char-misc-next 2013-09-29 18:27:03 -07: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
i2c-xiic.h
i2c.h i2c: Re-instate body of i2c_parent_is_i2c_adapter() 2014-01-14 17:11:13 +01:00
i2o.h
i7300_idle.h
i8042.h Input: add driver for slidebar on Lenovo IdeaPad laptops 2013-08-26 09:30:03 -07:00
i8253.h
i82593.h
icmp.h
icmpv6.h ipv6: Kill ipv6 dependency of icmpv6_send(). 2013-04-29 13:54:36 -04:00
ide.h ide: convert bus code to use dev_groups 2013-10-16 18:40:57 -07:00
idr.h Merge branch 'for-3.10/drivers' of git://git.kernel.dk/linux-block 2013-05-08 11:51:05 -07:00
ieee80211.h ieee80211: add definition for SMS4 key len 2014-01-10 20:12:13 +01:00
if_arp.h
if_bridge.h
if_eql.h
if_ether.h net: core: move mac_pton() to lib/net_utils.c 2013-06-05 12:00:27 -07:00
if_fddi.h
if_frad.h
if_link.h net/core: Add VF link state control 2013-06-13 17:51:04 -07:00
if_ltalk.h
if_macvlan.h macvlan: unify macvlan_pcpu_stats and vlan_pcpu_stats 2014-01-04 20:11:33 -05:00
if_phonet.h
if_pppol2tp.h
if_pppox.h
if_team.h team: add support for sending multicast rejoins 2013-07-23 16:52:47 -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 8021q: make vlan_pcpu_stats visible without CONFIG_VLAN_8021Q 2014-01-05 20:27:55 -05:00
igmp.h net: convert resend IGMP to notifier event 2013-07-23 16:52:47 -07:00
ihex.h
ima.h
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: document the existence of __initconst 2013-11-13 12:09:26 +09:00
init_ohci1394_dma.h
init_task.h seqcount: Add lockdep functionality to seqcount/seqlock structures 2013-11-06 12:40:26 +01:00
initrd.h
inotify.h
input-polldev.h
input.h
integrity.h
intel-iommu.h x86/iommu: correct ICS register offset 2013-09-24 13:04:07 +02:00
intel_mid_dma.h
intel_pmic_gpio.h
interrupt.h revert "softirq: Add support for triggering softirq work on softirqs" 2013-11-15 09:32:22 +09:00
interval_tree.h
interval_tree_generic.h
io-mapping.h
io.h Add arch_phys_wc_{add, del} to manipulate WC MTRRs if needed 2013-05-31 13:02:52 +10:00
ioc3.h
ioc4.h
iocontext.h
iommu-helper.h
iommu.h iommu: Change iommu driver to call io_page_fault trace event 2013-09-25 11:07:04 +02:00
ioport.h resource: add release_mem_region_adjustable() 2013-04-29 15:54:37 -07:00
ioprio.h
iova.h
ip.h
ipack.h
ipc.h
ipc_namespace.h ipc, msg: forbid negative values for "msg{max,mnb,mni}" 2013-11-03 10:53:11 -08:00
ipmi-fru.h FMC: add needed headers 2013-06-17 16:38:57 -07:00
ipmi.h
ipmi_smi.h
ipv6.h ipv6: make IPV6_RECVPKTINFO work for ipv4 datagrams 2014-01-19 19:53:18 -08:00
ipv6_route.h
irq.h genirq: Prevent spurious detection for unconditionally polled interrupts 2013-11-13 16:03:02 +01:00
irq_cpustat.h
irq_work.h
irqchip.h irqchip: Add irqchip_init dummy function 2013-06-06 10:23:58 +09:00
irqdesc.h Remove GENERIC_HARDIRQ config option 2013-09-13 15:09:52 +02:00
irqdomain.h irqdomain: make irq_linear_revmap() a fast path again 2013-06-24 14:02:41 +01:00
irqflags.h
irqnr.h Remove GENERIC_HARDIRQ config option 2013-09-13 15:09:52 +02:00
irqreturn.h genirq: Correct fuzzy and fragile IRQ_RETVAL() definition 2013-11-19 19:06:41 +01:00
isa.h
isapnp.h
iscsi_boot_sysfs.h
iscsi_ibft.h
isdn.h
isdn_divertif.h
isdn_ppp.h
isdnif.h
isicom.h
jbd.h jbd: use a single printk for jbd_debug() 2013-08-09 10:49:00 +02:00
jbd2.h jbd2: invalidate handle if jbd2_journal_restart() fails 2013-07-01 08:12:41 -04:00
jbd_common.h jbd/jbd2: relocate bit_spinlock header to jbd_common 2013-06-12 23:02:35 -04:00
jhash.h
jiffies.h jiffies: Avoid undefined behavior from signed overflow 2013-08-20 11:46:54 -07:00
journal-head.h jbd,jbd2: fix oops in jbd2_journal_put_journal_head() 2013-05-13 09:45:01 -04:00
joystick.h
jump_label.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2013-11-13 17:40:34 +09:00
jump_label_ratelimit.h static_key: WARN on usage before jump_label_init was called 2013-10-19 19:45:35 -04:00
jz4740-adc.h
kallsyms.h
kbd_diacr.h
kbd_kern.h tty: Remove dead code 2013-07-26 16:19:48 -07:00
kbuild.h
kcmp.h
kconfig.h
kcore.h proc: Split kcore bits from linux/procfs.h into linux/kcore.h 2013-04-29 15:42:02 -04:00
kd.h
kdb.h kdb: Add support for external NMI handler to call KGDB/KDB 2013-10-03 18:47:54 +02:00
kdebug.h
kdev_t.h
kern_levels.h
kernel-page-flags.h tools/vm/page-types.c: support KPF_SOFTDIRTY bit 2013-11-13 12:09:07 +09:00
kernel.h net: introduce reciprocal_scale helper and convert users 2014-01-21 23:17:20 -08:00
kernel_stat.h Remove GENERIC_HARDIRQ config option 2013-09-13 15:09:52 +02:00
kernelcapi.h
kexec.h PCI: Disable Bus Master only on kexec reboot 2013-12-07 14:20:28 -07:00
key-type.h KEYS: Add a 'trusted' flag and a 'trusted only' flag 2013-09-25 17:17:01 +01:00
key.h KEYS: Add a 'trusted' flag and a 'trusted only' flag 2013-09-25 17:17:01 +01:00
keyboard.h
kfifo.h kfifo API type safety 2013-11-15 09:32:23 +09:00
kgdb.h kdb: Add support for external NMI handler to call KGDB/KDB 2013-10-03 18:47:54 +02:00
khugepaged.h
klist.h
kmemcheck.h
kmemleak.h
kmod.h kmod: remove call_usermodehelper_fns() 2013-04-30 17:04:06 -07:00
kmsg_dump.h
kobj_completion.h kobject: introduce kobj_completion 2013-09-26 16:17:33 -07:00
kobj_map.h
kobject.h sysfs: remove ktype->namespace() invocations in directory code 2013-09-26 15:30:22 -07:00
kobject_ns.h sysfs: Restrict mounting sysfs 2013-08-28 21:35:14 -07:00
kprobes.h kprobes: allow to specify custom allocator for insn caches 2013-09-11 15:58:52 -07:00
kref.h Merge branch 'queue' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending 2013-05-16 07:55:07 -07:00
ks0108.h
ks8842.h
ks8851_mll.h
ksm.h
kthread.h kthread: implement probe_kthread_data() 2013-04-30 17:04:02 -07:00
ktime.h ktime: fix some scripts/kernel-doc warnings 2013-07-25 12:35:39 +02:00
kvm_host.h Merge branch 'kvm-ppc-queue' of git://github.com/agraf/linux-2.6 into queue 2013-11-04 10:20:57 +02:00
kvm_para.h
kvm_types.h
l2tp.h
lapb.h
latencytop.h
lcd.h lcd: add devm_lcd_device_{register,unregister}() 2013-07-03 16:07:43 -07:00
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 no need to keep brlock macros anymore... 2013-11-09 00:16:21 -05:00
lguest.h
lguest_launcher.h
libata.h libata: implement ATA_HORKAGE_NO_NCQ_TRIM and apply it to Micro M500 SSDs 2013-12-17 07:03:14 -05:00
libfdt.h
libfdt_env.h
libps2.h
license.h
linkage.h We get rid of the general module prefix confusion with a binary config option, 2013-05-05 10:58:06 -07:00
linux_logo.h
lis3lv02d.h
list.h list: introduce list_last_entry(), use list_{first,last}_entry() 2013-11-13 12:09:24 +09:00
list_bl.h
list_lru.h list_lru: dynamically adjust node arrays 2013-09-10 18:56:32 -04:00
list_nulls.h
list_sort.h
llc.h
llist.h llists: move llist_reverse_order from raid5 to llist.c 2013-11-15 09:32:22 +09:00
lockdep.h seqcount: Add lockdep functionality to seqcount/seqlock structures 2013-11-06 12:40:26 +01: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 lz4: fix compression/decompression signedness mismatch 2013-09-11 15:59:45 -07:00
lzo.h
m48t86.h
mailbox.h
maple.h
marvell_phy.h phy: Add Marvell 88E1510 phy ID 2013-05-31 00:48:22 -07:00
math64.h math64: Add mul_u64_u32_shr() 2013-12-11 15:52:34 +01:00
max17040_battery.h
mbcache.h
mbus.h bus: mvebu-mbus: Remove the no longer used name-based API 2013-08-06 14:10:45 +00:00
mc6821.h
mc146818rtc.h
mdio-bitbang.h
mdio-gpio.h
mdio-mux.h
mdio.h mdio: unused ethtool functions 2013-12-26 13:29:35 -05:00
mei_cl_bus.h
memblock.h mm/memblock.c: introduce bottom-up allocation mode 2013-11-13 12:09:08 +09:00
memcontrol.h mm: memcg: handle non-error OOM situations more gracefully 2013-10-16 21:35:53 -07:00
memory.h drivers: base: use standard device online/offline for state change 2013-08-21 11:52:20 -07:00
memory_hotplug.h mm/sparsemem: use PAGES_PER_SECTION to remove redundant nr_pages parameter 2013-11-13 12:09:06 +09:00
mempolicy.h mm, mempolicy: make mpol_to_str robust and always succeed 2013-11-13 12:09:05 +09:00
mempool.h
memstick.h
mg_disk.h
micrel_phy.h micrel: add support for KSZ8041RNLI 2013-12-11 13:54:13 -05:00
migrate.h aio/migratepages: make aio migrate pages sane 2013-12-21 17:56:08 -05:00
migrate_mode.h
mii.h
miscdevice.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse 2013-11-13 15:27:00 +09:00
mISDNdsp.h
mISDNhw.h
mISDNif.h
mm.h mm: do not allocate page->ptl dynamically, if spinlock_t fits to long 2013-12-20 12:25:45 -08:00
mm_inline.h mm: vmscan: fix do_try_to_free_pages() livelock 2013-09-11 15:58:01 -07:00
mm_types.h mm: do not allocate page->ptl dynamically, if spinlock_t fits to long 2013-12-20 12:25:45 -08:00
mman.h mm: factor commit limit calculation 2013-11-13 12:09:11 +09:00
mmdebug.h
mmiotrace.h
mmu_context.h
mmu_notifier.h
mmzone.h mm: vmscan: fix do_try_to_free_pages() livelock 2013-09-11 15:58:01 -07:00
mnt_namespace.h
mod_devicetable.h Revert "Input: introduce BTN/ABS bits for drums and guitars" 2013-09-07 09:48:41 -07:00
module.h module: remove rmmod --wait option. 2013-09-23 15:44:58 +09:30
moduleloader.h
moduleparam.h module: Add flag to allow mod params to have no arguments 2013-08-20 15:37:42 +09:30
mount.h RCU'd vfsmounts 2013-11-09 00:16:19 -05:00
mpage.h
mpi.h
mroute.h
mroute6.h
msdos_fs.h
msg.h ipc, msg: fix message length check for negative values 2013-11-13 12:09:36 +09:00
msi.h PCI: Fix whitespace, capitalization, and spelling errors 2013-11-14 11:28:18 -07:00
msm_mdp.h
mutex-debug.h mutex: Add support for wound/wait style locks 2013-06-26 12:10:56 +02:00
mutex.h locking/doc: Update references to kernel/mutex.c 2013-11-11 12:41:33 +01:00
mv643xx.h
mv643xx_eth.h include: Convert ethernet mac address declarations to use ETH_ALEN 2013-08-02 12:33:54 -07:00
mv643xx_i2c.h
mxm-wmi.h
n_r3964.h
namei.h RCU'd vfsmounts 2013-11-09 00:16:19 -05:00
nbd.h nbd: correct disconnect behavior 2013-07-03 16:08:05 -07:00
net.h net: replace macros net_random and net_srandom with direct calls to prandom 2014-01-14 15:15:25 -08:00
netdev_features.h net: Add layer 2 hardware acceleration operations for macvlan devices 2013-11-07 19:11:41 -05:00
netdevice.h net: Add GRO support for UDP encapsulating protocols 2014-01-21 18:05:04 -08:00
netfilter.h netfilter: add nftables 2013-10-14 17:15:48 +02:00
netfilter_bridge.h netfilter: Remove extern from function prototypes 2013-09-26 14:48:15 -07:00
netfilter_ipv4.h netfilter: Remove extern from function prototypes 2013-09-26 14:48:15 -07:00
netfilter_ipv6.h netfilter: Remove extern from function prototypes 2013-09-26 14:48:15 -07:00
netlink.h netlink: cleanup tap related functions 2014-01-01 23:43:36 -05:00
netpoll.h netpoll: fix rx_hook() interface by passing the skb 2013-10-25 19:26:58 -04:00
nfs.h
nfs3.h
nfs4.h NFS client bugfixes 2013-12-05 13:05:48 -08:00
nfs_fs.h NFS: Enabling v4.2 should not recompile nfsd and lockd 2013-11-19 16:20:40 -05:00
nfs_fs_i.h
nfs_fs_sb.h NFS: cache parsed auth_info in nfs_server 2013-10-28 15:37:43 -04:00
nfs_idmap.h
nfs_iostat.h
nfs_page.h
nfs_xdr.h NFS: add support for multiple sec= mount options 2013-10-28 15:38:02 -04:00
nfsacl.h
nilfs2_fs.h
nl802154.h
nls.h
nmi.h watchdog: Rename confusing state variable 2013-06-20 15:41:18 +02:00
node.h
nodemask.h numa: Mark __node_set() as __always_inline 2013-07-25 21:54:01 +02:00
notifier.h include/linux/memory.h: implement register_hotmemory_notifier() 2013-04-29 15:54:36 -07:00
nsc_gpio.h
nsproxy.h Rename nsproxy.pid_ns to nsproxy.pid_ns_for_children 2013-08-27 13:52:52 -04:00
ntb.h
nubus.h nubus: Kill nubus_proc_detach_device() 2013-05-04 14:47:26 -04:00
numa.h
nvme.h NVMe: Use normal shutdown 2013-09-03 16:40:32 -04:00
nvram.h
nwpserial.h
nx842.h
of.h DeviceTree updates for 3.13. This is a bit larger pull request than 2013-11-12 16:52:17 +09:00
of_address.h of: move of_translate_dma_address to of_address.h 2013-10-09 20:04:10 -05:00
of_device.h of/device: add helper to get cpu device node from logical cpu index 2013-08-21 10:29:51 +01:00
of_dma.h dma: of: Remove check on always true condition 2013-06-12 07:49:19 +05:30
of_fdt.h of: introduce common FDT machine related functions 2013-10-09 20:03:54 -05:00
of_gpio.h gpiolib: include gpio/consumer.h in of_gpio.h for desc_to_gpio() 2013-10-29 18:26:14 -07:00
of_iommu.h
of_irq.h dt/irq: add empty of_irq_count for !OF_IRQ 2013-11-08 10:47:28 -06:00
of_mdio.h phylib: Add of_phy_attach 2014-01-13 14:29:49 -08:00
of_mtd.h of_mtd: Add no-op stubs to support CONFIG_OF=n 2013-10-27 16:26:58 -07:00
of_net.h of: Make of_get_phy_mode() return int i.s.o. const int 2013-08-28 20:50:19 +01:00
of_pci.h of/irq: Create of_irq_parse_and_map_pci() to consolidate arch code. 2013-10-24 11:50:36 +01:00
of_pdt.h
of_platform.h of: remove of_platform_driver 2013-06-12 12:37:30 +01:00
oid_registry.h
olpc-ec.h Staging: olpc_dcon: replace some magic numbers 2013-08-15 17:22:27 -07:00
omap-dma.h
omap-iommu.h
omap-mailbox.h mailbox/omap: move the OMAP mailbox framework to drivers 2013-06-11 11:41:51 -05:00
omapfb.h
oom.h mm: add a helper function to check may oom condition 2013-11-13 12:09:04 +09:00
openvswitch.h
oprofile.h oprofile: get rid of pointless forward declarations of struct super_block 2013-09-03 22:52:48 -04:00
oxu210hp.h
padata.h padata: make the sequence counter an atomic_t 2013-10-30 12:02:58 +08:00
page-debug-flags.h
page-flags-layout.h mm: numa: Change page last {nid,pid} into {cpu,pid} 2013-10-09 14:47:45 +02:00
page-flags.h powerpc: Prepare to support kernel handling of IOMMU map/unmap 2013-10-11 17:24:39 +11:00
page-isolation.h
page_cgroup.h
pageblock-flags.h mm/pageblock: remove get/set_pageblock_flags 2013-07-03 16:07:32 -07:00
pagemap.h vm: adjust ifdef for TINY_RCU 2013-04-29 15:54:28 -07:00
pagevec.h mm: remove lru parameter from __pagevec_lru_add and remove parts of pagevec API 2013-07-03 16:07:31 -07:00
parport.h
parport_pc.h
parser.h
pata_arasan_cf_data.h ata: arasan: remove the need for platform_data 2013-04-19 22:25:51 +02:00
patchkey.h
path.h
pch_dma.h
pci-acpi.h ACPI: Eliminate the DEVICE_ACPI_HANDLE() macro 2013-11-14 23:17:21 +01:00
pci-aspm.h
pci-ats.h
pci-dma.h
pci.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2013-12-15 11:56:47 -08:00
pci_hotplug.h PCI: Fix whitespace, capitalization, and spelling errors 2013-11-14 11:28:18 -07:00
pci_ids.h SCSI misc on 20130915 2013-09-15 17:41:30 -04:00
pcieport_if.h PCI: Fix whitespace, capitalization, and spelling errors 2013-11-14 11:28:18 -07:00
pda_power.h
percpu-defs.h percpu: fix spurious sparse warnings from DEFINE_PER_CPU() 2013-12-05 12:59:23 -05:00
percpu-refcount.h percpu-refcount: use RCU-sched insted of normal RCU 2013-06-16 16:12:26 -07:00
percpu-rwsem.h
percpu.h Merge branch 'for-3.13' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu 2013-11-13 15:17:16 +09:00
percpu_counter.h
percpu_ida.h percpu_ida: add an API to return free tags 2013-10-25 11:56:00 +01:00
perf_event.h perf: Add generic transaction flags 2013-10-04 10:06:08 +02:00
perf_regs.h
personality.h
pfn.h
phonedev.h
phonet.h
phy.h phylib: Support attaching to generic 10g driver 2014-01-13 14:29:49 -08:00
phy_fixed.h
pid.h kernel/fork.c:copy_process(): don't add the uninitialized child to thread/task/pid lists 2013-07-03 16:08:03 -07:00
pid_namespace.h pid_namespace: make freeing struct pid_namespace rcu-delayed 2013-10-24 23:43:29 -04:00
pim.h
pipe_fs_i.h
pktcdvd.h
platform_device.h driver core: prevent deferred probe with platform_driver_probe 2013-09-26 16:18:32 -07:00
plist.h
pm.h
pm2301_charger.h
pm_clock.h
pm_domain.h
pm_opp.h PM / OPP: rename header to linux/pm_opp.h 2013-10-25 22:33:23 +02:00
pm_qos.h
pm_runtime.h PM / Runtime: Rework the "runtime idle" helper routine 2013-06-03 21:49:52 +02:00
pm_wakeup.h PM / Sleep: Fix comment typo in pm_wakeup.h 2013-07-15 01:31:37 +02:00
pmu.h
pnfs_osd_xdr.h
pnp.h
poison.h
poll.h
posix-clock.h
posix-timers.h posix_cpu_timer: consolidate expiry time type 2013-07-03 16:16:20 +02:00
posix_acl.h
posix_acl_xattr.h
power_supply.h power_supply: Prevent suspend until power supply events are processed 2013-08-27 18:42:48 -07:00
powercap.h PowerCap: Add class driver 2013-10-17 00:36:06 +02:00
ppp-comp.h
ppp_channel.h
ppp_defs.h
pps-gpio.h
pps_kernel.h PPS: convert class code to use dev_groups 2013-08-19 21:22:34 -07:00
preempt.h sched, x86: Optimize the preempt_schedule() call 2013-09-25 14:23:07 +02:00
preempt_mask.h preempt: Make PREEMPT_ACTIVE generic 2013-11-13 20:21:47 +01:00
prefetch.h
printk.h printk: Add a DEPRECATED macro 2013-12-31 13:58:40 -05:00
prio_heap.h
proc_fs.h proc: Move non-public stuff from linux/proc_fs.h to fs/proc/internal.h 2013-05-01 17:29:47 -04:00
proc_ns.h proc: Split the namespace stuff out into linux/proc_ns.h 2013-05-01 17:29:39 -04:00
profile.h
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_clock_kernel.h
ptrace.h ptrace: revert "Prepare to fix racy accesses on task breakpoints" 2013-07-09 10:33:26 -07:00
pvclock_gtod.h timekeeping: Indicate that clock was set in the pvclock gtod notifier 2013-06-28 23:15:06 +02:00
pwm.h pwm: Add sysfs interface 2013-06-21 11:32:51 +02:00
pwm_backlight.h pwm-backlight: Add optional enable GPIO 2013-10-16 09:05:57 +02:00
pxa2xx_ssp.h ARM: pxa: ssp: add pxa_ssp_request_of() 2013-08-14 19:54:30 +01:00
pxa168_eth.h
qnx6_fs.h
quicklist.h
quota.h quota: Add a new quotactl command Q_XGETQSTATV 2013-08-20 16:53:58 -05:00
quotaops.h quota: provide interface for readding allocated space into reserved space 2013-08-17 09:32:32 -04:00
radix-tree.h lib/radix-tree.c: make radix_tree_node_alloc() work correctly within interrupt 2013-09-11 15:59:36 -07:00
raid_class.h
ramfs.h initmpfs: move rootfs code from fs/ramfs/ to init/ 2013-09-11 15:59:37 -07:00
random.h random32: add prandom_u32_max and convert open coded users 2014-01-21 23:17:20 -08:00
range.h
ratelimit.h
rational.h
rbtree.h rbtree: fix rbtree_postorder_for_each_entry_safe() iterator 2013-11-13 12:09:33 +09:00
rbtree_augmented.h
rculist.h rcu: Make list_splice_init_rcu() account for RCU readers 2013-09-23 09:13:49 -07:00
rculist_bl.h
rculist_nulls.h net: force a reload of first item in hlist_nulls_for_each_entry_rcu 2013-06-02 20:53:59 -07:00
rcupdate.h rcu: Consistent rcu_is_watching() naming 2013-09-25 06:45:06 -07:00
rcutiny.h rcu: Consistent rcu_is_watching() naming 2013-09-25 06:45:06 -07:00
rcutree.h rcu: Consistent rcu_is_watching() naming 2013-09-25 06:45:06 -07:00
reboot.h kexec: migrate to reboot cpu 2013-12-18 19:04:50 -08:00
reciprocal_div.h reciprocal_divide: update/correction of the algorithm 2014-01-21 23:17:20 -08:00
regmap.h Merge remote-tracking branch 'regmap/topic/spmi' into regmap-next 2013-10-28 13:01:35 -07:00
regset.h
relay.h kernel/relay.c: move FIX_SIZE macro into relay.c 2013-04-30 17:04:09 -07:00
remoteproc.h
res_counter.h memcg: rename RESOURCE_MAX to RES_COUNTER_MAX 2013-09-12 15:38:02 -07:00
reservation.h mutex: Move ww_mutex definitions to ww_mutex.h 2013-07-12 12:07:46 +02:00
reset-controller.h
reset.h
resource.h
resume-trace.h
rfkill-gpio.h
rfkill-regulator.h
rfkill.h
ring_buffer.h
rio.h rapidio: change endpoint device name format 2013-07-03 16:08:05 -07:00
rio_drv.h rapidio: make enumeration/discovery configurable 2013-05-24 16:22:50 -07:00
rio_ids.h rapidio: add udev notification 2013-07-03 16:08:05 -07:00
rio_regs.h
rmap.h
rndis.h
root_dev.h
rotary_encoder.h
rpmsg.h
rslib.h
rtc-ds2404.h
rtc-v3020.h
rtc.h drivers/rtc/class.c: use struct device as the first argument for devm_rtc_device_register() 2013-04-29 18:28:22 -07:00
rtmutex.h
rtnetlink.h net: allow netdev_all_upper_get_next_dev_rcu with rtnl lock held 2013-12-17 21:19:08 -08:00
rwlock.h
rwlock_api_smp.h
rwlock_types.h
rwsem-spinlock.h
rwsem.h
rxrpc.h
s3c_adc_battery.h
sa11x0-dma.h
scatterlist.h lib/scatterlist: introduce sg_pcopy_from_buffer() and sg_pcopy_to_buffer() 2013-07-09 10:33:30 -07:00
scc.h
sched.h sched/fair: Rework sched_fair time accounting 2013-12-11 15:52:35 +01:00
sched_clock.h sched_clock: Remove sched_clock_func() hook 2013-10-09 16:54:39 -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 FMC: add needed headers 2013-06-17 16:38:57 -07:00
sdla.h
seccomp.h
securebits.h
security.h Merge branch 'master' of git://git.infradead.org/users/pcmoore/selinux into ra-next 2013-10-22 22:26:41 +11:00
selection.h
selinux.h
sem.h ipc/sem.c: replace shared sem_otime with per-semaphore value 2013-07-09 10:33:28 -07:00
semaphore.h
seq_file.h seq_file: introduce seq_setwidth() and seq_pad() 2013-11-15 09:32:20 +09:00
seq_file_net.h
seqlock.h seqlock: Use raw_ prefix instead of _no_lockdep 2014-01-12 10:13:59 +01:00
serial.h
serial_8250.h
serial_core.h serial: core: delete .set_wake() callback 2013-10-16 13:16:19 -07:00
serial_max3100.h
serial_mfd.h
serial_pnx8xxx.h
serial_s3c.h
serial_sci.h Drop support for Renesas H8/300 (h8300) architecture 2013-09-16 18:19:04 -07:00
serio.h
sfi.h intel_mid: Move platform device setups to their own platform_<device>.* files 2013-10-17 16:41:50 -07:00
sfi_acpi.h
sh_clk.h
sh_dma.h DMA: shdma: remove private and unused defines from a global header 2013-08-27 14:25:27 +05:30
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
shdma-base.h DMA: shdma: switch DT mode to use configuration data from a match table 2013-08-27 14:25:09 +05:30
shm.h
shmem_fs.h security: shmem: implement kernel private shmem inodes 2013-12-02 11:24:19 +00:00
shrinker.h shrinker: Kill old ->shrink API. 2013-09-10 18:56:32 -04:00
signal.h Introduce [compat_]save_altstack_ex() to unbreak x86 SMAP 2013-09-01 14:16:33 -07:00
signalfd.h
sirfsoc_dma.h
sizes.h
skbuff.h net: Add skb_get_hash_raw 2014-01-16 16:22:54 -08:00
slab.h slab.h: remove duplicate kmalloc declaration and fix kernel-doc warnings 2013-11-24 11:01:16 -08:00
slab_def.h reciprocal_divide: update/correction of the algorithm 2014-01-21 23:17:20 -08:00
slub_def.h Merge branch 'slab/next' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/linux 2013-11-22 08:10:34 -08:00
sm501-regs.h
sm501.h
smc91x.h
smc911x.h
smp.h kernel-provide-a-__smp_call_function_single-stub-for-config_smp-fix 2013-11-15 09:32:22 +09:00
smpboot.h
smsc911x.h include: Convert ethernet mac address declarations to use ETH_ALEN 2013-08-02 12:33:54 -07:00
smscphy.h
sock_diag.h sock_diag: allow to dump bpf filters 2013-04-29 13:21:30 -04:00
socket.h socket: cleanups 2014-01-03 20:55:58 -05:00
sonet.h
sony-laptop.h
sonypi.h
sort.h
sound.h
soundcard.h
spinlock.h sched: fix the theoretical signal_wake_up() vs schedule() race 2013-08-13 08:19:26 -07:00
spinlock_api_smp.h spinlock_api_smp.h: fix preprocessor comments 2013-06-19 23:34:50 +02:00
spinlock_api_up.h
spinlock_types.h
spinlock_types_up.h
spinlock_up.h sched: Rename sched.c as sched/core.c in comments and Documentation 2013-06-19 12:58:42 +02:00
splice.h splice: don't pass the address of ->f_pos to methods 2013-06-20 19:02:45 +04:00
srcu.h srcu: API for barrier after srcu read unlock 2013-11-06 09:32:09 +02:00
ssbi.h
stackprotector.h
stacktrace.h
start_kernel.h
stat.h
statfs.h
static_key.h
stddef.h
ste_modem_shm.h
stmmac.h stmmac: Fix kernel crashes for jumbo frames 2014-01-21 17:05:27 -08:00
stmp3xxx_rtc_wdt.h
stmp_device.h
stop_machine.h stop_machine: Introduce stop_two_cpus() 2013-10-09 12:40:45 +02:00
string.h
string_helpers.h lib/string_helpers: introduce generic string_unescape 2013-04-30 17:04:03 -07:00
stringify.h
sudmac.h sudmac: add support for SUDMAC 2013-04-30 15:50:12 +05:30
sungem_phy.h
sunserialcore.h
superhyway.h
suspend.h PM / Sleep: Print last wakeup source on failed wakeup_count write 2013-06-21 00:35:12 +02:00
svga.h
swab.h
swap.h mm: make lru_add_drain_all() selective 2013-09-12 15:38:02 -07:00
swapfile.h
swapops.h mm, hugetlb: convert hugetlbfs to use split pmd lock 2013-11-15 09:32:14 +09:00
swiotlb.h x86, kdump: Set crashkernel_low automatically 2013-04-17 12:35:32 -07:00
synclink.h
sys.h
sys_soc.h
syscalls.h This batch of changes is mostly clean ups and small bug fixes. 2013-11-16 12:23:18 -08:00
syscore_ops.h
sysctl.h
sysfs.h sysfs: clean up sysfs_get_dirent() 2013-09-26 15:33:18 -07:00
syslog.h kmsg: honor dmesg_restrict sysctl on /dev/kmsg 2013-06-12 16:29:44 -07:00
sysrq.h sysrq: Allow magic SysRq key functions to be disabled through Kconfig 2013-10-16 13:01:44 -07:00
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: out_of_order_queue do not use its lock 2014-01-06 16:34:34 -05:00
tegra-ahb.h
tegra-cpuidle.h tegra-cpuidle: provide stub when !CONFIG_CPU_IDLE 2013-08-29 13:54:34 -07:00
tegra-powergate.h ARM: tegra: Provide dummy powergate implementation 2013-11-25 13:34:51 -08:00
tegra-soc.h
textsearch.h
textsearch_fsm.h
tfrc.h
thermal.h thermal: thermal_core: allow binding with limits on bind_params 2013-09-03 09:10:24 -04:00
thinkpad_acpi.h thinkpad-acpi: Add mute and mic-mute LED functionality 2013-10-17 14:38:44 +02:00
thread_info.h sched, idle: Fix the idle polling state logic 2013-09-25 13:53:10 +02:00
threads.h
ti_wilink_st.h
tick.h Merge branch 'timers/nohz-v3' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic/linux-dynticks into timers/nohz 2013-08-14 17:58:56 +02:00
tifm.h
timb_dma.h
timb_gpio.h
time.h time: Revert ALWAYS_USE_PERSISTENT_CLOCK compile time optimizaitons 2013-05-14 20:54:06 +02:00
timekeeper_internal.h
timer.h
timerfd.h
timeriomem-rng.h hwrng: timeriomem - update to support more than one device 2013-04-25 21:01:45 +08:00
timerqueue.h
timex.h These patches are designed to enable improvements to /dev/random for 2013-10-10 12:31:43 -07:00
topology.h sched/balancing: Periodically decay max cost of idle balance 2013-09-20 12:03:46 +02:00
toshiba.h
tpm.h tpm: move TPM_DIGEST_SIZE defintion 2013-05-21 12:25:02 -05:00
tpm_command.h
trace_clock.h
trace_seq.h
tracehook.h
tracepoint.h ftrace, perf: Avoid infinite event generation loop 2013-11-19 16:57:40 +01:00
transport_class.h
tsacct_kern.h
tty.h Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2013-11-12 10:20:12 +09:00
tty_driver.h
tty_flip.h tty: Fix unsafe vt paste_selection() 2013-07-23 16:47:10 -07:00
tty_ldisc.h tty: Make ldisc input flow control concurrency-friendly 2013-07-23 16:42:59 -07:00
typecheck.h
types.h
u64_stats_sync.h net: Explicitly initialize u64_stats_sync structures for lockdep 2013-11-06 12:40:25 +01:00
uaccess.h sched: Extract the basic add/sub preempt_count modifiers 2013-09-25 14:07:54 +02:00
ucb1400.h mfd: ucb1400: Pass ucb1400-gpio data through ac97 bus 2013-04-19 00:40:07 +02:00
ucs2_string.h
udp.h
uidgid.h
uinput.h
uio.h Hoist memcpy_fromiovec/memcpy_toiovec into lib/ 2013-05-20 10:24:22 +09:30
uio_driver.h
uprobes.h uprobes: Export write_opcode() as uprobe_write_opcode() 2013-11-06 20:00:09 +01:00
usb.h usb: xhci: Link TRB must not occur within a USB payload burst 2013-12-02 11:57:10 -08:00
usb_usual.h usb-storage: add quirk for mandatory READ_CAPACITY_16 2013-10-16 13:32:04 -07:00
usbdevice_fs.h
user-return-notifier.h
user.h
user_namespace.h KEYS: Add per-user_namespace registers for persistent per-UID kerberos caches 2013-09-24 10:35:19 +01:00
uts.h
utsname.h
uuid.h
uwb.h
vermagic.h
vexpress.h reboot: arm: change reboot_mode to use enum reboot_mode 2013-07-09 10:33:29 -07:00
vfio.h vfio: add external user support 2013-08-05 10:52:36 -06:00
vfs.h
vga_switcheroo.h gpu/vga_switcheroo: add driver control power feature. (v3) 2013-08-29 13:30:21 +10:00
vgaarb.h Revert "i915: Update VGA arbiter support for newer devices" 2013-10-11 15:19:22 +10:00
via-core.h
via-gpio.h
via.h
via_i2c.h
video_output.h
videodev2.h
virtio.h virtio_ring: add new function virtqueue_is_broken() 2013-10-29 11:28:17 +10:30
virtio_caif.h
virtio_config.h virtio_config: remove virtio_config_val 2013-10-17 10:55:37 +10:30
virtio_console.h
virtio_mmio.h
virtio_ring.h virtio_ring: change host notification API 2013-10-29 11:28:11 +10:30
virtio_scsi.h
vlynq.h
vm_event_item.h mm: numa: return the number of base pages altered by protection changes 2013-11-13 12:09:11 +09:00
vm_sockets.h
vmalloc.h mm/vmalloc.c: rename VM_UNLIST to VM_UNINITIALIZED 2013-07-09 10:33:21 -07:00
vme.h
vmpressure.h Merge branch 'for-3.12' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup 2013-09-03 18:25:03 -07:00
vmstat.h mm: vmscan: fix do_try_to_free_pages() livelock 2013-09-11 15:58:01 -07:00
vmw_vmci_api.h
vmw_vmci_defs.h
vringh.h
vt.h
vt_buffer.h
vt_kern.h Merge 3.10-rc3 into tty-next 2013-05-27 10:57:53 +09:00
vtime.h vtime: Optimize full dynticks accounting off case with static keys 2013-08-14 17:14:54 +02:00
w1-gpio.h
wait.h wait: add wait_event_cmd() 2013-11-14 15:16:16 +11:00
wanrouter.h
watchdog.h
wireless.h
wl12xx.h
wm97xx.h
workqueue.h workqueue: mark WQ_NON_REENTRANT deprecated 2013-07-30 08:30:16 -04:00
writeback.h writeback: do not sync data dirtied after sync start 2013-11-13 12:09:07 +09:00
ww_mutex.h mutex: Move ww_mutex definitions to ww_mutex.h 2013-07-12 12:07:46 +02:00
xattr.h xattr: Constify ->name member of "struct xattr". 2013-07-25 19:30:03 +10:00
xilinxfb.h
xz.h
yam.h yam: integer underflow in yam_ioctl() 2013-10-17 15:53:09 -04:00
z2_battery.h
zbud.h zbud: add to mm/ 2013-07-10 18:11:34 -07:00
zconf.h
zlib.h
zorro.h
zorro_ids.h
zutil.h