1
0
Fork 0
alistair23-linux/include/linux
Rasmus Villemoes 41416f2330 lib/string_helpers.c: change semantics of string_escape_mem
The current semantics of string_escape_mem are inadequate for one of its
current users, vsnprintf().  If that is to honour its contract, it must
know how much space would be needed for the entire escaped buffer, and
string_escape_mem provides no way of obtaining that (short of allocating a
large enough buffer (~4 times input string) to let it play with, and
that's definitely a big no-no inside vsnprintf).

So change the semantics for string_escape_mem to be more snprintf-like:
Return the size of the output that would be generated if the destination
buffer was big enough, but of course still only write to the part of dst
it is allowed to, and (contrary to snprintf) don't do '\0'-termination.
It is then up to the caller to detect whether output was truncated and to
append a '\0' if desired.  Also, we must output partial escape sequences,
otherwise a call such as snprintf(buf, 3, "%1pE", "\123") would cause
printf to write a \0 to buf[2] but leaving buf[0] and buf[1] with whatever
they previously contained.

This also fixes a bug in the escaped_string() helper function, which used
to unconditionally pass a length of "end-buf" to string_escape_mem();
since the latter doesn't check osz for being insanely large, it would
happily write to dst.  For example, kasprintf(GFP_KERNEL, "something and
then %pE", ...); is an easy way to trigger an oops.

In test-string_helpers.c, the -ENOMEM test is replaced with testing for
getting the expected return value even if the buffer is too small.  We
also ensure that nothing is written (by relying on a NULL pointer deref)
if the output size is 0 by passing NULL - this has to work for
kasprintf("%pE") to work.

In net/sunrpc/cache.c, I think qword_add still has the same semantics.
Someone should definitely double-check this.

In fs/proc/array.c, I made the minimum possible change, but longer-term it
should stop poking around in seq_file internals.

[andriy.shevchenko@linux.intel.com: simplify qword_add]
[andriy.shevchenko@linux.intel.com: add missed curly braces]
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2015-04-15 16:35:24 -07:00
..
amba ARM: 8256/1: driver coamba: add device binding path 'driver_override' 2015-02-10 10:23:15 +00:00
bcma bcma: allow disabling (not building) PCI driver 2015-03-13 16:25:50 +02:00
byteorder
can can: add combined rx/tx LED trigger support 2015-03-22 23:50:11 +01:00
ceph libceph: tcp_nodelay support 2015-02-19 13:31:40 +03:00
clk clk: omap: compile legacy omap3 clocks conditionally 2015-02-03 11:06:11 -08:00
crush
decompress initramfs: support initramfs that is bigger than 2GiB 2014-08-08 15:57:26 -07:00
dma dmaengine: dw: export probe()/remove() and Co to users 2014-10-15 20:31:05 +05:30
extcon extcon: gpio: Fix code cleanup 2014-09-22 16:48:47 +09:00
fsl/bestcomm
gpio gpio: Make the vararg hacks not pass magic values 2015-01-15 17:23:22 +01:00
hsi
i2c USB patches for 3.19-rc1 2014-12-14 14:57:16 -08:00
iio iio: add support for hardware fifo 2015-03-29 16:17:10 +01:00
input Input: MT - add support for balanced slot assignment 2015-02-01 11:50:35 -08:00
irqchip irqchip core change for v4.1 (round 3) 2015-04-11 11:17:28 +02:00
isdn
lockd lockd: eliminate LOCKD_DEBUG 2014-11-24 17:24:08 -05:00
mfd Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2015-04-14 18:25:15 -07:00
mlx4 net/mlx4_en: Add RX-ALL support 2015-04-02 16:25:04 -04:00
mlx5 net/mlx5_core: Extend struct mlx5_interface to support multiple protocols 2015-04-02 16:33:43 -04:00
mmc Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2015-04-15 09:00:47 -07:00
mtd MTD updates for 3.20-rc1 2015-02-18 08:01:44 -08:00
netfilter netlink: implement nla_put_in_addr and nla_put_in6_addr 2015-03-31 13:58:35 -04:00
netfilter_arp netfilter: Pass nf_hook_state through arpt_do_table(). 2015-04-04 13:26:52 -04:00
netfilter_bridge uapi: ebtables: don't include linux/if.h 2015-04-13 20:08:38 +02:00
netfilter_ipv4 netfilter: Pass nf_hook_state through ipt_do_table(). 2015-04-04 12:47:04 -04:00
netfilter_ipv6 netfilter: Pass nf_hook_state through ip6t_do_table(). 2015-04-04 12:52:06 -04:00
phy SCSI misc on 20150209 2015-02-11 10:28:45 -08:00
pinctrl Revert "pinctrl: consumer: use correct retval for placeholder functions" 2015-03-05 10:08:14 +01:00
platform_data Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2015-04-15 09:00:47 -07:00
power power: max17042_battery: Use reg type instead of chip type 2015-04-06 17:46:27 +02:00
raid
regulator Merge remote-tracking branches 'regulator/topic/mode', 'regulator/topic/notifier', 'regulator/topic/palmas', 'regulator/topic/qcom' and 'regulator/topic/stw481x' into regulator-next 2015-04-10 19:16:03 +01:00
rtc rtc: add driver for DS1685 family of real time clocks 2015-02-16 17:56:05 -08:00
sched
soc/ti drivers/soc: ti: fix build break with modules 2014-09-24 11:53:39 -07:00
spi Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2015-04-15 09:00:47 -07:00
ssb bcma: detect SPROM revision 11 2015-01-29 10:49:28 +02:00
sunrpc sunrpc: make debugfs file creation failure non-fatal 2015-03-31 14:15:08 -04:00
unaligned
usb Merge 4.0-rc7 into usb-next 2015-04-07 11:17:34 +02:00
uwb uwb: Remove umc bus legacy suspend/resume support 2015-03-18 17:27:03 +01:00
wimax
8250_pci.h
a.out.h include/linux: remove empty conditionals 2015-04-15 16:35:22 -07:00
acct.h make fs/{namespace,super}.c forget about acct.h 2014-08-07 14:40:09 -04:00
acpi.h device property: Make it possible to use secondary firmware nodes 2015-04-03 23:23:37 +02:00
acpi_dma.h
acpi_pmtmr.h
adb.h
adfs_fs.h
aer.h PCI/AER: Make <linux/aer.h> standalone includable 2014-09-16 16:28:34 -06:00
agp_backend.h
agpgart.h
ahci_platform.h ata: ahci_platform: fix owner module reference mismatch for scsi host 2015-01-28 18:45:23 -05:00
aio.h fs: move struct kiocb to fs.h 2015-03-25 20:28:11 -04:00
alarmtimer.h
altera_jtaguart.h
altera_uart.h
amd-iommu.h
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h
apm-emulation.h
apm_bios.h
apple_bl.h
arcdevice.h
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 libata: Implement support for sense data reporting 2015-03-27 11:59:22 -04:00
ata_platform.h ata: pata_platform: fix owner module reference mismatch for scsi host 2015-01-28 18:45:23 -05:00
atalk.h
ath9k_platform.h ath9k: allow disabling bands via platform data 2014-10-27 14:16:19 -04:00
atm.h
atm_suni.h
atm_tcp.h
atmdev.h
atmel-mci.h mmc: host: atmel-mci: Add support for non-removable slots 2014-11-10 12:40:48 +01:00
atmel-ssc.h
atmel_pdc.h
atmel_serial.h
atmel_tc.h ARM: at91/tclib: mask interruptions at shutdown and probe 2014-09-08 10:54:03 +02:00
atomic.h locking: Remove deprecated smp_mb__() barriers 2014-08-13 10:31:57 +02:00
attribute_container.h
audit.h Merge branch 'getname2' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2015-02-17 15:27:47 -08:00
auto_dev-ioctl.h
auto_fs.h
auxvec.h
average.h
b1pcmcia.h
backing-dev.h Merge branch 'lazytime' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2015-02-17 16:12:34 -08:00
backlight.h
balloon_compaction.h mm/balloon_compaction: add vmstat counters and kpageflags bit 2014-10-09 22:26:01 -04:00
basic_mmio_gpio.h
bcd.h
bch.h
bcm47xx_wdt.h watchdog: bcm47xx_wdt.c: add restart handler support 2015-02-17 21:33:27 +01:00
bfin_mac.h
binfmts.h syscalls: implement execveat() system call 2014-12-13 12:42:51 -08:00
bio.h block: merge __bio_map_user_iov into bio_map_user_iov 2015-02-05 09:30:43 -07:00
bit_spinlock.h
bitmap.h bitmap, cpumask, nodemask: remove dedicated formatting functions 2015-02-13 21:21:39 -08:00
bitops.h bitops: Fix shift overflow in GENMASK macros 2014-11-16 09:55:39 +01:00
bitrev.h ARM: 8187/1: add CONFIG_HAVE_ARCH_BITREVERSE to support rbit instruction 2014-12-22 16:43:06 +00:00
blk-iopoll.h
blk-mq.h Merge branch 'for-3.20/core' of git://git.kernel.dk/linux-block 2015-02-12 14:13:23 -08:00
blk_types.h Defer processing of REQ_PREEMPT requests for blocked devices 2015-04-08 09:41:41 -07:00
blkdev.h block: remove unused function blk_bio_map_sg 2015-02-11 11:24:14 -07:00
blktrace_api.h
blockgroup_lock.h
bma150.h
bootmem.h mem-hotplug: reset node managed pages when hot-adding a new pgdat 2014-11-13 16:17:06 -08:00
bottom_half.h
bpf.h bpf: Make internal bpf API independent of CONFIG_BPF_SYSCALL #ifdefs 2015-04-02 13:25:49 +02:00
brcmphy.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2015-04-14 15:44:14 -04:00
bsearch.h
bsg-lib.h
bsg.h
btree-128.h
btree-type.h
btree.h
btrfs.h
buffer_head.h fs/buffer.c: support buffer cache allocations with gfp modifiers 2014-09-04 22:04:42 -04:00
bug.h
c2port.h
cache.h
cacheinfo.h drivers: base: support cpu cache information interface to userspace via sysfs 2014-11-07 11:45:00 -08:00
capability.h kernel: conditionally support non-root users, groups and capabilities 2015-04-15 16:35:22 -07:00
cb710.h
cciss_ioctl.h
ccp.h crypto: ccp - Check for CCP before registering crypto algs 2014-09-24 14:23:34 +08:00
cdev.h fs: introduce f_op->mmap_capabilities for nommu mmap support 2015-01-20 14:02:58 -07:00
cdrom.h
cfag12864b.h
cgroup.h cgroup: add dummy css_put() for !CONFIG_CGROUPS 2015-01-06 12:02:46 -05:00
cgroup_subsys.h cgroup: reorder SUBSYS(blkio) in cgroup_subsys.h 2015-01-06 12:02:46 -05:00
circ_buf.h
cleancache.h cleancache: remove limit on the number of cleancache enabled filesystems 2015-04-14 16:49:03 -07:00
clk-provider.h clk: Add __clk_hw_set_clk helper function 2015-02-18 09:40:07 -08:00
clk.h clk: introduce clk_is_match 2015-03-11 15:56:59 -07:00
clkdev.h
clksrc-dbx500-prcmu.h
clock_cooling.h thermal: introduce clock cooling device 2014-11-20 10:43:16 -04:00
clockchips.h clockevents: Cleanup dead cpu explicitely 2015-04-03 08:44:37 +02:00
clocksource.h clocksource: Rename __clocksource_updatefreq_*() to __clocksource_update_freq_*() 2015-03-13 08:07:08 +01:00
cm4000_cs.h
cma.h mm: cma: constify and use correct signness in mm/cma.c 2015-04-14 16:49:04 -07:00
cmdline-parser.h
cn_proc.h
cnt32_to_63.h
coda.h
coda_psdev.h
com20020.h ARCNET: add support for multi interfaces on com20020 2014-09-29 14:36:26 -04:00
compaction.h mm: allow compaction of unevictable pages 2015-04-15 16:35:17 -07:00
compat.h compat: Declare compat_sys_sigpending and compat_sys_sigprocmask prototypes 2015-01-27 09:37:53 +00:00
compiler-clang.h
compiler-gcc.h compiler: introduce __alias(symbol) shortcut 2015-02-13 21:21:40 -08:00
compiler-gcc3.h
compiler-gcc4.h kasan: enable instrumentation of global variables 2015-02-13 21:21:42 -08:00
compiler-gcc5.h kasan: enable instrumentation of global variables 2015-02-13 21:21:42 -08:00
compiler-intel.h
compiler.h locking: Remove atomicy checks from {READ,WRITE}_ONCE 2015-03-27 09:42:01 +01:00
completion.h
component.h
concap.h
configfs.h
connector.h
console.h
console_struct.h
consolemap.h
container.h
context_tracking.h kvm,rcu,nohz: use RCU extended quiescent state when running KVM guest 2015-03-09 15:43:03 +01:00
context_tracking_state.h kvm,rcu,nohz: use RCU extended quiescent state when running KVM guest 2015-03-09 15:43:03 +01:00
cordic.h
coredump.h
coresight.h coresight: remove the unnecessary function coresight_is_bit_set() 2015-02-04 10:42:55 -08:00
cper.h
cpu.h cpu: Provide smpboot_thread_init() on !CONFIG_SMP kernels as well 2015-04-13 10:19:30 +02:00
cpu_cooling.h thermal: cpu_cooling: return ERR_PTR() for !CPU_THERMAL or !THERMAL_OF 2014-12-17 09:00:04 -04:00
cpu_pm.h
cpu_rmap.h
cpufeature.h
cpufreq-dt.h cpufreq: cpufreq-dt: extend with platform_data 2014-10-21 00:51:01 +02:00
cpufreq.h cpufreq: remove CPUFREQ_UPDATE_POLICY_CPU notifications 2015-01-23 23:06:44 +01:00
cpuidle.h cpuidle: remove state_count field from struct cpuidle_device 2015-04-03 13:15:50 +02:00
cpumask.h bitmap, cpumask, nodemask: remove dedicated formatting functions 2015-02-13 21:21:39 -08:00
cpuset.h cpuset: simplify cpuset_node_allowed API 2014-10-27 11:15:27 -04:00
cputime.h
crash_dump.h vmcore: Remove "weak" from function declarations 2014-10-22 16:14:04 -06:00
crc-ccitt.h
crc-itu-t.h
crc-t10dif.h block: Add T10 Protection Information functions 2014-09-27 09:14:59 -06:00
crc7.h
crc8.h
crc16.h
crc32.h
crc32c.h
cred.h kernel: conditionally support non-root users, groups and capabilities 2015-04-15 16:35:22 -07:00
crypto.h crypto: doc - remove colons in comments 2015-01-20 14:44:19 +11:00
cryptohash.h lib/halfmd4.c: simplify includes 2015-02-12 18:54:15 -08:00
cryptouser.h
cs5535.h
ctype.h
cuda.h
cyclades.h
davinci_emac.h
dca.h
dcache.h VFS: Split DCACHE_FILE_TYPE into regular and special types 2015-02-22 11:38:38 -05:00
dccp.h ipv4: dccp: handle ICMP messages on DCCP_NEW_SYN_RECV request sockets 2015-03-23 16:52:26 -04:00
dcookies.h
debug_locks.h
debugfs.h debugfs: Provide a file creation function that also takes an initial size 2015-02-17 12:21:51 -05:00
debugobjects.h
delay.h
delayacct.h
dell-led.h
devcoredump.h device coredump: add new device coredump class 2014-09-23 22:53:15 -07:00
devfreq-event.h PM / devfreq: event: Add const keyword for devfreq_event_ops structure 2015-03-30 17:09:41 +09:00
devfreq.h PM: Eliminate CONFIG_PM_RUNTIME 2014-12-19 22:55:06 +01:00
device-mapper.h dm snapshot: suspend merging snapshot when doing exception handover 2015-02-27 14:53:16 -05:00
device.h Power management and ACPI updates for v4.1-rc1 2015-04-14 20:21:54 -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-contiguous.h
dma-debug.h
dma-direction.h
dma-mapping.h dma-mapping: detect and configure IOMMU in of_dma_configure 2014-12-01 16:50:45 +00:00
dma_remapping.h
dmaengine.h Merge branch 'topic/rcar' into for-linus 2015-02-02 16:55:43 -08:00
dmapool.h include/linux/dmapool.h: declare struct device 2015-04-07 16:45:33 -07:00
dmar.h iommu/vt-d: Implement DMAR unit hotplug framework 2014-11-18 11:18:35 +01:00
dmi.h
dnotify.h
dns_resolver.h
dqblk_qtree.h
dqblk_v1.h quota: Cleanup flags definitions 2015-01-21 19:21:30 +01:00
dqblk_v2.h
drbd.h drbd: Minor cleanups 2014-11-10 09:27:30 -07:00
drbd_genl.h
drbd_genl_api.h
drbd_limits.h
ds1286.h
ds2782_battery.h
ds17287rtc.h
dtlk.h
dw_apb_timer.h
dynamic_debug.h dynamic_debug: change __dynamic_<foo>_dbg return types to void 2014-10-03 14:55:48 -07:00
dynamic_queue_limits.h dql: dql_queued() should write first to reduce bus transactions 2014-09-29 00:04:55 -04:00
earlycpio.h
ecryptfs.h
edac.h EDAC: Add DDR3 LRDIMM entries to edac_mem_types 2014-10-20 14:22:22 +02:00
edd.h
edma.h
eeprom_93cx6.h eeprom-93cx6: Add (read-only) support for 8-bit mode 2014-11-25 15:42:53 +01:00
eeprom_93xx46.h
efi-bgrt.h
efi.h x86/efi: Add a "debug" option to the efi= cmdline 2015-04-01 12:46:22 +01:00
efs_vh.h
eisa.h
elevator.h
elf-fdpic.h
elf-randomize.h mm: fold arch_randomize_brk into ARCH_HAS_ELF_RANDOMIZE 2015-04-14 16:49:05 -07:00
elf.h binfmt_elf: allow arch code to examine PT_LOPROC ... PT_HIPROC headers 2014-11-24 07:45:02 +01:00
elfcore-compat.h
elfcore.h
elfnote.h
enclosure.h ses: Add power_status to SES device slot 2015-01-09 15:44:19 +01:00
err.h
errno.h
errqueue.h
etherdevice.h net: Kill dev_rebuild_header 2015-03-02 16:43:41 -05:00
ethtool.h ethtool: Support for configurable RSS hash function 2014-12-08 21:07:10 -05:00
eventfd.h
eventpoll.h
evm.h
export.h
exportfs.h exportfs: add methods for block layout exports 2015-02-05 14:35:17 +01:00
ext2_fs.h
extcon.h
f2fs_fs.h f2fs: introduce macros to convert bytes and blocks in f2fs 2015-02-11 17:04:48 -08:00
f75375s.h
falloc.h
fanotify.h
fault-inject.h fault-inject: add ratelimit option 2014-12-13 12:42:52 -08:00
fb.h video: fbdev: Check Standard Timing against DMT 2015-01-15 13:33:41 +02:00
fcdevice.h
fcntl.h
fd.h
fddidevice.h
fdtable.h
fec.h net: fec: add Wake-on-LAN support 2014-12-31 13:06:50 -05:00
fence.h treewide: Fix typo in Documentation/DocBook/device-drivers 2014-11-03 11:53:34 -05:00
file.h include/linux/file.h: remove get_unused_fd() macro 2014-12-10 17:41:10 -08:00
filter.h filter: introduce SKF_AD_VLAN_TPID BPF extension 2015-03-24 15:25:15 -04:00
fips.h
firewire.h
firmware-map.h
firmware.h
fixp-arith.h
flat.h
flex_array.h
flex_proportions.h proportions: add @gfp to init functions 2014-09-08 09:51:30 +09:00
fmc-sdb.h
fmc.h
font.h fonts: Add 6x10 font 2014-10-09 11:35:48 +03:00
freezer.h sched/wait: Remove wait_event_freezekillable() 2014-11-04 07:17:46 +01:00
frontswap.h
fs.h dax: use pfn_mkwrite to update c/mtime + freeze protection 2015-04-15 16:35:20 -07:00
fs_enet_pd.h net: fs_enet: Remove non NAPI RX 2014-10-08 16:01:41 -04:00
fs_pin.h new fs_pin killing logics 2015-01-25 23:17:28 -05:00
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 fsl_ifc: Support all 8 IFC chip selects 2014-11-05 14:45:53 -08:00
fsldma.h dmaengine: freescale: add and export fsl_dma_external_start() 2014-10-15 21:31:27 +05:30
fsnotify.h fsnotify: fix handling of renames in audit 2015-02-10 14:30:28 -08:00
fsnotify_backend.h fsnotify: remove destroy_list from fsnotify_mark 2014-12-13 12:42:53 -08:00
ftrace.h tracing: Add tp_printk cmdline to have tracepoints go to printk() 2014-12-15 10:17:38 -05:00
ftrace_event.h Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2015-04-14 14:37:47 -07:00
ftrace_irq.h
futex.h
fwnode.h device property: Introduce firmware node type for platform data 2015-04-03 23:23:51 +02:00
gameport.h
gcd.h
genalloc.h lib/genalloc.c: add genpool range check function 2014-10-09 22:25:52 -04:00
genetlink.h genetlink: synchronize socket closing and family removal 2015-01-16 17:04:25 -05:00
genhd.h
genl_magic_func.h genl_magic: Resolve logical-op warnings 2014-10-14 17:03:53 -04:00
genl_magic_struct.h
getcpu.h
gfp.h mm: clarify __GFP_NOFAIL deprecation status 2015-04-14 16:49:04 -07:00
glob.h
goldfish.h
gpio-fan.h
gpio-pxa.h
gpio.h gpio: rename gpio_lock_as_irq to gpiochip_lock_as_irq 2014-10-28 17:30:59 +01:00
gpio_keys.h input: gpio_keys_polled: Add support for GPIO descriptors 2014-11-04 21:58:23 +01:00
gpio_mouse.h
gsmmux.h
hardirq.h genirq: Provide disable_hardirq() 2015-02-18 15:08:33 +01:00
hash.h net, lib: kill arch_fast_hash library bits 2014-12-10 15:17:46 -05:00
hashtable.h
hdlc.h
hdlcdrv.h
hdmi.h [media] hdmi: rename HDMI_AUDIO_CODING_TYPE_EXT_STREAM to _EXT_CT 2015-01-27 10:19:12 -02:00
hid-debug.h
hid-roccat.h
hid-sensor-hub.h Merge branch 'for-4.1/sensor-hub' into for-linus 2015-04-13 23:43:34 +02:00
hid-sensor-ids.h HID: hid-sensor-hub: Add support for application collection 2015-02-23 15:11:52 +01:00
hid.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid 2015-04-14 09:25:26 -07:00
hiddev.h
hidraw.h
highmem.h
highuid.h
hil.h
hil_mlc.h
hippidevice.h
host1x.h gpu: host1x: Provide a proper struct bus_type 2015-01-27 10:09:14 +01:00
hp_sdc.h
hpet.h
hrtimer.h hrtimer: Prevent stale expiry time in hrtimer_interrupt() 2015-01-23 12:13:20 +01:00
htcpld.h
htirq.h
huge_mm.h mm: numa: do not trap faults on the huge zero page 2015-02-12 18:54:08 -08:00
hugetlb.h mm: hugetlb: cleanup using paeg_huge_active() 2015-04-15 16:35:19 -07:00
hugetlb_cgroup.h mm: hugetlb_cgroup: convert to lockless page counters 2014-12-10 17:41:04 -08:00
hugetlb_inline.h
hw_breakpoint.h
hw_random.h hwrng: core - Use struct completion for cleanup_done 2014-12-26 08:33:34 +11:00
hwmon-sysfs.h
hwmon-vid.h
hwmon.h
hwspinlock.h
hyperv.h Drivers: hv: rename sc_lock to the more generic lock 2015-01-25 09:18:00 -08: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 Power management and ACPI updates for v4.1-rc1 2015-04-14 20:21:54 -07:00
i7300_idle.h
i8042.h
i8253.h
icmp.h
icmpv6.h
ide.h
idr.h
ieee80211.h mac80111: Add BIP-CMAC-256 cipher 2015-01-27 11:09:13 +01:00
ieee802154.h mac802154: correct max sifs size handling 2015-03-14 17:11:30 +01:00
if_arp.h
if_bridge.h bridge: Extend Proxy ARP design to allow optional rules for Wi-Fi 2015-03-05 14:52:23 -05:00
if_eql.h
if_ether.h
if_fddi.h
if_frad.h
if_link.h if_link: Add an additional parameter to ifla_vf_info for RSS querying 2015-04-10 21:57:22 -07:00
if_ltalk.h
if_macvlan.h macvlan: add source mode 2014-09-29 15:37:01 -04:00
if_phonet.h
if_pppol2tp.h
if_pppox.h pppoe: Use workqueue to die properly when a PADT is received 2015-03-02 00:17:31 -05:00
if_team.h
if_tun.h
if_tunnel.h
if_vlan.h net: Move check for multiple vlans to drivers 2015-03-29 13:33:22 -07:00
igmp.h ipv4, ipv6: kill ip_mc_{join, leave}_group and ipv6_sock_mc_{join, drop} 2015-03-18 22:05:09 -04:00
ihex.h
ima.h ima: pass 'opened' flag to identify newly created files 2014-09-09 10:28:43 -04:00
in.h
in6.h
inet.h
inet_diag.h inet_diag: add const to inet_diag_req_v2 2015-03-10 13:45:28 -04:00
inet_lro.h
inetdevice.h inetdevice: fixed signed integer overflow 2014-11-14 17:08:58 -05:00
init.h init.h: Clean up the __setup()/early_param() macros 2015-03-05 09:23:12 +01:00
init_ohci1394_dma.h
init_task.h kasan: enable stack instrumentation 2015-02-13 21:21:41 -08:00
initrd.h
inotify.h
input-polldev.h
input.h
integrity.h integrity: provide a hook to load keys when rootfs is ready 2014-11-17 23:12:01 -05:00
intel-iommu.h
intel_pmic_gpio.h
interrupt.h genirq: Allow the irqchip state of an IRQ to be save/restored 2015-04-08 23:28:28 +02:00
interval_tree.h
interval_tree_generic.h
io-mapping.h
io.h lib/ioremap.c: add huge I/O map capability interfaces 2015-04-14 16:49:04 -07:00
ioc3.h
ioc4.h
iocontext.h
iommu-helper.h
iommu.h ARM: SoC/iommu configuration for 3.19 2014-12-16 14:53:01 -08:00
iopoll.h iopoll: Introduce memory-mapped IO polling macros 2015-01-19 16:11:59 +00:00
ioport.h kernel/resource.c: remove deprecated __check_region() and friends 2015-04-15 16:35:22 -07:00
ioprio.h
iova.h iommu: Make IOVA domain page size explicit 2015-01-19 14:55:22 +01:00
ip.h
ipack.h ipack: save carrier owner to allow device to get it 2014-09-23 23:13:13 -07:00
ipc.h
ipc_namespace.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2014-12-16 15:53:03 -08:00
ipmi-fru.h
ipmi.h ipmi: Use the proper type for acpi_handle 2014-12-11 15:04:06 -06:00
ipmi_smi.h ipmi: Remove the now unused priority from SMI sender 2014-12-11 15:04:11 -06:00
ipv6.h ipv6: introduce secret_stable to ipv6_devconf 2015-03-23 22:12:08 -04:00
ipv6_route.h
irq.h irqchip core change for v4.1 (round 3) 2015-04-11 11:17:28 +02:00
irq_cpustat.h
irq_work.h irq_work: Fix build failure when CONFIG_IRQ_WORK is not defined 2015-03-23 10:55:21 +01:00
irqchip.h
irqdesc.h genirq / PM: Add flag for shared NO_SUSPEND interrupt lines 2015-03-04 21:42:19 +01:00
irqdomain.h irqdomain: Introduce helper function irq_domain_add_hierarchy() 2014-11-23 13:01:46 +01:00
irqflags.h irqflags: Fix (at least latent) code generation issue 2015-02-19 01:08:42 +01:00
irqhandler.h genirq: Split out flow handler typedefs into seperate header file 2014-11-23 13:01:46 +01:00
irqnr.h
irqreturn.h
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: drop jbd_ENOSYS debug 2015-01-15 10:34:54 +01:00
jbd2.h jbd: drop jbd_ENOSYS debug 2015-01-15 10:34:54 +01:00
jbd_common.h
jhash.h jhash: Update jhash_[321]words functions to use correct initval 2015-04-03 12:52:29 -04:00
jiffies.h jiffies: Fix timeval conversion to jiffies 2014-09-12 13:59:03 -07:00
journal-head.h
joystick.h
jump_label.h jump_label: Allow jump labels to be used in assembly 2015-04-09 09:40:24 +02:00
jump_label_ratelimit.h
jz4740-adc.h
kallsyms.h
kasan.h mm/mempool.c: kasan: poison mempool elements 2015-04-15 16:35:20 -07:00
kbd_diacr.h
kbd_kern.h
kbuild.h
kconfig.h
kcore.h
kd.h
kdb.h kdb: Avoid printing KERN_ levels to consoles 2015-02-19 12:39:02 -06:00
kdebug.h
kdev_t.h
kern_levels.h printk: add and use LOGLEVEL_<level> defines for KERN_<LEVEL> equivalents 2014-12-10 17:41:11 -08:00
kernel-page-flags.h
kernel.h kernel.h: remove ancient __FUNCTION__ hack 2015-02-12 18:54:13 -08:00
kernel_stat.h genirq: Prevent proc race against freeing of irq descriptors 2014-12-13 13:33:07 +01:00
kernelcapi.h isdn/capi: correct capi20_manufacturer argument type mismatch 2014-10-14 15:05:34 -04:00
kernfs.h kernfs: remove KERNFS_STATIC_NAME 2015-02-13 21:21:36 -08:00
kexec.h kexec: add IND_FLAGS macro 2015-02-17 14:34:51 -08:00
key-type.h KEYS: Make the key matching functions return bool 2014-09-16 17:36:08 +01:00
key.h
keyboard.h
kfifo.h Documentation: Docbook: Fix generated DocBook/kernel-api.xml 2014-09-09 10:34:56 +02:00
kgdb.h kgdb: Remove "weak" from kgdb_arch_pc() declaration 2014-10-22 16:14:04 -06:00
khugepaged.h mm, thp: fix collapsing of hugepages on madvise 2014-10-29 16:33:14 -07:00
klist.h
kmemcheck.h
kmemleak.h include/linux/kmemleak.h: needs slab.h 2014-12-13 12:42:47 -08:00
kmod.h
kmsg_dump.h
kobj_map.h
kobject.h
kobject_ns.h
kprobes.h kprobes: Pass the original kprobe for preparing optimized kprobe 2015-01-13 16:10:16 +00:00
kref.h
ks0108.h
ks8842.h
ks8851_mll.h
ksm.h mm: consolidate all page-flags helpers in <linux/page-flags.h> 2015-04-15 16:35:17 -07:00
kthread.h
ktime.h Couple of items for 3.20 2015-01-24 10:11:12 +01:00
kvm_host.h Merge branch 'timers-nohz-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2015-04-14 13:58:48 -07:00
kvm_para.h
kvm_types.h KVM: move APIC types to arch/x86/ 2014-12-18 09:39:51 +01:00
l2tp.h
lapb.h
latencytop.h
lcd.h
lcm.h block: fix blk_stack_limits() regression due to lcm() change 2015-03-31 09:45:50 -06:00
led-class-flash.h leds: Add LED Flash class extension to the LED subsystem 2015-01-26 14:59:08 -08:00
led-lm3530.h
leds-bd2802.h
leds-lp3944.h
leds-pca9532.h
leds-regulator.h
leds-tca6507.h
leds.h leds: Add LED Flash class extension to the LED subsystem 2015-01-26 14:59:08 -08:00
leds_pwm.h
lglock.h
lguest.h
lguest_launcher.h lguest: remove NOTIFY call and eventfd facility. 2015-02-11 16:47:46 +10:30
libata.h Merge branch 'for-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata 2015-04-13 16:42:16 -07:00
libfdt.h
libfdt_env.h
libps2.h
license.h
linkage.h
linux_logo.h
lis3lv02d.h
list.h Replace mentions of "list_struct" to "list_head" 2014-11-20 14:45:15 +01:00
list_bl.h
list_lru.h memcg: reparent list_lrus and free kmemcg_id on css offline 2015-02-12 18:54:10 -08:00
list_nulls.h list_nulls: fix missing header 2015-01-04 23:11:43 -05:00
list_sort.h
livepatch.h livepatch: remove extern specifier from header files 2015-02-18 20:50:05 +01:00
llc.h
llist.h
lockdep.h rcu: Improve diagnostics for blocked critical sections in irq 2015-03-03 11:16:00 -08:00
lockref.h dcache: let the dentry count go down to zero without taking d_lock 2015-01-25 23:16:29 -05:00
log2.h
lp.h
lru_cache.h
lsm_audit.h
lz4.h
lzo.h
m48t86.h
mISDNdsp.h
mISDNhw.h
mISDNif.h
mailbox_client.h mailbox: add tx_prepare client callback 2014-11-27 12:50:59 +05:30
mailbox_controller.h mailbox: Introduce framework for mailbox 2014-10-08 10:39:41 +05:30
maple.h
marvell_phy.h phy: marvell: Add support for 88E3016 FastEthernet PHY 2014-10-24 15:49:20 -04:00
math64.h
max17040_battery.h
mbcache.h
mbus.h bus: mvebu-mbus: provide a mechanism to save SDRAM window configuration 2014-11-30 16:40:11 +00:00
mc6821.h
mc146818rtc.h
mcb.h
mdio-bitbang.h
mdio-gpio.h
mdio-mux.h
mdio.h
mei_cl_bus.h mei: bus: use ssize_t as the return type for send and receive 2015-01-12 05:04:10 -08:00
memblock.h memtest: use phys_addr_t for physical addresses 2015-04-14 16:49:06 -07:00
memcontrol.h list_lru: introduce per-memcg lists 2015-02-12 18:54:09 -08:00
memory.h memory-hotplug: Remove "weak" from memory_block_size_bytes() declaration 2014-10-22 16:14:04 -06:00
memory_hotplug.h mm, hotplug: fix concurrent memory hot-add deadlock 2015-04-14 16:49:00 -07:00
mempolicy.h mempolicy: unexport get_vma_policy() and remove its "task" arg 2014-10-09 22:25:56 -04:00
mempool.h mm, mempool: disallow mempools based on slab caches with constructors 2015-04-15 16:35:18 -07:00
memstick.h
mg_disk.h
mic_bus.h
micrel_phy.h net: phy: micrel: add generic clock-mode-select support 2014-11-21 14:08:56 -05:00
migrate.h mm: numa: remove migrate_ratelimited 2015-04-14 16:49:05 -07:00
migrate_mode.h
mii.h
miscdevice.h
mm.h mm: new pfn_mkwrite same as page_mkwrite for VM_PFNMAP 2015-04-15 16:35:20 -07:00
mm_inline.h
mm_types.h mm: do not add nr_pmds into mm_struct if PMD is folded 2015-04-14 16:49:02 -07:00
mman.h
mmdebug.h mm: introduce VM_BUG_ON_MM 2014-10-09 22:25:58 -04:00
mmiotrace.h
mmu_context.h
mmu_notifier.h Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux 2014-12-15 15:52:01 -08:00
mmzone.h mm: refactor zone_movable_is_highmem() 2015-04-15 16:35:16 -07:00
mnt_namespace.h
mod_devicetable.h mod_devicetable: fix comment for match_flags 2015-03-06 23:03:27 +01:00
module.h Some clean ups and small fixes, but the biggest change is the addition 2015-04-14 10:49:03 -07:00
moduleloader.h kasan, module: move MODULE_ALIGN macro into <linux/moduleloader.h> 2015-03-12 18:46:08 -07:00
moduleparam.h kernel/param: consolidate __{start,stop}___param[] in <linux/moduleparam.h> 2014-10-14 02:18:28 +02:00
mount.h vfs: introduce clone_private_mount() 2014-10-24 00:14:36 +02:00
mpage.h
mpi.h
mpls.h
mroute.h
mroute6.h
msdos_fs.h
msg.h
msi.h PCI/MSI: Allow an msi_controller to be associated to an irq domain 2014-11-23 17:14:43 +01:00
msm_mdp.h
mutex-debug.h
mutex.h mutex: remove unused field "name" in debug mode 2015-02-14 11:32:59 -08:00
mv643xx.h
mv643xx_eth.h
mv643xx_i2c.h
mvebu-pmsu.h
mxm-wmi.h
n_r3964.h
namei.h make nameidata completely opaque outside of fs/namei.c 2014-12-10 21:32:13 -05:00
nbd.h
net.h get rid of the size argument of sock_sendmsg() 2015-04-11 15:27:37 -04:00
netdev_features.h netdev: introduce new NETIF_F_HW_SWITCH_OFFLOAD feature flag for switch device offloads 2015-02-01 23:16:33 -08:00
netdevice.h net_device: Reorder members to fill holes 2015-04-13 13:15:14 -04:00
netfilter.h netfilter: Pass socket pointer down through okfn(). 2015-04-07 15:25:55 -04:00
netfilter_bridge.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2015-04-08 18:30:21 +02:00
netfilter_ipv4.h
netfilter_ipv6.h
netlink.h netlink: Fix portid type in netlink_notify 2015-04-13 16:35:16 -04:00
netpoll.h
nfs.h
nfs3.h
nfs4.h Merge branch 'for-3.20' of git://linux-nfs.org/~bfields/linux 2015-02-12 10:39:41 -08:00
nfs_fs.h NFS: Fix a regression in the read() syscall 2015-03-03 13:02:29 -05:00
nfs_fs_i.h
nfs_fs_sb.h nfsv3: introduce nfs3_set_ds_client 2015-02-03 11:06:34 -08:00
nfs_idmap.h pnfs/flexfiles: Add the FlexFile Layout Driver 2015-02-03 11:06:52 -08:00
nfs_iostat.h
nfs_page.h nfs: add mirroring support to pgio layer 2015-02-03 11:06:45 -08:00
nfs_xdr.h NFSv4.1: Clean up bind_conn_to_session 2015-02-18 13:11:09 -08:00
nfsacl.h
nilfs2_fs.h
nl802154.h ieee802154: mac802154: remove FSF address 2014-10-25 08:07:30 +02:00
nls.h
nmi.h watchdog: introduce the hardlockup_detector_disable() function 2015-04-14 16:48:59 -07:00
node.h
nodemask.h bitmap, cpumask, nodemask: remove dedicated formatting functions 2015-02-13 21:21:39 -08:00
notifier.h
ns_common.h take the targets of /proc/*/ns/* symlinks to separate fs 2014-12-10 21:30:20 -05:00
nsc_gpio.h
nsproxy.h
ntb.h
nubus.h
numa.h
nvme.h NVMe: Fix potential corruption during shutdown 2015-02-19 16:15:37 -07:00
nvram.h
nwpserial.h
nx842.h
of.h of: base: add function to get highest id of an alias stem 2015-03-18 13:36:46 +01:00
of_address.h of: Request and map make argument name constant 2014-11-04 16:43:08 +00:00
of_device.h of: Move of_dma_configure() to device.c to help re-use 2015-03-03 14:42:56 -06:00
of_dma.h
of_fdt.h
of_gpio.h gpio/gpiolib-of: Create of_mm_gpiochip_remove 2015-01-15 17:23:17 +01:00
of_graph.h
of_iommu.h of: iommu: Add ptr to OF node arg to of_iommu_configure() 2015-03-03 14:42:55 -06:00
of_irq.h
of_mdio.h of: mdio: export of_mdio_parse_addr 2015-03-11 17:56:28 -04:00
of_mtd.h
of_net.h net: core: add of_find_net_device_by_node() 2015-03-09 23:50:20 -04:00
of_pci.h of/pci: Add of_pci_dma_configure() to update DMA configuration 2015-03-03 14:42:57 -06:00
of_pdt.h of: Eliminate of_allnodes list 2014-11-04 13:29:38 +00:00
of_platform.h of/platform: Fix sparc:allmodconfig build 2015-03-13 09:45:24 -05:00
of_reserved_mem.h drivers: of: add return value to of_reserved_mem_device_init() 2014-10-29 16:33:14 -07:00
oid_registry.h
olpc-ec.h
omap-dma.h ARM: OMAP: Remove unused pieces of legacy DMA API 2014-09-18 09:53:25 -07:00
omap-dmaengine.h
omap-gpmc.h ARM: OMAP2+: Prepare to move GPMC to drivers by platform data header 2014-11-20 12:11:25 -08:00
omap-iommu.h
omap-mailbox.h mailbox/omap: adapt to the new mailbox framework 2014-11-27 12:51:04 +05:30
omapfb.h
oom.h memcg: print cgroup information when system panics due to panic_on_oom 2015-04-14 16:49:05 -07:00
openvswitch.h
oprofile.h
osq_lock.h locking/mcs: Better differentiate between MCS variants 2015-01-14 15:07:32 +01:00
oxu210hp.h
padata.h
page-flags-layout.h
page-flags.h mm: hugetlb: cleanup using paeg_huge_active() 2015-04-15 16:35:19 -07:00
page-isolation.h mm/page_alloc: fix incorrect isolation behavior by rechecking migratetype 2014-11-13 16:17:05 -08:00
page_counter.h mm: page_counter: pull "-1" handling out of page_counter_memparse() 2015-02-11 17:06:02 -08:00
page_ext.h mm/page_owner.c: remove unnecessary stack_trace field 2015-02-11 17:06:07 -08:00
page_owner.h mm/page_owner: keep track of page owners 2014-12-13 12:42:48 -08:00
pageblock-flags.h
pagemap.h mm: get rid of radix tree gfp mask for pagecache_get_page 2014-12-29 12:45:45 -08:00
pagevec.h
parport.h
parport_pc.h
parser.h
pata_arasan_cf_data.h
patchkey.h
path.h
pch_dma.h
pci-acpi.h PCI/ACPI: Optimize device state transition delays 2015-04-08 16:25:25 -05:00
pci-aspm.h PCI: Don't clear ASPM bits when the FADT declares it's unsupported 2015-04-09 14:20:11 -05:00
pci-ats.h
pci-dma.h
pci.h Merge branch 'pci/misc' into next 2015-04-10 08:27:18 -05:00
pci_hotplug.h PCI: Remove unused and broken to_hotplug_slot() 2014-11-13 10:35:25 -07:00
pci_ids.h usb: move definition of PCI_VENDOR_ID_SYNOPSYS to linux/pci_ids.h 2015-03-10 15:33:23 -05:00
pcieport_if.h
pda_power.h
pe.h
percpu-defs.h percpu: remove __get_cpu_var and __raw_get_cpu_var macros 2014-12-13 12:42:53 -08:00
percpu-refcount.h percpu_ref: implement percpu_ref_is_dying() 2015-01-06 10:26:10 -05:00
percpu-rwsem.h
percpu.h printk/percpu: Define printk_func when printk is not defined 2014-11-21 11:19:15 -05:00
percpu_counter.h percpu_counter: add @gfp to percpu_counter_init() 2014-09-08 09:51:29 +09:00
percpu_ida.h
perf_event.h perf: Add ITRACE_START record to indicate that tracing has started 2015-04-02 17:14:17 +02:00
perf_regs.h perf: Move task_pt_regs sampling into arch code 2015-01-09 11:12:28 +01:00
personality.h
pfn.h
phonet.h
phy.h net: phy: keep track of the PHY suspend state 2015-01-27 00:16:51 -08:00
phy_fixed.h add fixed_phy_update_state() - update state of fixed_phy 2015-04-03 15:08:20 -04:00
pid.h
pid_namespace.h new fs_pin killing logics 2015-01-25 23:17:28 -05:00
pim.h
pipe_fs_i.h
pktcdvd.h
pl320-ipc.h mailbox: rename pl320-ipc specific mailbox.h 2014-10-08 10:39:33 +05:30
platform_device.h driver core / ACPI: Represent ACPI companions using fwnode_handle 2015-03-16 23:49:03 +01:00
plist.h Replace mentions of "list_struct" to "list_head" 2014-11-20 14:45:15 +01:00
pm-trace.h PM / sleep: add pm-trace support for suspending phase 2015-03-18 15:54:27 +01:00
pm.h driver core / PM: Add PM domain callbacks for device setup/cleanup 2015-03-22 22:14:12 +01:00
pm2301_charger.h
pm_clock.h PM / clock_ops: Add pm_clk_add_clk() 2014-11-07 01:46:51 +01:00
pm_domain.h PM / domains: factor out code to get the generic PM domain from a struct device 2015-03-22 22:19:12 +01:00
pm_opp.h PM / OPP Introduce APIs to remove OPPs 2014-11-29 23:53:20 +01:00
pm_qos.h PM: Drop CONFIG_PM_RUNTIME from the driver core 2014-12-04 00:46:58 +01:00
pm_runtime.h Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm 2014-12-12 15:26:48 -08:00
pm_wakeup.h
pmu.h
pnfs_osd_xdr.h Boaz Harrosh - Fix broken email address 2014-10-19 20:22:32 +03:00
pnp.h PNP: Add helper macro for pnp_register_driver boilerplate 2015-03-18 22:39:16 +01:00
poison.h
poll.h
posix-clock.h
posix-timers.h
posix_acl.h
posix_acl_xattr.h
power_supply.h power_supply: Add power_supply_put for decrementing device reference counter 2015-03-13 23:15:52 +01:00
powercap.h
ppp-comp.h
ppp_channel.h
ppp_defs.h
pps-gpio.h
pps_kernel.h
preempt.h
preempt_mask.h
prefetch.h
printk.h printk: comment pr_cont() stating it is only to continue a line 2015-04-15 16:35:23 -07:00
proc_fs.h lockd: move lockd's grace period handling into its own module 2014-09-17 16:33:11 -04:00
proc_ns.h take the targets of /proc/*/ns/* symlinks to separate fs 2014-12-10 21:30:20 -05:00
profile.h
projid.h
property.h device property: Introduce firmware node type for platform data 2015-04-03 23:23:51 +02:00
proportions.h proportions: add @gfp to init functions 2014-09-08 09:51:30 +09:00
pstore.h pstore: Add pmsg - user-space accessible pstore object 2015-01-16 16:01:10 -08:00
pstore_ram.h pstore: Add pmsg - user-space accessible pstore object 2015-01-16 16:01:10 -08:00
pti.h
ptp_classify.h
ptp_clock_kernel.h ptp: remove 32 bit get/set methods. 2015-03-31 12:01:19 -04:00
ptrace.h exit: ptrace: shift "reap dead" code from exit_ptrace() to forget_original_parent() 2014-12-10 17:41:10 -08:00
pvclock_gtod.h
pwm.h
pwm_backlight.h
pxa2xx_ssp.h spi: pxa2xx: Add definition for Intel Quark DDS_RATE register 2014-12-22 20:17:23 +00:00
pxa168_eth.h net: pxa168_eth: Fix providing of phy_interface mode on platform_data 2014-10-28 16:48:02 -04:00
qnx6_fs.h
quicklist.h
quota.h quota: Store maximum space limit in bytes 2015-01-30 12:51:21 +01:00
quotaops.h quota: Add ->quota_{enable,disable} callbacks for VFS quotas 2015-01-30 12:50:32 +01:00
radix-tree.h
raid_class.h
ramfs.h
random.h random32: improvements to prandom_bytes 2014-08-24 18:36:01 -07:00
range.h
ras.h
ratelimit.h ratelimit: add initialization macro 2014-12-13 12:42:52 -08:00
rational.h
rbtree.h lib/rbtree.c: fix typo in comment 2015-02-17 14:34:52 -08:00
rbtree_augmented.h rbtree: add comment to rb_insert_augmented() 2014-10-14 02:18:21 +02:00
rculist.h rculist: Fix sparse warning 2015-01-06 11:01:13 -08:00
rculist_bl.h
rculist_nulls.h
rcupdate.h Merge branches 'doc.2015.02.26a', 'earlycb.2015.03.03a', 'fixes.2015.03.03a', 'gpexp.2015.02.26a', 'hotplug.2015.03.20a', 'sysidle.2015.02.26b' and 'tiny.2015.02.26a' into HEAD 2015-03-20 08:31:01 -07:00
rcutiny.h Merge branches 'doc.2015.01.07a', 'fixes.2015.01.15a', 'preempt.2015.01.06a', 'srcu.2015.01.06a', 'stall.2015.01.16a' and 'torture.2015.01.11a' into HEAD 2015-01-15 23:34:34 -08:00
rcutree.h Merge branches 'doc.2015.01.07a', 'fixes.2015.01.15a', 'preempt.2015.01.06a', 'srcu.2015.01.06a', 'stall.2015.01.16a' and 'torture.2015.01.11a' into HEAD 2015-01-15 23:34:34 -08:00
reboot.h kernel/reboot.c: add orderly_reboot for graceful reboot 2015-04-15 16:35:23 -07:00
reciprocal_div.h
regmap.h regmap: correct the description of structure element in reg_field 2015-01-27 13:13:04 +00:00
regset.h
relay.h
remoteproc.h
reservation.h
reset-controller.h reset: add reset_control_status helper function 2014-10-20 10:11:29 +02:00
reset.h reset: add reset_control_status helper function 2014-10-20 10:11:29 +02:00
resource.h
resource_ext.h resources: Move struct resource_list_entry from ACPI into resource core 2015-02-05 15:09:25 +01:00
rfkill-gpio.h
rfkill-regulator.h
rfkill.h
rhashtable.h rhashtable: provide len to obj_hashfn 2015-03-25 17:18:33 +01:00
ring_buffer.h tracing: Do not busy wait in buffer splice 2014-11-10 16:45:43 -05:00
rio.h
rio_drv.h rapidio: add new RapidIO DMA interface routines 2014-08-08 15:57:24 -07:00
rio_ids.h
rio_regs.h
rmap.h mm: uninline and cleanup page-mapping related helpers 2015-04-15 16:35:19 -07:00
rndis.h
root_dev.h
rotary_encoder.h
rpmsg.h
rslib.h
rtc-ds2404.h
rtc-v3020.h
rtc.h drivers/rtc: Provide y2038 safe rtc_class_ops.set_mmss() replacement 2015-04-03 08:18:24 +02:00
rtmutex.h
rtnetlink.h net: use jump label patching for ingress qdisc in __netif_receive_skb_core 2015-04-13 13:34:40 -04:00
rwlock.h
rwlock_api_smp.h
rwlock_types.h
rwsem-spinlock.h
rwsem.h locking/Documentation: Move locking related docs into Documentation/locking/ 2014-08-13 10:32:03 +02:00
rxrpc.h
s3c_adc_battery.h
sa11x0-dma.h
scatterlist.h lib/scatterlist: make ARCH_HAS_SG_CHAIN an actual Kconfig 2014-08-08 15:57:26 -07:00
scc.h
sched.h Merge branch 'for-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup 2015-04-13 16:47:11 -07:00
sched_clock.h
screen_info.h include/linux/screen_info.h: remove unused ORIG_* macros 2014-10-09 22:26:04 -04:00
sctp.h
scx200.h
scx200_gpio.h
sdb.h
sdla.h
seccomp.h seccomp: Allow arch code to provide seccomp_data 2014-09-03 14:58:17 -07:00
securebits.h
security.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next 2015-04-15 09:00:47 -07:00
selection.h
selinux.h
sem.h
semaphore.h
seq_buf.h bitmap, cpumask, nodemask: remove dedicated formatting functions 2015-02-13 21:21:39 -08:00
seq_file.h bitmap, cpumask, nodemask: remove dedicated formatting functions 2015-02-13 21:21:39 -08:00
seq_file_net.h
seqlock.h locking: Remove ACCESS_ONCE() usage 2015-02-24 08:44:16 +01:00
seqno-fence.h dma-buf/fence: Fix one more kerneldoc warning 2014-08-28 11:59:38 +05:30
serial.h
serial_8250.h serial: 8250: Use canary to restart console after suspend 2015-02-02 10:11:27 -08:00
serial_bcm63xx.h tty: serial: bcm63xx: Eliminate unnecessary request/release functions 2014-11-06 14:57:24 -08:00
serial_core.h serial: uapi: Declare all userspace-visible io types 2015-03-07 03:39:55 +01:00
serial_max3100.h
serial_mfd.h
serial_pnx8xxx.h
serial_s3c.h serial: s3c: add missing register definitions 2015-01-09 14:25:39 -08:00
serial_sci.h
serio.h
sfi.h
sfi_acpi.h
sh_clk.h
sh_dma.h
sh_eth.h
sh_intc.h
sh_timer.h
shdma-base.h
shm.h shm: remove unneeded extern for function 2014-08-08 15:57:26 -07:00
shmem_fs.h shm: add sealing API 2014-08-08 15:57:31 -07:00
shrinker.h vmscan: per memory cgroup slab shrinkers 2015-02-12 18:54:09 -08:00
signal.h signal: use BUILD_BUG() instead of _NSIG_WORDS_is_unsupported_size() 2014-10-14 02:18:20 +02:00
signalfd.h
sirfsoc_dma.h
sizes.h
skbuff.h netfilter: bridge: make BRNF_PKT_TYPE flag a bool 2015-04-08 16:49:12 +02:00
slab.h mm, slab: correct config option in comment 2015-04-14 16:48:59 -07:00
slab_def.h slab: embed memcg_cache_params to kmem_cache 2015-02-12 18:54:09 -08:00
slub_def.h mm: slub: share object_err function 2015-02-13 21:21:41 -08:00
sm501-regs.h
sm501.h
smc91x.h
smc911x.h
smp.h init: Get rid of x86isms 2015-01-22 15:10:56 +01:00
smpboot.h smpboot.h: Remove unused function prototype 2015-03-06 23:07:20 +01:00
smsc911x.h
smscphy.h
sock_diag.h net: add real socket cookies 2015-03-11 21:55:28 -04:00
socket.h new helper: msg_data_left() 2015-04-11 15:53:35 -04:00
sonet.h
sony-laptop.h
sonypi.h
sort.h
sound.h
soundcard.h
spinlock.h spinlock: Add spin_lock_bh_nested() 2015-01-03 14:32:57 -05:00
spinlock_api_smp.h spinlock: Add spin_lock_bh_nested() 2015-01-03 14:32:57 -05:00
spinlock_api_up.h spinlock: Add spin_lock_bh_nested() 2015-01-03 14:32:57 -05:00
spinlock_types.h
spinlock_types_up.h
spinlock_up.h
splice.h
spmi.h spmi: Remove shutdown/suspend/resume kernel-doc 2014-11-26 19:33:57 -08:00
srcu.h rcu: Reverse rcu_dereference_check() conditions 2015-03-03 11:16:47 -08:00
ssbi.h
stackprotector.h
stacktrace.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2015-04-14 09:50:27 -07:00
start_kernel.h
stat.h
statfs.h
static_key.h
stddef.h include/stddef.h: Move offsetofend() from vfio.h to a generic kernel header 2015-03-17 09:25:28 +01:00
ste_modem_shm.h
stmmac.h
stmp3xxx_rtc_wdt.h
stmp_device.h
stop_machine.h
string.h mm/util: add kstrdup_const 2015-02-13 21:21:35 -08:00
string_helpers.h lib/string_helpers.c: change semantics of string_escape_mem 2015-04-15 16:35:24 -07:00
stringify.h
sudmac.h
sungem_phy.h
sunserialcore.h
superhyway.h
suspend.h PM / sleep: Re-implement suspend-to-idle handling 2015-02-13 23:49:36 +01:00
svga.h
swab.h
swap.h mm: rename deactivate_page to deactivate_file_page 2015-04-15 16:35:17 -07:00
swap_cgroup.h mm: page_cgroup: rename file to mm/swap_cgroup.c 2014-12-10 17:41:09 -08:00
swapfile.h
swapops.h mm: remove remaining references to NUMA hinting bits and helpers 2015-02-12 18:54:08 -08:00
swiotlb.h
sxgbe_platform.h
synclink.h
sys.h
sys_soc.h
syscalls.h syscalls: Declare sys_*stat64 prototypes if __ARCH_WANT_(COMPAT_)STAT64 2015-01-27 09:38:00 +00:00
syscore_ops.h
sysctl.h sysctl: remove typedef ctl_table 2014-08-08 15:57:24 -07:00
sysfs.h sysfs: Document struct attribute_group 2015-03-25 13:28:58 +01:00
syslog.h syslog: Provide stub check_syslog_permissions 2014-11-17 10:28:04 -08:00
sysrq.h
sysv_fs.h
t10-pi.h block: Add T10 Protection Information functions 2014-09-27 09:14:59 -06:00
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: RFC7413 option support for Fast Open client 2015-04-07 18:36:39 -04:00
textsearch.h
textsearch_fsm.h
tfrc.h
thermal.h thermal: Introduce dummy functions when thermal is not defined 2015-02-24 14:40:42 -04:00
thinkpad_acpi.h
thread_info.h
threads.h
ti_wilink_st.h ti-st: clean up data types (fix harmless memory corruption) 2015-02-03 15:48:51 -08:00
tick.h clockevents: Cleanup dead cpu explicitely 2015-04-03 08:44:37 +02:00
tifm.h
timb_dma.h
timb_gpio.h
time.h Merge branch 'fortglx/3.19-stable/time' of https://git.linaro.org/people/john.stultz/linux into timers/urgent 2015-01-22 12:28:02 +01:00
time64.h
timecounter.h timecounter: provide a macro to initialize the cyclecounter mask field. 2015-01-02 16:47:35 -05:00
timekeeper_internal.h time: Add timerkeeper::tkr_raw 2015-03-27 09:45:07 +01:00
timekeeping.h time, drivers/rtc: Don't bother with rtc_resume() for the nonstop clocksource 2015-04-03 08:18:34 +02:00
timer.h
timerfd.h
timeriomem-rng.h
timerqueue.h
timex.h
topology.h topology: add support for node_to_mem_node() to determine the fallback node 2014-10-09 22:25:51 -04:00
torture.h torture: Address race in module cleanup 2014-09-16 13:41:06 -07:00
toshiba.h
tpm.h
tpm_command.h
trace_clock.h
trace_seq.h tracing: Use trace_seq_used() and seq_buf_used() instead of len 2014-11-19 22:01:15 -05:00
tracefs.h tracing: Have mkdir and rmdir be part of tracefs 2015-02-03 12:48:43 -05:00
tracehook.h
tracepoint.h tracing: Add TRACE_DEFINE_ENUM() macro to map enums to their values 2015-04-08 09:39:56 -04:00
transport_class.h
tsacct_kern.h
tty.h tty: Remove external interface for tty_set_termios() 2015-02-02 10:11:28 -08:00
tty_driver.h tty: Serialize tty flow control changes with flow_lock 2014-09-23 21:19:35 -07:00
tty_flip.h
tty_ldisc.h
typecheck.h
types.h include/linux: remove empty conditionals 2015-04-15 16:35:22 -07:00
u64_stats_sync.h
uaccess.h
ucb1400.h
ucs2_string.h
udp.h netns: constify net_hash_mix() and various callers 2015-03-18 22:00:34 -04:00
uidgid.h kernel: conditionally support non-root users, groups and capabilities 2015-04-15 16:35:22 -07:00
uinput.h
uio.h Merge branch 'iov_iter' into for-next 2015-04-11 22:26:51 -04:00
uio_driver.h uio: support memory sizes larger than 32 bits 2014-11-07 10:09:07 -08:00
uprobes.h uprobes: Remove "weak" from function declarations 2014-10-22 16:14:04 -06:00
usb.h usb: define a generic USB_RESUME_TIMEOUT macro 2015-04-07 12:58:35 -05:00
usb_usual.h uas: Add no-report-opcodes quirk 2014-09-23 21:40:48 -07:00
usbdevice_fs.h
user-return-notifier.h
user.h
user_namespace.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace 2014-12-17 12:31:40 -08:00
uts.h
utsname.h common object embedded into various struct ....ns 2014-12-04 14:31:00 -05:00
uuid.h
uwb.h
verify_pefile.h
vermagic.h
vexpress.h ARM: vexpress: Remove non-DT code 2014-11-28 16:08:16 +01:00
vfio.h VFIO updates for v4.1 2015-04-14 18:06:47 -07:00
vfs.h
vga_switcheroo.h vgaswitcheroo: add vga_switcheroo_fini_domain_pm_ops 2014-09-18 19:21:20 -04:00
vgaarb.h vgaarb: Stub vga_set_legacy_decoding() 2015-04-07 11:14:38 -06:00
via-core.h
via-gpio.h
via.h
via_i2c.h
videodev2.h
virtio.h A balloon enhancement, and a minor race-on-module-unload theoretical 2014-12-17 10:37:56 -08:00
virtio_byteorder.h virtio: memory access APIs 2014-12-09 12:05:24 +02:00
virtio_caif.h
virtio_config.h virtio: core support for config generation 2014-12-14 18:21:31 +02:00
virtio_console.h
virtio_mmio.h virtio-mmio: Update the device to OASIS spec version 2015-01-23 14:57:10 +10:30
virtio_ring.h
vlynq.h
vm_event_item.h mm,vmacache: count number of system-wide flushes 2014-12-13 12:42:48 -08:00
vm_sockets.h
vmacache.h
vmalloc.h kasan, module, vmalloc: rework shadow allocation for modules 2015-03-12 18:46:08 -07:00
vme.h staging: vme: mmap() support for vme_user 2015-03-06 17:03:22 -08:00
vmpressure.h
vmstat.h
vmw_vmci_api.h vmci: propagate msghdr all way down to __qp_memcpy_to_queue() 2015-02-04 01:34:14 -05:00
vmw_vmci_defs.h
vringh.h vringh: update for virtio 1.0 APIs 2014-12-15 23:49:28 +02:00
vt.h
vt_buffer.h vt_buffer: drop console buffer copying optimisations 2015-02-02 10:09:54 -08:00
vt_kern.h
vtime.h
w1-gpio.h
wait.h Merge branch 'for-3.20/drivers' of git://git.kernel.dk/linux-block 2015-02-12 14:30:53 -08:00
wanrouter.h
watchdog.h watchdog: Add watchdog enable/disable all functions 2015-04-02 17:33:15 +02:00
wireless.h
wl12xx.h
wm97xx.h
workqueue.h workqueue: dump workqueues on sysrq-t 2015-03-09 09:22:28 -04:00
writeback.h fs: add dirtytime_expire_seconds sysctl 2015-03-17 12:23:32 -04:00
ww_mutex.h
xattr.h
xz.h
yam.h
z2_battery.h
zbud.h
zconf.h
zlib.h initramfs: support initramfs that is bigger than 2GiB 2014-08-08 15:57:26 -07:00
zorro.h
zpool.h mm/zpool: add name argument to create zpool 2015-02-12 18:54:12 -08:00
zsmalloc.h zsmalloc: support compaction 2015-04-15 16:35:20 -07:00
zutil.h