WSL2-Linux-Kernel/include/linux
Jan Kara 6ee8e25fc3 fsnotify: fix handling of renames in audit
Commit e9fd702a58 ("audit: convert audit watches to use fsnotify
instead of inotify") broke handling of renames in audit.  Audit code
wants to update inode number of an inode corresponding to watched name
in a directory.  When something gets renamed into a directory to a
watched name, inotify previously passed moved inode to audit code
however new fsnotify code passes directory inode where the change
happened.  That confuses audit and it starts watching parent directory
instead of a file in a directory.

This can be observed for example by doing:

  cd /tmp
  touch foo bar
  auditctl -w /tmp/foo
  touch foo
  mv bar foo
  touch foo

In audit log we see events like:

  type=CONFIG_CHANGE msg=audit(1423563584.155:90): auid=1000 ses=2 op="updated rules" path="/tmp/foo" key=(null) list=4 res=1
  ...
  type=PATH msg=audit(1423563584.155:91): item=2 name="bar" inode=1046884 dev=08:0 2 mode=0100644 ouid=0 ogid=0 rdev=00:00 nametype=DELETE
  type=PATH msg=audit(1423563584.155:91): item=3 name="foo" inode=1046842 dev=08:0 2 mode=0100644 ouid=0 ogid=0 rdev=00:00 nametype=DELETE
  type=PATH msg=audit(1423563584.155:91): item=4 name="foo" inode=1046884 dev=08:0 2 mode=0100644 ouid=0 ogid=0 rdev=00:00 nametype=CREATE
  ...

and that's it - we see event for the first touch after creating the
audit rule, we see events for rename but we don't see any event for the
last touch.  However we start seeing events for unrelated stuff
happening in /tmp.

Fix the problem by passing moved inode as data in the FS_MOVED_FROM and
FS_MOVED_TO events instead of the directory where the change happens.
This doesn't introduce any new problems because noone besides
audit_watch.c cares about the passed value:

  fs/notify/fanotify/fanotify.c cares only about FSNOTIFY_EVENT_PATH events.
  fs/notify/dnotify/dnotify.c doesn't care about passed 'data' value at all.
  fs/notify/inotify/inotify_fsnotify.c uses 'data' only for FSNOTIFY_EVENT_PATH.
  kernel/audit_tree.c doesn't care about passed 'data' at all.
  kernel/audit_watch.c expects moved inode as 'data'.

Fixes: e9fd702a58 ("audit: convert audit watches to use fsnotify instead of inotify")
Signed-off-by: Jan Kara <jack@suse.cz>
Cc: Paul Moore <paul@paul-moore.com>
Cc: Eric Paris <eparis@redhat.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2015-02-10 14:30:28 -08:00
..
amba Char/Misc driver patches for 3.19-rc1 2014-12-14 16:43:47 -08:00
bcma bcma: make it possible to specify a IRQ num in bcma_core_irq() 2014-11-11 16:31:11 -05:00
byteorder include/linux/byteorder/generic.h: minor comment fix 2014-08-06 18:01:23 -07:00
can can: dev: Consolidate and unify state change handling 2014-12-07 21:22:09 +01:00
ceph libceph: fix sparse endianness warnings 2015-01-08 20:36:57 +03:00
clk ARM: OMAP2+: clock: fix DPLL code to use new determine rate APIs 2014-12-15 17:05:08 -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 This is the bulk of GPIO changes for the v3.19 series: 2014-12-14 14:05:05 -08:00
hsi
i2c USB patches for 3.19-rc1 2014-12-14 14:57:16 -08:00
iio Merge 3.18-rc7 into staging-work. 2014-12-02 16:20:59 -08:00
input Input: MT - make slot cleanup callable outside mt_sync_frame() 2014-08-07 23:37:07 -07:00
irqchip Merge branch 'irq-irqdomain-arm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-12-15 17:30:09 -08:00
isdn
lockd lockd: eliminate LOCKD_DEBUG 2014-11-24 17:24:08 -05:00
mfd Merge remote-tracking branch 'regulator/fix/s2mps11' into regulator-linus 2015-01-16 12:05:35 +00:00
mlx4 net/mlx4_core: Fix kernel Oops (mem corruption) when working with more than 80 VFs 2015-02-02 19:38:04 -08:00
mlx5 IB/mlx5: Handle page faults 2014-12-15 18:19:03 -08:00
mmc mmc: sdhci: Disable re-tuning for HS400 2015-01-12 10:14:56 +01:00
mtd mtd: nand: add ATO manufacturer info 2014-11-25 20:11:12 -08:00
netfilter netfilter: ipset: send nonzero skbinfo extensions only 2014-09-15 22:20:21 +02:00
netfilter_arp
netfilter_bridge
netfilter_ipv4
netfilter_ipv6
phy phy: phy-ti-pipe3: fix inconsistent enumeration of PCIe gen2 cards 2014-12-23 15:44:32 +05:30
pinctrl pinctrl: generic: Fix PIN_CONFIG_DRIVE_OPEN_SOURCE source/drain doc mismatch 2014-09-04 19:21:45 +02:00
platform_data Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux 2014-12-15 15:52:01 -08:00
power power: charger-manager: Fix accessing invalidated power supply after charger unbind 2014-10-28 03:30:21 +01:00
raid
regulator Merge remote-tracking branches 'regulator/topic/max8649', 'regulator/topic/mode', 'regulator/topic/mt6397', 'regulator/topic/pfuze100' and 'regulator/topic/qcom-rpm' into regulator-next 2015-02-08 11:16:27 +08:00
rtc
sched
soc/ti drivers/soc: ti: fix build break with modules 2014-09-24 11:53:39 -07:00
spi Merge remote-tracking branches 'spi/topic/orion', 'spi/topic/pxa2xx', 'spi/topic/qup', 'spi/topic/rockchip' and 'spi/topic/samsung' into spi-next 2015-02-08 11:16:55 +08:00
ssb ssb: extract power info from SPROM revs 4 and 5 2014-07-18 13:45:24 -04:00
sunrpc sunrpc: convert to lockless lookup of queued server threads 2014-12-09 11:22:22 -05:00
unaligned
usb USB patches for 3.19-rc1 2014-12-14 14:57:16 -08:00
uwb
wimax
8250_pci.h
a.out.h
acct.h make fs/{namespace,super}.c forget about acct.h 2014-08-07 14:40:09 -04:00
acpi.h ACPI / processor: Rename acpi_(un)map_lsapic() to acpi_(un)map_cpu() 2015-01-05 23:34:26 +01: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
alarmtimer.h
altera_jtaguart.h
altera_uart.h
amd-iommu.h iommu/amd: Moving PPR fault flags macros definitions 2014-07-09 16:02:41 +02:00
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h
apm-emulation.h
apm_bios.h
apple_bl.h
arcdevice.h net: arcnet: Remove "#define bool int" 2014-07-07 21:34:43 -07:00
arm-cci.h
asn1.h
asn1_ber_bytecode.h
asn1_decoder.h
assoc_array.h
assoc_array_priv.h
async.h
async_tx.h
ata.h libata: s/ata_id_removeable()/ata_id_removable()/ 2014-12-25 15:27:16 -05: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 ASoC: atmel_ssc_dai: enable fslen extension feature 2014-06-21 11:37:35 +01:00
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 'upstream' of git://git.infradead.org/users/pcmoore/audit 2014-12-23 18:13:16 -08:00
auto_dev-ioctl.h
auto_fs.h
auxvec.h
average.h
b1pcmcia.h
backing-dev.h bdi: reimplement bdev_inode_switch_bdi() 2014-09-08 10:00:43 -06: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
bfin_mac.h
binfmts.h syscalls: implement execveat() system call 2014-12-13 12:42:51 -08:00
bio.h blk: introduce generic io stat accounting help function 2014-11-24 08:04:44 -07:00
bit_spinlock.h
bitmap.h Driver core patches for 3.19-rc1 2014-12-14 16:10:09 -08:00
bitops.h bitops: Fix shift overflow in GENMASK macros 2014-11-16 09:55:39 +01:00
bitrev.h
blk-iopoll.h
blk-mq.h blk-mq: Add helper to abort requeued requests 2015-01-08 08:55:53 -07:00
blk_types.h blk-mq: Allow requests to never expire 2015-01-08 08:59:01 -07:00
blkdev.h Merge branch 'for-3.19/core' of git://git.kernel.dk/linux-block 2014-12-13 14:14:23 -08: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 net: sock: allow eBPF programs to be attached to sockets 2014-12-05 21:47:32 -08:00
brcmphy.h net: phy: add BCM7425 and BCM7429 PHYs 2014-10-01 22:12:48 -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 CAPABILITIES: remove undefined caps from all processes 2014-07-24 21:53:47 +10: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
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
clk-private.h Allwinner Clocks Additions for 3.18 2014-09-27 12:52:33 -07:00
clk-provider.h clk: Change clk_ops->determine_rate to return a clk_hw as the best parent 2014-12-03 16:21:37 -08:00
clk.h The clk tree changes for 3.18 are dominated by clock drivers. Mostly 2014-10-15 07:05:03 +02: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
clocksource.h clocksource: Remove "weak" from clocksource_default_clock() declaration 2014-10-22 16:14:03 -06:00
cm4000_cs.h
cma.h mm: cma: split cma-reserved in dmesg log 2014-12-18 19:08:10 -08: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, compaction: simplify deferred compaction 2014-12-10 17:41:06 -08:00
compat.h syscalls: implement execveat() system call 2014-12-13 12:42:51 -08:00
compiler-clang.h
compiler-gcc.h
compiler-gcc3.h
compiler-gcc4.h compiler/gcc4+: Remove inaccurate comment about 'asm goto' miscompiles 2014-10-28 11:03:40 +01:00
compiler-gcc5.h compiler/gcc4+: Remove inaccurate comment about 'asm goto' miscompiles 2014-10-28 11:03:40 +01:00
compiler-intel.h
compiler.h Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu into core/rcu 2015-01-21 06:12:21 +01:00
completion.h
component.h component: add support for component match array 2014-07-03 11:32:43 +01:00
concap.h
configfs.h
connector.h
console.h
console_struct.h
consolemap.h
container.h
context_tracking.h
context_tracking_state.h
cordic.h
coredump.h
coresight.h coresight: fixed comments in coresight.h 2014-11-26 19:28:11 -08:00
cper.h trace, RAS: Add eMCA trace event interface 2014-06-25 13:26:47 -07:00
cpu.h drivers: base: add cpu_device_create to support per-cpu devices 2014-11-07 11:45:00 -08: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: Introduce ->ready() callback for cpufreq drivers 2014-11-29 23:38:38 +01:00
cpuidle.h cpuidle / ACPI: remove unused CPUIDLE_FLAG_TIME_INVALID 2014-12-17 02:26:28 +01:00
cpumask.h cpumask: factor out show_cpumap into separate helper function 2014-11-07 11:45:00 -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 lib: crc32: Add some additional __pure annotations 2014-06-25 16:04:00 -07:00
crc32c.h
cred.h groups: Consolidate the setgroups permission checks 2014-12-05 17:19:27 -06:00
crypto.h crypto: prefix module autoloading with "crypto-" 2014-11-24 22:43:57 +08:00
cryptohash.h
cryptouser.h
cs5535.h
ctype.h
cuda.h
cyclades.h
davinci_emac.h
dca.h
dcache.h switch d_materialise_unique() users to d_splice_alias() 2014-11-19 13:01:20 -05:00
dccp.h
dcookies.h
debug_locks.h
debugfs.h Driver core patches for 3.19-rc1 2014-12-14 16:10:09 -08: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.h PM: Eliminate CONFIG_PM_RUNTIME 2014-12-19 22:55:06 +01:00
device-mapper.h dm: add presuspend_undo hook to target_type 2014-11-19 11:24:59 -05:00
device.h Driver core patches for 3.19-rc1 2014-12-14 16:10:09 -08:00
device_cgroup.h
devpts_fs.h
digsig.h
dio.h
dirent.h
dlm.h
dlm_plock.h
dm-dirty-log.h
dm-io.h
dm-kcopyd.h
dm-region-hash.h
dm9000.h
dma-attrs.h
dma-buf.h dma-buf: add poll support, v3 2014-07-08 13:36:52 -07:00
dma-contiguous.h CMA: generalize CMA reserved area management functionality 2014-08-06 18:01:16 -07:00
dma-debug.h
dma-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 dmaengine: clarify the issue_pending expectations 2014-12-05 20:55:27 +05:30
dmapool.h
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
dqblk_v2.h
drbd.h drbd: Minor cleanups 2014-11-10 09:27:30 -07:00
drbd_genl.h drbd: New net configuration option socket-check-timeout 2014-07-10 18:35:01 +02:00
drbd_genl_api.h
drbd_limits.h drbd: New net configuration option socket-check-timeout 2014-07-10 18:35:01 +02:00
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 * Move efivarfs from the misc filesystem section to pseudo filesystem, 2015-01-29 19:16:40 +01:00
efs_vh.h
eisa.h
elevator.h Revert "block: add __init to elv_register" 2014-06-22 16:34:11 -06:00
elf-fdpic.h
elf.h 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
err.h
errno.h
errqueue.h
etherdevice.h net: Add functions for handling padding frame and adding to length 2014-12-08 20:47: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
ext2_fs.h
extcon.h
f2fs_fs.h f2fs: remove unnecessary macro 2014-11-04 17:34:15 -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 fbdev: arm has __raw I/O accessors, use them in fb.h 2014-07-01 13:32:32 +03:00
fcdevice.h
fcntl.h
fd.h
fddidevice.h
fdtable.h
fec.h
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 net: sock: allow eBPF programs to be attached to sockets 2014-12-05 21:47:32 -08:00
fips.h
firewire.h
firmware-map.h
firmware.h firmware loader: inform direct failure when udev loader is disabled 2014-07-08 15:28:16 -07:00
fixp-arith.h
flat.h
flex_array.h
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 vfs: renumber FMODE_NONOTIFY and add to uniqueness check 2015-01-08 15:10:52 -08:00
fs_enet_pd.h net: fs_enet: Remove non NAPI RX 2014-10-08 16:01:41 -04:00
fs_pin.h take fs_pin stuff to fs/* 2014-08-07 14:40:08 -04: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 perf: Avoid horrible stack usage 2015-01-14 15:11:45 +01:00
ftrace_irq.h
futex.h
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, gfp: escalatedly define GFP_HIGHUSER and GFP_HIGHUSER_MOVABLE 2014-12-13 12:42:48 -08:00
glob.h lib: add lib/glob.c 2014-08-06 18:01:24 -07:00
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
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 video/hdmi: Relicense header under MIT license 2014-11-13 10:44:42 +01:00
hid-debug.h
hid-roccat.h
hid-sensor-hub.h
hid-sensor-ids.h
hid.h Merge branches 'for-3.19/hid-report-len', 'for-3.19/i2c-hid', 'for-3.19/lenovo', 'for-3.19/logitech', 'for-3.19/microsoft', 'for-3.19/plantronics', 'for-3.19/rmi', 'for-3.19/sony' and 'for-3.19/wacom' into for-linus 2014-12-12 11:15:33 +01:00
hiddev.h
hidraw.h
highmem.h mm: BUG when __kmap_atomic_idx equals KM_TYPE_NR 2014-08-06 18:01:22 -07:00
highuid.h
hil.h
hil_mlc.h
hippidevice.h
host1x.h drm/tegra: Make job submission 64-bit safe 2014-08-04 10:07:36 +02: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: convert a few VM_BUG_ON callers to VM_BUG_ON_VMA 2014-10-09 22:25:57 -04:00
hugetlb.h powerpc updates for 3.19 2014-12-11 17:48:14 -08: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: add per-device entropy derating 2014-07-15 04:49:40 -04:00
hwmon-sysfs.h
hwmon-vid.h
hwmon.h
hwspinlock.h
hyperv.h hyperv: Add support for vNIC hot removal 2014-12-08 20:24:11 -05: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: Only include slave support if selected 2015-01-26 22:05:20 +01:00
i2o.h
i7300_idle.h
i8042.h
i8253.h
icmp.h
icmpv6.h
ide.h
idr.h idr: reorder the fields 2014-06-06 16:08:13 -07:00
ieee80211.h mac80211: add parsing of TDLS specific IEs 2014-11-19 18:45:16 +01:00
ieee802154.h ieee802154: rename and move WPAN_NUM_ defines 2014-11-17 09:49:17 +01:00
if_arp.h
if_bridge.h bridge: add new brport flag LEARNING_SYNC 2014-12-02 20:01:23 -08:00
if_eql.h
if_ether.h
if_fddi.h
if_frad.h
if_link.h
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
if_team.h
if_tun.h
if_tunnel.h
if_vlan.h net: Fix vlan_get_protocol for stacked vlan 2015-01-30 18:03:47 -08:00
igmp.h ipv4: implement igmp_qrv sysctl to tune igmp robustness variable 2014-09-04 22:26:14 -07: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_lro.h
inetdevice.h inetdevice: fixed signed integer overflow 2014-11-14 17:08:58 -05:00
init.h
init_ohci1394_dma.h
init_task.h Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-12-09 21:21:34 -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 iommu/vt-d: Make use of IOMMU sysfs support 2014-07-04 12:35:59 +02:00
intel_mid_dma.h
intel_pmic_gpio.h
interrupt.h linux/interrupt.h: remove the definition of unused tasklet_hi_enable 2014-12-12 15:15:41 -05:00
interval_tree.h
interval_tree_generic.h
io-mapping.h
io.h devres: support sizes greater than an unsigned long 2014-11-07 10:09:07 -08: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
ioport.h resources: Add device-managed request/release_resource() 2014-09-04 14:41:43 -06:00
ioprio.h
iova.h iommu/vt-d: Introduce helper function iova_size() to improve code readability 2014-07-23 16:04:47 +02:00
ip.h
ipack.h 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: move INET6_MATCH() to include/net/inet6_hashtables.h 2014-11-05 16:59:04 -05:00
ipv6_route.h
irq.h Merge branch 'irq-irqdomain-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-12-10 09:01:01 -08:00
irq_cpustat.h
irq_work.h irq_work: Force raised irq work to run on irq work interrupt 2014-09-13 18:38:15 +02:00
irqchip.h
irqdesc.h ACPI and power management updates for 3.18-rc1 2014-10-09 16:07:43 -04:00
irqdomain.h irqdomain: Introduce helper function irq_domain_add_hierarchy() 2014-11-23 13:01:46 +01:00
irqflags.h
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 net: filter: split 'struct sk_filter' into socket and bpf parts 2014-08-02 15:03:58 -07:00
isdnif.h
isicom.h
jbd.h
jbd2.h jbd2: simplify calling convention around __jbd2_journal_clean_checkpoint_list 2014-09-18 00:58:12 -04:00
jbd_common.h
jhash.h
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: Fix small typos in the documentation 2014-08-10 09:00:16 +02:00
jump_label_ratelimit.h
jz4740-adc.h
kallsyms.h
kbd_diacr.h
kbd_kern.h
kbuild.h
kconfig.h
kcore.h
kd.h
kdb.h kdb: Add enable mask for groups of commands 2014-11-11 09:31:52 -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 sched: don't cause task state changes in nested sleep debugging 2015-02-01 12:23:32 -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 sysfs/kernfs: allow attributes to request write buffer be pre-allocated. 2014-11-07 10:53:25 -08:00
kexec.h kexec: take the segment adding out of locate_mem_hole functions 2014-10-14 02:18:21 +02:00
key-type.h KEYS: Make the key matching functions return bool 2014-09-16 17:36:08 +01:00
key.h Merge branch 'keys-fixes' into keys-next 2014-07-22 21:55:45 +01:00
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 klist: use same naming scheme as hlist for klist_add_after() 2014-08-06 18:01:24 -07:00
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: introduce weak arch_check_ftrace_location() helper function 2014-10-27 13:27:27 +01:00
kref.h
ks0108.h
ks8842.h
ks8851_mll.h
ksm.h
kthread.h kthread_work: remove the unused wait_queue_head 2014-07-28 14:16:30 -04:00
ktime.h Couple of items for 3.20 2015-01-24 10:11:12 +01:00
kvm_host.h Second round of changes for KVM for arm/arm64 for v3.19; fixes reboot 2014-12-15 13:06:40 +01: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
led-lm3530.h
leds-bd2802.h
leds-lp3944.h
leds-pca9532.h
leds-regulator.h
leds-tca6507.h
leds.h Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds 2014-12-15 18:28:25 -08:00
leds_pwm.h
lglock.h
lguest.h
lguest_launcher.h
libata.h Merge branch 'for-3.19-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata into for-3.20 2015-02-09 07:54:41 -05: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
list_nulls.h
list_sort.h
llc.h
llist.h
lockdep.h Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2014-10-13 15:51:40 +02:00
lockref.h
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 drivers/rtc/rtc-cmos.c: drivers/char/rtc.c features for DECstation support 2014-06-06 16:08:07 -07:00
mcb.h
mdio-bitbang.h
mdio-gpio.h
mdio-mux.h
mdio.h
mei_cl_bus.h mei: remove include to pci header from mei module files 2014-09-29 11:56:02 -04:00
memblock.h include/linux/memblock.h: add __init to memblock_set_bottom_up() 2014-08-06 18:01:15 -07:00
memcontrol.h memcg: fix possible use-after-free in memcg_kmem_get_cache() 2014-12-13 12:42:49 -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 memory-hotplug: add sysfs valid_zones attribute 2014-10-09 22:25:52 -04:00
mempolicy.h mempolicy: unexport get_vma_policy() and remove its "task" arg 2014-10-09 22:25:56 -04:00
mempool.h
memstick.h
mg_disk.h
mic_bus.h misc: mic: add a bus driver for virtual MIC devices 2014-07-11 18:27:56 -07:00
micrel_phy.h net: phy: micrel: add generic clock-mode-select support 2014-11-21 14:08:56 -05:00
migrate.h vm_area_operations: kill ->migrate() 2014-12-17 08:26:51 -05:00
migrate_mode.h
mii.h
miscdevice.h
mm.h vm: add VM_FAULT_SIGSEGV handling support 2015-01-29 10:51:32 -08:00
mm_inline.h
mm_types.h mm/debug-pagealloc: prepare boottime configurable on/off 2014-12-13 12:42:48 -08: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/page_ext: resurrect struct page extending code for debugging 2014-12-13 12:42:48 -08:00
mnt_namespace.h
mod_devicetable.h mod_devicetable.h: grammar fix in comment 2014-10-29 14:31:17 +01:00
module.h module: make module_refcount() a signed integer. 2015-01-22 11:15:54 +10:30
moduleloader.h module: remove mod arg from module_free, rename module_memfree(). 2015-01-20 11:38:33 +10:30
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 locking/Documentation: Move locking related docs into Documentation/locking/ 2014-08-13 10:32:03 +02:00
mv643xx.h
mv643xx_eth.h
mv643xx_i2c.h
mvebu-pmsu.h ARM: mvebu: extend PMSU code to support dynamic frequency scaling 2014-07-16 12:58:36 +00:00
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
netdev_features.h net: Remove MPLS GSO feature. 2014-11-05 23:52:33 -08:00
netdevice.h netdevice: Add missing parentheses in macro 2015-01-14 16:34:41 -05:00
netfilter.h netfilter: HAVE_JUMP_LABEL instead of CONFIG_JUMP_LABEL 2014-08-25 10:45:28 +02:00
netfilter_bridge.h netfilter: bridge: move br_netfilter out of the core 2014-09-26 18:42:31 +02:00
netfilter_ipv4.h
netfilter_ipv6.h
netlink.h netlink/genetlink: pass network namespace to bind/unbind 2014-12-27 03:07:50 -05:00
netpoll.h
nfs.h
nfs3.h
nfs4.h nfs: Add DEALLOCATE support 2014-11-25 16:38:32 -05:00
nfs_fs.h NFS: fix subtle change in COMMIT behavior 2014-11-24 17:00:42 -05:00
nfs_fs_i.h
nfs_fs_sb.h NFSv4: Cache the NFSv4/v4.1 client owner_id in the struct nfs_client 2015-01-05 19:40:53 -08:00
nfs_idmap.h
nfs_iostat.h
nfs_page.h nfs: don't sleep with inode lock in lock_and_join_requests 2014-08-22 18:04:43 -04:00
nfs_xdr.h nfs: Add ALLOCATE support 2014-11-25 16:38:32 -05: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 kernel/watchdog.c: control hard lockup detection default 2014-10-14 02:18:27 +02:00
node.h
nodemask.h mm, oom: ensure memoryless node zonelist always includes zones 2014-08-06 18:01:21 -07: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 namespaces: Use task_lock and not rcu to protect nsproxy 2014-07-29 18:08:50 -07:00
ntb.h
nubus.h
numa.h
nvme.h NVMe: Convert to blk-mq 2014-11-04 13:18:52 -07:00
nvram.h
nwpserial.h
nx842.h
of.h Devicetree changes for v3.19 2014-12-11 13:06:58 -08:00
of_address.h of: Request and map make argument name constant 2014-11-04 16:43:08 +00:00
of_device.h
of_dma.h dmaengine: of: add common xlate function for matching by channel id 2014-07-26 00:21:41 +05:30
of_fdt.h of: Add memory limiting function for flattened devicetrees 2014-07-29 21:26:45 -06:00
of_gpio.h
of_graph.h
of_iommu.h iommu: store DT-probed IOMMU data privately 2014-12-05 14:35:52 +00:00
of_irq.h
of_mdio.h net: fix circular dependency in of_mdio code 2014-07-02 00:24:14 -07:00
of_mtd.h
of_net.h
of_pci.h PCI/MSI: Rename "struct msi_chip" to "struct msi_controller" 2014-11-12 07:49:38 -07:00
of_pdt.h of: Eliminate of_allnodes list 2014-11-04 13:29:38 +00:00
of_platform.h of/reconfig: Add OF_DYNAMIC notifier for platform_bus_type 2014-11-24 22:25:06 +00: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 pefile: Parse the "Microsoft individual code signing" data blob 2014-07-09 14:58:37 +01:00
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 MMC highlights for 3.16: 2014-06-10 14:35:22 -07:00
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 iommu/omap: Remove virtual memory manager 2014-07-29 12:38:07 +02:00
omap-mailbox.h mailbox/omap: adapt to the new mailbox framework 2014-11-27 12:51:04 +05:30
omapfb.h
oom.h mm: page_alloc: embed OOM killing naturally into allocation slowpath 2015-01-26 13:37:18 -08: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: page-flags: clean up the page flag test, set, clear macros 2014-08-06 18:01:17 -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: memcontrol: remove obsolete kmemcg pinning tricks 2014-12-10 17:41:05 -08:00
page_ext.h mm/page_owner: keep track of page owners 2014-12-13 12:42:48 -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: Don't oops on virtual buses in acpi_pci_get_bridge_handle() 2014-11-05 13:06:16 -07:00
pci-aspm.h
pci-ats.h
pci-dma.h
pci.h PCI: Add pci_claim_bridge_resource() to clip window if necessary 2015-01-16 10:04:42 -06:00
pci_hotplug.h PCI: Remove unused and broken to_hotplug_slot() 2014-11-13 10:35:25 -07:00
pci_ids.h USB patches for 3.19-rc1 2014-12-14 14:57:16 -08:00
pcieport_if.h
pda_power.h
pe.h Provide PE binary definitions 2014-07-09 14:58:37 +01:00
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: Decouple unthrottling and rotating 2015-02-04 08:07:16 +01: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: add static data field to struct phy_driver 2014-11-21 14:08:55 -05:00
phy_fixed.h net: Allow FIXED_PHY to be modular. 2014-12-16 15:02:23 -05:00
pid.h
pid_namespace.h common object embedded into various struct ....ns 2014-12-04 14:31:00 -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 core: platform: let platform_create_bundle initialize module owner 2014-11-06 15:16:02 -08:00
plist.h Replace mentions of "list_struct" to "list_head" 2014-11-20 14:45:15 +01:00
pm.h PM: Remove the SET_PM_RUNTIME_PM_OPS() macro 2014-12-13 00:45:24 +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 Merge branches 'pm-domains', 'powercap' and 'pm-tools' 2014-12-29 21:24:00 +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
poison.h
poll.h
posix-clock.h
posix-timers.h
posix_acl.h
posix_acl_xattr.h
power_supply.h power_supply: Add no_thermal property to prevent recursive get_temp calls 2014-10-28 03:30:19 +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: add dummy routine for when CONFIG_PRINTK=n 2015-01-26 13:37:18 -08: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 Driver core: Unified interface for firmware node properties 2014-11-04 21:58:23 +01:00
proportions.h proportions: add @gfp to init functions 2014-09-08 09:51:30 +09:00
pstore.h
pstore_ram.h pstore-ram: Allow optional mapping with pgprot_noncached 2014-12-11 13:38:31 -08:00
pti.h
ptp_classify.h ptp: Classify ptp over ip over vlan packets 2014-07-07 16:57:18 -07:00
ptp_clock_kernel.h
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: Switch ->get_dqblk() and ->set_dqblk() to use bytes as space units 2015-01-28 09:01:40 +01:00
quotaops.h quota: Switch ->get_dqblk() and ->set_dqblk() to use bytes as space units 2015-01-28 09:01:40 +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 RAS, debugfs: Add debugfs interface for RAS subsystem 2014-06-25 11:22:03 -07:00
ratelimit.h ratelimit: add initialization macro 2014-12-13 12:42:52 -08:00
rational.h
rbtree.h
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.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
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: add support for kernel restart handler call chain 2014-09-26 00:00:06 -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 reservation: add suppport for read-only access using rcu 2014-07-08 13:41:08 -07:00
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
resume-trace.h
rfkill-gpio.h
rfkill-regulator.h
rfkill.h
rhashtable.h rhashtable: Drop gfp_flags arg in insert/remove functions 2014-11-13 15:18:40 -05: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: prevent endless growth of anon_vma hierarchy 2015-01-08 15:10:51 -08:00
rndis.h hyperv: Add handler for RNDIS_STATUS_NETWORK_CHANGE event 2014-06-19 21:17:37 -07:00
root_dev.h
rotary_encoder.h
rpmsg.h
rslib.h
rtc-ds2404.h
rtc-v3020.h
rtc.h rtc: Convert rtc_set_ntp_time() to use timespec64 2015-01-23 17:21:57 -08:00
rtmutex.h rtmutex: Confine deadlock logic to futex 2014-06-21 22:05:30 +02:00
rtnetlink.h rtnetlink: delay RTM_DELLINK notification until after ndo_uninit() 2014-12-09 13:36:57 -05:00
rwlock.h
rwlock_api_smp.h
rwlock_types.h
rwsem-spinlock.h locking/rwsem: Rename 'activity' to 'count' 2014-07-16 14:56:55 +02:00
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 syscalls: implement execveat() system call 2014-12-13 12:42:51 -08: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 branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security 2014-10-12 10:13:55 -04:00
selection.h
selinux.h
sem.h
semaphore.h
seq_buf.h seq-buf: Make seq_buf_bprintf() conditional on CONFIG_BINARY_PRINTF 2014-11-19 22:01:19 -05:00
seq_file.h seq_file: Rename seq_overflow() to seq_has_overflowed() and make public 2014-10-29 20:26:06 -04:00
seq_file_net.h
seqlock.h seqlock: Add irqsave variant of read_seqbegin_or_lock() 2014-09-19 12:35:16 +02: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: Remove obsolete handling of rs485 ioctls 2014-11-06 14:59:21 -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: core: Add big-endian iotype 2014-11-25 17:06:40 -08:00
serial_max3100.h
serial_mfd.h
serial_pnx8xxx.h
serial_s3c.h
serial_sci.h
serio.h
sfi.h
sfi_acpi.h ACPI / SFI: Fix wrong <acpi/acpi.h> inclusion in SFI/ACPI wrapper - table definitions. 2014-07-23 01:10:45 +02:00
sh_clk.h
sh_dma.h dmaengine: shdma: Add more register documentation 2014-07-09 10:55:57 +02:00
sh_eth.h
sh_intc.h
sh_timer.h clocksource: shmobile: Remove unused sh_timer_config members 2014-07-02 16:01:51 +02:00
shdma-base.h
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 mm: vmscan: invoke slab shrinkers from shrink_zone() 2014-12-13 12:42:48 -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 net: Pull out core bits of __netdev_alloc_skb and add __napi_alloc_skb 2014-12-10 13:31:57 -05:00
slab.h memcg: fix possible use-after-free in memcg_kmem_get_cache() 2014-12-13 12:42:49 -08:00
slab_def.h mm/slab: use percpu allocator for cpu cache 2014-10-09 22:25:51 -04:00
slub_def.h
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
smsc911x.h
smscphy.h
sock_diag.h
socket.h net: introduce helper macro for_each_cmsghdr 2014-12-10 22:41:55 -05:00
sonet.h
sony-laptop.h
sonypi.h
sort.h
sound.h
soundcard.h
spinlock.h locking/spinlocks: Always evaluate the second argument of spin_lock_nested() 2014-08-13 10:32:38 +02:00
spinlock_api_smp.h
spinlock_api_up.h
spinlock_types.h
spinlock_types_up.h
spinlock_up.h
splice.h fs/splice.c: remove unneeded exports 2014-06-12 00:21:11 -04:00
spmi.h spmi: Remove shutdown/suspend/resume kernel-doc 2014-11-26 19:33:57 -08:00
srcu.h rcu: Combine DEFINE_SRCU() and DEFINE_STATIC_SRCU() 2015-01-06 11:04:27 -08:00
ssbi.h
stackprotector.h
stacktrace.h stacktrace: introduce snprint_stack_trace for buffer output 2014-12-13 12:42:48 -08:00
start_kernel.h
stat.h
statfs.h
static_key.h
stddef.h
ste_modem_shm.h
stmmac.h net: stmmac: Support devicetree configs for mcast and ucast filter entries 2014-07-31 14:13:29 -07:00
stmp3xxx_rtc_wdt.h
stmp_device.h
stop_machine.h
string.h This adds a memzero_explicit() call which is guaranteed not to be 2014-10-24 12:33:32 -07:00
string_helpers.h lib / string_helpers: introduce string_escape_mem() 2014-10-14 02:18:26 +02:00
stringify.h
sudmac.h
sungem_phy.h
sunserialcore.h
superhyway.h
suspend.h ACPI / sleep: Rework the handling of ACPI GPE wakeup from suspend-to-idle 2014-09-30 21:06:07 +02:00
svga.h
swab.h
swap.h mm: move swp_entry_t definition to include/linux/mm_types.h 2014-12-13 12:42:47 -08: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
swiotlb.h
sxgbe_platform.h
synclink.h
sys.h
sys_soc.h
syscalls.h syscalls: implement execveat() system call 2014-12-13 12:42:51 -08:00
syscore_ops.h
sysctl.h sysctl: remove typedef ctl_table 2014-08-08 15:57:24 -07:00
sysfs.h sysfs/kernfs: allow attributes to request write buffer be pre-allocated. 2014-11-07 10:53:25 -08: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 Merge branch 'for-davem-2' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2014-12-10 13:17:23 -05:00
textsearch.h
textsearch_fsm.h
tfrc.h
thermal.h Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal into thermal-soc 2014-12-21 22:49:12 +08:00
thinkpad_acpi.h
thread_info.h
threads.h
ti_wilink_st.h misc: st_kim: Increase size of dev_name buffer to incorporate termination 2014-09-26 08:15:29 +01:00
tick.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux 2014-10-14 03:47:00 +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 time: More core infrastructure for timespec64 2014-07-23 10:17:53 -07:00
timekeeper_internal.h timekeeping: Provide fast accessor to the seconds part of CLOCK_MONOTONIC 2014-10-29 15:15:40 +01:00
timekeeping.h time: Expose get_monotonic_boottime64 for in-kernel use 2015-01-23 17:21:55 -08:00
timer.h
timerfd.h timerfd: Implement timerfd_ioctl method to restore timerfd_ctx::ticks, v3 2014-07-18 11:49:57 +02:00
timeriomem-rng.h
timerqueue.h
timex.h
topology.h 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: Provide a generic means to override the chip returned timeouts 2014-07-29 23:10:56 +02:00
tpm_command.h
trace_clock.h
trace_seq.h tracing: Use trace_seq_used() and seq_buf_used() instead of len 2014-11-19 22:01:15 -05:00
tracehook.h tracehook_signal_handler: Remove sig, info, ka and regs 2014-08-06 13:03:43 +02:00
tracepoint.h tracing: Add condition check to RCU lockdep checks 2015-02-07 19:34:25 -05:00
transport_class.h
tsacct_kern.h
tty.h tty: Convert tty->closing to int 2014-11-06 14:57:27 -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
u64_stats_sync.h
uaccess.h
ucb1400.h
ucs2_string.h
udp.h udp: Add support for doing checksum unnecessary conversion 2014-09-01 21:36:28 -07:00
uidgid.h
uinput.h
uio.h new helper: iter_is_iovec() 2014-12-17 06:43:56 -05: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 / PM: Drop CONFIG_PM_RUNTIME from the USB core 2014-12-04 00:51:54 +01: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 pefile: Parse a PE binary to find a key and a signature contained therein 2014-07-09 14:58:37 +01:00
vermagic.h
vexpress.h ARM: vexpress: Remove non-DT code 2014-11-28 16:08:16 +01:00
vfio.h drivers/vfio: Enable VFIO if EEH is not supported 2014-08-08 10:39:16 -06: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: Drop obsolete #ifndef 2014-09-16 15:02:55 -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_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 mm/vmalloc.c: clean up map_vm_area third argument 2014-08-06 18:01:19 -07:00
vme.h
vmpressure.h
vmstat.h
vmw_vmci_api.h vmci: propagate msghdr all way down to __qp_memcpy_from_queue() 2014-12-09 16:28:23 -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_kern.h
vtime.h
w1-gpio.h
wait.h sched/wait: Introduce wait_on_bit_timeout() 2015-02-04 07:52:32 +01:00
wanrouter.h
watchdog.h watchdog: simplify definitions of WATCHDOG_NOWAYOUT(_INIT_STATUS)? 2014-10-20 20:46:25 +02:00
wireless.h
wl12xx.h
wm97xx.h
workqueue.h workqueue.h: remove loops of single statement macros 2015-01-06 18:16:30 -05:00
writeback.h mm: protect set_page_dirty() from ongoing truncation 2015-01-08 15:10:51 -08:00
ww_mutex.h
xattr.h
xz.h
yam.h
z2_battery.h
zbud.h mm/zbud: change zbud_alloc size type to size_t 2014-08-06 18:01:23 -07:00
zconf.h
zlib.h initramfs: support initramfs that is bigger than 2GiB 2014-08-08 15:57:26 -07:00
zorro.h
zpool.h mm/zpool: implement common zpool api to zbud/zsmalloc 2014-08-06 18:01:23 -07:00
zsmalloc.h zsmalloc: change return value unit of zs_get_total_size_bytes 2014-10-09 22:26:02 -04:00
zutil.h