linux/include/linux
Lars-Peter Clausen 71546300c8 i2c: Make return type of i2c_del_adapter() void
i2c_del_adapter() is usually called from a drivers remove callback. The Linux
device driver model does not allow the remove callback to fail and all resources
allocated in the probe callback need to be freed, as well as all resources which
have been provided to the rest of the kernel(for example a I2C adapter) need to
be revoked. So any function revoking such resources isn't allowed to fail
either. i2c_del_adapter() adheres to this requirement and will never fail. But
i2c_del_adapter()'s return type is int, which may cause driver authors to think
that it can fail. This led to code constructs like:

	ret = i2c_del_adapter(...);
	BUG_ON(ret);

Since i2c_del_adapter() always returns 0 the BUG_ON is never hit and essentially
becomes dead code, which means it can be removed. Making the return type of
i2c_del_adapter() void makes it explicit that the function will never fail and
should prevent constructs like the above from re-appearing in the kernel code.

All callers of i2c_del_adapter() have already been updated in a previous patch
to ignore the return value, so the conversion of the return type from int to
void can be done without causing any build failures.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Reviewed-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
2013-04-02 07:06:17 +02:00
..
amba Merge branch 'next' of git://git.infradead.org/users/vkoul/slave-dma 2013-02-26 09:24:48 -08:00
bcma Fairly unexciting MTD merge for 3.9: 2013-03-02 16:33:54 -08:00
byteorder UAPI: Remove empty non-UAPI Kbuild files 2012-10-17 12:31:15 +01:00
can can: rework skb reserved data handling 2013-01-28 18:17:25 -05:00
ceph libceph: add support for HASHPSPOOL pool flag 2013-02-26 15:03:06 -08:00
clk arm-soc: soc-specific updates 2013-02-21 15:27:22 -08:00
crush Merge branch 'testing' of github.com:ceph/ceph-client into v3.8-rc5-testing 2013-01-30 07:54:34 -06:00
decompress
dma dma: ipu: rename mach/ipu.h to include/linux/dma/ipu-dma.h 2012-10-15 10:03:12 +08:00
extcon extcon: gpio: Rename filename of extcon-gpio.c according to kernel naming style 2013-02-13 08:35:43 -08:00
fsl powerpc, dma: move bestcomm driver from arch/powerpc/sysdev to drivers/dma 2013-01-03 15:41:20 +01:00
hsi hsi: fix kernel-doc warnings 2013-03-01 13:39:00 -08:00
i2c Input: atmel_mxt_ts - Support for touchpad variant 2013-03-08 16:03:29 -08:00
iio iio: Fix build error seen if IIO_TRIGGER is defined but IIO_BUFFER is not 2013-03-02 16:31:21 +00:00
input Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2013-02-20 11:00:43 -08:00
irqchip ImgTec Meta architecture changes for v3.9-rc1 2013-03-03 12:06:09 -08:00
isdn UAPI: Remove empty non-UAPI Kbuild files 2012-10-17 12:31:15 +01:00
lockd Merge branch 'for-3.9' of git://linux-nfs.org/~bfields/linux 2013-02-28 18:02:55 -08:00
mfd mfd: wm831x: Don't forward declare enum wm831x_auxadc 2013-03-12 09:29:20 +01:00
mlx4 Main batch of InfiniBand/RDMA changes for 3.9: 2013-02-26 11:41:08 -08:00
mmc mmc: sh_mobile_sdhi: remove unused .pdata field 2013-02-24 14:37:22 -05:00
mtd mtd: nand: reintroduce NAND_NO_READRDY as NAND_NEED_READRDY 2013-03-14 12:48:54 +00:00
netfilter Merge branch 'master' of git://1984.lsi.us.es/nf 2013-02-26 17:24:26 -05:00
netfilter_arp UAPI: Remove empty non-UAPI Kbuild files 2012-10-17 12:31:15 +01:00
netfilter_bridge UAPI: Remove empty non-UAPI Kbuild files 2012-10-17 12:31:15 +01:00
netfilter_ipv4 UAPI: Remove empty non-UAPI Kbuild files 2012-10-17 12:31:15 +01:00
netfilter_ipv6 Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch 2012-11-30 12:01:30 -05:00
nfsd nfsd: Store ex_anon_uid and ex_anon_gid as kuids and kgids 2013-02-13 06:16:08 -08:00
pinctrl pinctrl: generic: rename input schmitt disable 2013-02-15 09:52:29 +01:00
platform_data Fairly unexciting MTD merge for 3.9: 2013-03-02 16:33:54 -08:00
power bq2415x_charger: Add support for offline and 100mA mode 2013-02-16 13:34:10 -08:00
raid UAPI: Remove empty Kbuild files 2013-01-02 17:36:10 -08:00
regulator regulator: core: update kernel documentation for regulator_desc 2013-03-01 06:07:22 +00:00
rtc
sched sched: move RR_TIMESLICE from sysctl.h to rt.h 2013-02-22 09:20:11 -08:00
spi Staging tree update for 3.9-rc1 2013-02-21 12:11:44 -08:00
ssb Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem 2013-02-08 13:16:17 -05:00
sunrpc NFS client bugfixes for Linux 3.9 2013-03-02 16:46:07 -08:00
tc_act UAPI: Remove empty non-UAPI Kbuild files 2012-10-17 12:31:15 +01:00
unaligned
usb USB fixes for 3.9-rc3 2013-03-22 12:45:55 -07:00
uwb
wimax UAPI: Remove empty non-UAPI Kbuild files 2012-10-17 12:31:15 +01:00
8250_pci.h
a.out.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
acct.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
acpi.h x86, ACPI, mm: Revert movablemem_map support 2013-03-02 09:34:39 -08:00
acpi_gpio.h gpiolib-acpi: Add ACPI5 event model support to gpio. 2013-01-29 11:47:06 +01:00
acpi_io.h
acpi_pmtmr.h
adb.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
adfs_fs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
aer.h aerdrv: Enhanced AER logging 2013-01-03 14:34:06 -08:00
agp_backend.h
agpgart.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ahci_platform.h
aio.h include/linux/aio.h: cpp->C conversions 2012-07-30 17:25:21 -07:00
alarmtimer.h alarmtimer: Remove unused helpers & defines 2012-09-24 12:38:02 -04:00
altera_jtaguart.h
altera_uart.h
amd-iommu.h
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h
apm-emulation.h
apm_bios.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
apple_bl.h
arcdevice.h
asn1.h ASN.1: Define indefinite length marker constant 2012-12-14 13:06:41 +10:30
asn1_ber_bytecode.h X.509: Add simple ASN.1 grammar compiler 2012-10-08 13:50:19 +10:30
asn1_decoder.h X.509: Add an ASN.1 decoder 2012-10-08 13:50:20 +10:30
async.h async: keep pending tasks on async_domain and remove async_pending 2013-01-23 09:32:30 -08:00
async_tx.h
ata.h [libata] replace sata_settings with devslp_timing 2013-01-14 13:29:15 -05:00
ata_platform.h include: remove __dev* attributes. 2013-01-03 15:57:16 -08:00
atalk.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ath9k_platform.h ath9k: allow to load EEPROM content via firmware API 2012-12-10 15:49:57 -05:00
atm.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
atm_suni.h
atm_tcp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
atmdev.h atm: add release_cb() callback to vcc 2012-12-02 00:05:12 +00:00
atmel-mci.h
atmel-pwm-bl.h
atmel-ssc.h ASoC: atmel-ssc: add phybase in device structure 2012-11-20 18:18:52 +09:00
atmel_pdc.h
atmel_pwm.h
atmel_serial.h
atmel_tc.h misc/atmel_tc: make atmel_tc.tcb_config member point to const data 2012-09-11 08:56:37 +02:00
atomic.h atomic: implement generic atomic_dec_if_positive() 2012-10-09 16:22:46 +09:00
attribute_container.h
audit.h linux/audit.h: move ptrace.h include to kernel header 2013-01-11 14:54:56 -08:00
auto_dev-ioctl.h
auto_fs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
auxvec.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
average.h
b1pcmcia.h
backing-dev.h bdi: allow block devices to say that they require stable page writes 2013-02-21 17:22:19 -08:00
backlight.h backlight: add of_find_backlight_by_node() 2012-12-17 17:15:16 -08:00
balloon_compaction.h mm: introduce a common interface for balloon pages mobility 2012-12-11 17:22:26 -08:00
basic_mmio_gpio.h
bcd.h usb/core: use bin2bcd() for bcdDevice in RH 2012-09-10 11:13:16 -07:00
bch.h
bcm47xx_wdt.h watchdog: bcm47xx_wdt.c: use platform device 2013-03-01 12:47:16 +01:00
bfin_mac.h
binfmts.h fs/exec.c: make bprm_mm_init() static 2013-02-26 02:46:13 -05:00
bio.h block: Implement support for WRITE SAME 2012-09-20 14:31:45 +02:00
bit_spinlock.h
bitmap.h
bitops.h
bitrev.h
blk-iopoll.h
blk_types.h block: Implement support for WRITE SAME 2012-09-20 14:31:45 +02:00
blkdev.h Merge branch 'blkcg-cfq-hierarchy' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup into for-3.9/core 2013-01-11 19:53:53 +01:00
blktrace_api.h block: add missing block_bio_complete() tracepoint 2013-01-14 15:00:36 +01:00
blockgroup_lock.h
bma150.h Input: bma150 - make some defines public and fix some comments 2013-02-15 18:52:45 -08:00
bootmem.h memory-hotplug: common APIs to support page tables hot-remove 2013-02-23 17:50:12 -08:00
bottom_half.h
brcmphy.h
bsearch.h
bsg-lib.h bsg: Remove unused function bsg_goose_queue() 2012-12-06 14:33:02 +01:00
bsg.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
btree-128.h
btree-type.h
btree.h
btrfs.h Btrfs: move fs/btrfs/ioctl.h to include/uapi/linux/btrfs.h 2013-02-20 09:37:28 -05:00
buffer_head.h buffer: make touch_buffer() an exported function 2013-01-14 15:00:36 +01:00
bug.h bug.h, compiler.h: introduce compiletime_assert & BUILD_BUG_ON_MSG 2013-02-21 17:22:16 -08:00
c2port.h
cache.h
capability.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cb710.h
cciss_ioctl.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cdev.h
cdrom.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cfag12864b.h
cgroup.h cgroup: remove synchronize_rcu() from cgroup_diput() 2013-01-24 12:05:18 -08:00
cgroup_subsys.h cgroup: Wrap subsystem selection macro 2012-09-14 09:57:37 -07:00
circ_buf.h
cleancache.h
clk-private.h clk: Add CLK_IS_BASIC flag to identify basic clocks 2012-07-11 15:36:43 -07:00
clk-provider.h clk: add common of_clk_init() function 2013-01-24 11:09:28 -08:00
clk.h clk: add non CONFIG_HAVE_CLK routines 2012-07-30 17:25:11 -07:00
clkdev.h
clksrc-dbx500-prcmu.h
clockchips.h clockevents: Add generic timer broadcast function 2013-01-31 22:15:36 +01:00
clocksource.h clocksource: always define CLOCKSOURCE_OF_DECLARE 2013-01-31 19:57:30 -08:00
cm4000_cs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cn_proc.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cnt32_to_63.h
coda.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
coda_psdev.h coda: Restrict coda messages to the initial user namespace 2013-02-13 06:00:53 -08:00
com20020.h
compaction.h mm: compaction: make __compact_pgdat() and compact_pgdat() return void 2013-02-23 17:50:10 -08:00
compat.h fix compat truncate/ftruncate 2013-02-25 09:24:55 -05:00
compiler-gcc.h compiler-gcc.h: Add gcc-recommended GCC_VERSION macro 2013-02-21 17:22:15 -08:00
compiler-gcc3.h compiler-gcc{3,4}.h: Use GCC_VERSION macro 2013-02-21 17:22:15 -08:00
compiler-gcc4.h compiler{,-gcc4}.h, bug.h: Remove duplicate macros 2013-02-21 17:22:15 -08:00
compiler-intel.h byteorder: allow arch to opt to use GCC intrinsics for byteswapping 2012-12-06 01:22:31 +00:00
compiler.h bug.h, compiler.h: introduce compiletime_assert & BUILD_BUG_ON_MSG 2013-02-21 17:22:16 -08:00
completion.h sched: add wait_for_completion_io[_timeout] 2013-02-15 16:45:06 +01:00
concap.h
configfs.h
connector.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
console.h Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux 2013-02-25 16:46:44 -08:00
console_struct.h
consolemap.h
context_tracking.h context_tracking: Export context state for generic vtime 2013-01-26 17:37:17 +01:00
cordic.h
coredump.h do_coredump(): get rid of pt_regs argument 2012-11-29 00:01:25 -05:00
cper.h
cpu.h workqueue: perform cpu down operations from low priority cpu_notifier() 2012-07-17 12:39:26 -07:00
cpu_cooling.h thermal: cpu cooling: allow module builds 2012-11-22 15:59:52 +08:00
cpu_pm.h
cpu_rmap.h lib: cpu_rmap: avoid flushing all workqueues 2013-01-11 14:54:54 -08:00
cpufreq.h cpufreq: Remove unnecessary use of policy->shared_type 2013-02-02 01:29:32 +01:00
cpuidle.h cpuidle: remove vestage definition of cpuidle_state_usage.driver_data 2013-02-11 18:49:51 -05:00
cpumask.h cpumask: cpulist_parse() comments correction 2012-07-27 09:29:42 +09:30
cpuset.h cpuset: use N_MEMORY instead N_HIGH_MEMORY 2012-12-12 17:38:32 -08:00
cramfs_fs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cramfs_fs_sb.h
crash_dump.h
crc-ccitt.h
crc-itu-t.h
crc-t10dif.h
crc7.h
crc8.h
crc16.h
crc32.h
crc32c.h
cred.h cred: Remove tgcred pointer from struct cred 2013-01-09 08:26:53 -08:00
crypto.h
cryptohash.h
cryptouser.h
cs5535.h
ctype.h
cuda.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cyclades.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
cycx_x25.h
davinci_emac.h
dca.h
dcache.h vfs: kill FS_REVAL_DOT by adding a d_weak_revalidate dentry op 2013-02-26 02:46:09 -05:00
dccp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
dcookies.h
debug_locks.h lockdep: check that no locks held at freeze time 2013-02-27 19:10:11 -08:00
debugfs.h debugfs: regset32: make struct debugfs_reg32 pointer const 2013-01-18 15:25:53 -08:00
debugobjects.h
delay.h
delayacct.h
devfreq.h PM / devfreq: remove compiler error when a governor is module 2012-11-26 19:17:44 +09:00
device-mapper.h dm: add target num_write_bios fn 2013-03-01 22:45:49 +00:00
device.h Driver core patches for 3.9-rc1 2013-02-21 12:05:51 -08:00
device_cgroup.h
devpts_fs.h TTY: devpts, do not set driver_data 2012-10-22 16:50:13 -07:00
digsig.h
dio.h
dirent.h
dlm.h various: Fix spelling of "asynchronous" in comments. 2012-11-19 14:32:13 +01:00
dlm_plock.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
dm-dirty-log.h
dm-io.h
dm-kcopyd.h dm kcopyd: introduce configurable throttling 2013-03-01 22:45:49 +00:00
dm-region-hash.h
dm9000.h
dma-attrs.h common: DMA-mapping: add DMA_ATTR_FORCE_CONTIGUOUS attribute 2012-11-29 03:30:34 -08:00
dma-buf.h dma-buf: implement vmap refcounting in the interface logic 2013-02-27 15:13:36 +05:30
dma-contiguous.h drivers: cma: represent physical addresses as phys_addr_t 2012-12-11 09:28:09 +01:00
dma-debug.h dma-debug: New interfaces to debug dma mapping errors 2012-10-24 17:06:43 +02:00
dma-direction.h
dma-mapping.h common: dma-mapping: introduce dma_get_sgtable() function 2012-07-30 12:25:46 +02:00
dma_remapping.h
dmaengine.h dmaengine: add dma_request_slave_channel_compat() 2013-02-27 22:37:34 +05:30
dmapool.h
dmar.h
dmi.h
dnotify.h
dns_resolver.h
dqblk_qtree.h
dqblk_v1.h
dqblk_v2.h
drbd.h drbd: Broadcast sync progress no more often than once per second 2012-11-09 14:11:43 +01:00
drbd_genl.h drbd: pass some more information to userspace. 2012-11-09 14:05:45 +01:00
drbd_genl_api.h
drbd_limits.h drbd: New disk option al-updates 2012-11-08 16:58:31 +01:00
ds1286.h
ds2782_battery.h
ds17287rtc.h
dtlk.h
dw_apb_timer.h ARM: delete struct sys_timer 2012-12-24 09:36:38 -07:00
dw_dmac.h dmaengine: dw_dmac: move to generic DMA binding 2013-02-28 09:53:21 +05:30
dynamic_debug.h dynamic_debug: dynamic hex dump 2013-01-17 12:19:09 -08:00
dynamic_queue_limits.h
earlycpio.h lib: Add early cpio decoder 2012-09-30 18:02:20 -07:00
ecryptfs.h eCryptfs: allow userspace messaging to be disabled 2013-03-03 23:59:59 -08:00
edac.h EDAC: Merge mci.mem_is_per_rank with mci.csbased 2013-03-16 06:32:30 +01:00
edd.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
edma.h dmaengine: add TI EDMA DMA engine driver 2012-09-01 06:14:02 +05:30
eeprom_93cx6.h
eeprom_93xx46.h
efi-bgrt.h efi: Fix the ACPI BGRT driver for images located in EFI boot services memory 2012-09-29 12:21:03 -07:00
efi.h A few fixes to reduce places where pstore might hang 2013-02-21 09:38:18 -08:00
efs_vh.h
eisa.h
elevator.h Merge branch 'for-3.9/core' of git://git.kernel.dk/linux-block 2013-02-28 12:52:24 -08:00
elf-fdpic.h FRV: Fix linux/elf-fdpic.h 2012-10-16 18:49:15 -07:00
elf.h default SET_PERSONALITY() in linux/elf.h 2013-02-26 02:46:08 -05:00
elfcore-compat.h
elfcore.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
elfnote.h
enclosure.h
err.h
errno.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
errqueue.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
etherdevice.h net: split eth_mac_addr for better error handling 2013-01-21 14:07:44 -05:00
ethtool.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
eventfd.h include/linux/eventfd.h: fix incorrect filename is a comment 2013-02-27 19:10:23 -08:00
eventpoll.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
evm.h
export.h
exportfs.h Merge branch 'for-3.8' of git://linux-nfs.org/~bfields/linux 2012-12-20 14:04:11 -08:00
ext2_fs.h
extcon.h extcon: kernel_doc style fix 2012-11-22 13:43:27 +09:00
f2fs_fs.h f2fs: introduce accessor to retrieve number of dentry slots 2012-12-11 13:43:45 +09:00
f75375s.h
falloc.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
fanotify.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
fault-inject.h
fb.h fbmon: add of_videomode helpers 2013-01-24 09:04:04 +01:00
fcdevice.h
fcntl.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
fd.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
fddidevice.h
fdtable.h kill daemonize() 2012-11-28 21:49:02 -05:00
fec.h
file.h switch simple cases of fget_light to fdget 2012-09-26 22:20:08 -04:00
filter.h sk-filter: Add ability to get socket filter program (v2) 2012-11-01 11:17:15 -04:00
fips.h
firewire.h firewire: addendum to address handler RCU conversion 2012-09-28 11:47:42 +02:00
firmware-map.h memory-hotplug: remove /sys/firmware/memmap/X sysfs 2013-02-23 17:50:12 -08:00
firmware.h firmware loader: introduce cache_firmware and uncache_firmware 2012-08-16 13:24:21 -07:00
fixp-arith.h
flat.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
flex_array.h
flex_proportions.h lib: Proportions with flexible period 2012-06-09 08:37:55 +09:00
font.h
freezer.h lockdep: check that no locks held at freeze time 2013-02-27 19:10:11 -08:00
frontswap.h frontswap: support exclusive gets if tmem backend is capable 2012-09-21 10:38:12 -04:00
fs.h fs: Limit sys_mount to only request filesystem modules. 2013-03-03 19:36:31 -08:00
fs_enet_pd.h
fs_stack.h
fs_struct.h constify path_get/path_put and fs_struct.c stuff 2013-03-01 23:51:07 -05:00
fs_uart_pd.h
fscache-cache.h FS-Cache: Mark cancellation of in-progress operation 2012-12-20 22:34:00 +00:00
fscache.h FS-Cache: Provide proper invalidation 2012-12-20 22:04:07 +00:00
fsl-diu-fb.h drivers/video: fsl-diu-fb: add support for set_gamma ioctls 2012-11-26 13:41:19 -06:00
fsl_devices.h powerpc/usb: remove checking PHY_CLK_VALID for UTMI PHY 2012-09-24 13:42:45 -07:00
fsl_hypervisor.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
fsnotify.h new helper: file_inode(file) 2013-02-22 23:31:31 -05:00
fsnotify_backend.h fsnotify: make fasync generic for both inotify and fanotify 2012-12-11 13:44:36 -05:00
ftrace.h ftrace: Move ARCH_SUPPORTS_FTRACE_SAVE_REGS in Kconfig 2013-01-21 13:22:35 -05:00
ftrace_event.h tracing: Make a snapshot feature available from userspace 2013-01-30 11:02:06 -05:00
ftrace_irq.h
futex.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
gameport.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
gcd.h
genalloc.h genalloc: make it possible to use a custom allocation algorithm 2012-10-06 03:04:57 +09:00
generic_acl.h
genetlink.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
genhd.h block: fix part_pack_uuid() build error 2013-02-26 03:10:52 +11:00
genl_magic_func.h drbd: Stop using NLA_PUT*(). 2012-11-08 16:58:30 +01:00
genl_magic_struct.h drbd: Stop using NLA_PUT*(). 2012-11-08 16:58:30 +01:00
getcpu.h
gfp.h mm: allocate kernel pages to the right memcg 2012-12-18 15:02:12 -08:00
gpio-fan.h
gpio-pxa.h
gpio.h gpio: devm_gpio_* support should not depend on GPIOLIB 2013-01-22 10:23:35 +01:00
gpio_keys.h
gpio_mouse.h
gsmmux.h
hardirq.h irq: Remove IRQ_EXIT_OFFSET workaround 2013-02-22 00:05:07 +01:00
hash.h kprobes: Make hash_64() as always inlined 2013-03-18 10:21:23 +01:00
hashtable.h hlist: drop the node parameter from iterators 2013-02-27 19:10:24 -08:00
hdlc.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
hdlcdrv.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
hdmi.h video: Add generic HDMI infoframe helpers 2013-02-22 08:20:05 +01:00
hid-debug.h
hid-roccat.h
hid-sensor-hub.h hid: iio: rename struct hid_sensor_iio_common to hid_sensor_common 2013-01-06 11:48:11 +00:00
hid-sensor-ids.h iio: Add Usage IDs for HID time sensors. 2013-01-06 11:41:12 +00:00
hid.h Merge branches 'for-3.9/logitech', 'for-3.9/multitouch', 'for-3.9/ntrig', 'for-3.9/thingm' and 'for-3.9/upstream' into for-linus 2013-02-21 10:45:01 +01:00
hiddev.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
hidraw.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
highmem.h mm: remove unused memclear_highpage_flush() 2013-02-23 17:50:16 -08:00
highuid.h
hil.h
hil_mlc.h
hippidevice.h
hp_sdc.h
hpet.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
hrtimer.h timekeeping: Provide hrtimer update function 2012-07-11 23:34:39 +02:00
htcpld.h
htirq.h
huge_mm.h mm/rmap: rename anon_vma_unlock() => anon_vma_unlock_write() 2013-02-23 17:50:17 -08:00
hugetlb.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2013-02-26 20:16:07 -08:00
hugetlb_cgroup.h mm/hugetlb: create hugetlb cgroup file in hugetlb_init 2012-12-18 15:02:15 -08:00
hugetlb_inline.h
hw_breakpoint.h perf: Make perf build for x86 with UAPI disintegration applied 2012-11-19 22:21:03 +00:00
hw_random.h
hwmon-sysfs.h
hwmon-vid.h
hwmon.h hwmon: Retire SENSORS_LIMIT 2013-01-25 21:03:54 -08:00
hwspinlock.h
hyperv.h Drivers: hv: vmbus: Consolidate all offer GUID definitions in hyperv.h 2013-01-25 11:17:31 -08:00
i2c-algo-bit.h
i2c-algo-pca.h i2c: algo: pca: Fix chip reset function for PCA9665 2012-10-06 13:14:36 +02:00
i2c-algo-pcf.h
i2c-dev.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
i2c-gpio.h
i2c-mux-gpio.h i2c-mux-gpio: Add support for dynamically allocated GPIO pins 2012-10-05 22:23:54 +02:00
i2c-mux-pinctrl.h i2c: Add generic I2C multiplexer using pinctrl API 2012-06-04 16:49:43 +02:00
i2c-mux.h i2c-mux: Add support for device auto-detection 2012-10-05 22:23:51 +02:00
i2c-ocores.h i2c: i2c-ocores: support for 16bit and 32bit IO 2012-07-14 13:30:25 +02:00
i2c-omap.h i2c: omap: Remove the OMAP_I2C_FLAG_RESET_REGS_POSTIDLE flag 2012-11-28 11:36:32 +01:00
i2c-pca-platform.h
i2c-pnx.h i2c: pnx: Fix read transactions of >= 2 bytes 2012-09-12 17:52:44 +02:00
i2c-pxa.h
i2c-smbus.h
i2c-xiic.h
i2c.h i2c: Make return type of i2c_del_adapter() void 2013-04-02 07:06:17 +02:00
i2o.h
i7300_idle.h
i8042.h
i8253.h
i82593.h
icmp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
icmpv6.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ide.h
idr.h idr: deprecate idr_pre_get() and idr_get_new[_above]() 2013-03-13 15:21:47 -07:00
ieee80211.h mac80211: advertise operating mode notification capability 2013-02-15 09:41:42 +01:00
if_arp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_bridge.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_eql.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_ether.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_fddi.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_frad.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_link.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_ltalk.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_macvlan.h macvlan: add multicast filter 2013-02-06 15:59:47 -05:00
if_phonet.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_pppol2tp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_pppox.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_team.h hlist: drop the node parameter from iterators 2013-02-27 19:10:24 -08:00
if_tun.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
if_tunnel.h net: unify for_each_ip_tunnel_rcu() 2012-11-14 18:49:50 -05:00
if_vlan.h vlan: adjust vlan_set_encap_proto() for its callers 2013-02-23 21:00:06 -05:00
igmp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ihex.h
ima.h ima: support new kernel module syscall 2012-12-14 13:05:26 +10:30
in.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
in6.h ipv6: by default join ff01::1 and in case of forwarding ff01::2 and ff05:2 2013-02-11 14:16:26 -05:00
inet.h
inet_diag.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
inet_lro.h
inetdevice.h ipv4: introduce address lifetime 2013-01-29 13:59:57 -05:00
init.h Merge branch 'master' into for-3.9-async 2013-01-23 09:31:01 -08:00
init_ohci1394_dma.h
init_task.h sched/rt: Add <linux/sched/rt.h> header to <linux/init_task.h> 2013-02-19 08:06:01 +01:00
initrd.h
inotify.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
input-polldev.h
input.h Input: document new members of struct input_dev 2012-11-10 00:40:24 -08:00
integrity.h ima: allocating iint improvements 2012-09-07 14:57:45 -04:00
intel-iommu.h iommu/dmar: Reserve mmio space used by the IOMMU, if the BIOS forgets to 2012-06-08 12:15:43 +02:00
intel_mid_dma.h
intel_pmic_gpio.h
interrupt.h lib: cpu_rmap: avoid flushing all workqueues 2013-01-11 14:54:54 -08:00
interval_tree.h rbtree: add prio tree and interval tree tests 2012-10-09 16:22:39 +09:00
interval_tree_generic.h mm: interval tree updates 2012-10-09 16:22:40 +09:00
io-mapping.h
io.h powerpc: Disable /dev/port interface on systems without an ISA bridge 2012-07-11 18:22:32 +10:00
ioc3.h
ioc4.h
iocontext.h
iommu-helper.h
iommu.h iommu: Add DOMAIN_ATTR_WINDOWS domain attribute 2013-02-06 10:47:28 +01:00
ioport.h resources: Document IORESOURCE_IO 2012-09-11 10:15:02 +02:00
ioprio.h
iova.h
ip.h net: Add support for hardware-offloaded encapsulation 2012-12-09 00:20:28 -05:00
ipack.h ipack: remove use of __devinitconst 2012-11-21 15:09:26 -08:00
ipc.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ipc_namespace.h ipc: add sysctl to specify desired next object id 2013-01-04 16:11:45 -08:00
ipmi.h ipmi: remove superfluous kernel/userspace explanation 2013-02-27 19:10:21 -08:00
ipmi_smi.h various: Fix spelling of "asynchronous" in comments. 2012-11-19 14:32:13 +01:00
ipv6.h ipv6 flowlabel: Convert np->ipv6_fl_list to RCU. 2013-01-30 22:41:13 -05:00
ipv6_route.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
irq.h x86, msi: Use IRQ remapping specific setup_msi_irqs routine 2013-01-28 12:17:25 +01:00
irq_cpustat.h
irq_work.h irq_work.h: fix warning when CONFIG_IRQ_WORK=n 2013-03-22 16:41:19 -07:00
irqchip.h irqchip: add basic infrastructure 2013-01-10 11:44:38 -06:00
irqdesc.h genirq: Provide means to retrigger parent 2012-11-01 12:11:31 +01:00
irqdomain.h irqdomain: Eliminate dedicated radix lookup functions 2012-07-11 16:16:00 +01:00
irqflags.h
irqnr.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
irqreturn.h
isa.h
isapnp.h
iscsi_boot_sysfs.h
iscsi_ibft.h
isdn.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
isdn_divertif.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
isdn_ppp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
isdnif.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
isicom.h
jbd.h
jbd2.h jbd2: use module parameters instead of debugfs for jbd_debug 2013-02-09 16:29:20 -05:00
jbd_common.h
jhash.h
jiffies.h time: Kill xtime_lock, replacing it with jiffies_lock 2012-11-13 14:08:23 -05:00
journal-head.h
joystick.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
jump_label.h jump label: Remove static_branch() 2012-07-06 10:53:49 +02:00
jz4740-adc.h
kallsyms.h
kbd_diacr.h
kbd_kern.h vt: fix the keyboard/led locking 2012-07-17 09:13:37 -07:00
kbuild.h
kcmp.h
kconfig.h
kd.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
kdb.h kdb: Turn KGDB_KDB=n stubs into static inlines 2012-09-26 13:42:26 -07:00
kdebug.h
kdev_t.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
kern_levels.h printk: remove the now unnecessary "C" annotation for KERN_CONT 2012-07-30 17:25:14 -07:00
kernel-page-flags.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
kernel.h printk: Provide a wake_up_klogd() off-case 2013-03-22 16:41:20 -07:00
kernel_stat.h cputime: Generic on-demand virtual cputime accounting 2013-01-27 19:23:27 +01:00
kernelcapi.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
kexec.h x86: Add Crash kernel low reservation 2013-01-29 19:32:58 -08:00
key-type.h KEYS: Add payload preparsing opportunity prior to key instantiate or update 2012-10-08 13:49:48 +10:30
key.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security 2012-12-16 15:40:50 -08:00
keyboard.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
kfifo.h
kgdb.h kgdb: remove #include <linux/serial_8250.h> from kgdb.h 2013-02-04 15:35:26 -08:00
khugepaged.h
klist.h
kmalloc_sizes.h
kmemcheck.h
kmemleak.h
kmod.h
kmsg_dump.h printk: Implement some unlocked kmsg_dump functions 2012-07-21 10:34:00 -07:00
kobj_map.h
kobject.h kobject: remove CONFIG_HOTPLUG ifdefs 2012-11-28 10:33:03 -08:00
kobject_ns.h
kprobes.h kprobes/x86: Move ftrace-based kprobe code into kprobes-ftrace.c 2013-01-21 13:22:36 -05:00
kref.h kref: Implement kref_get_unless_zero v3 2012-11-20 16:15:02 +10:00
ks0108.h
ks8842.h
ks8851_mll.h net/ethernet: ks8851_mll mac address configuration support added 2012-06-04 11:43:00 -04:00
ksm.h ksm: remove old stable nodes more thoroughly 2013-02-23 17:50:19 -08:00
kthread.h kthread: Implement park/unpark facility 2012-08-13 17:01:06 +02:00
ktime.h pktgen: clean up ktime_t helpers 2012-11-03 14:50:15 -04:00
kvm_host.h Revert "KVM: allow host header to be included even for !CONFIG_KVM" 2013-03-22 08:08:06 -03:00
kvm_para.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
kvm_types.h
l2tp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
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 led: Add dependency on CONFIG_LEDS_TRIGGERS to led_trigger_rename_static() 2012-11-26 14:28:51 -08:00
leds_pwm.h leds: leds-pwm: Convert to use devm_get_pwm 2013-02-01 17:47:04 -08:00
lglock.h lglock: add DEFINE_STATIC_LGLOCK() 2012-10-10 01:15:44 -04:00
lguest.h
lguest_launcher.h
libata.h Revert "libata: export host controller number thru /sys" 2013-01-25 15:30:23 -05:00
libfdt.h Partially revert a1ce39288e (UAPI: (Scripted) Convert #include "..." to #include <path/...> in kernel system headers) 2012-10-06 02:48:09 +09:00
libfdt_env.h of/lib: Allow scripts/dtc/libfdt to be used from kernel code 2012-07-23 13:54:52 +01:00
libps2.h Input: increase struct ps2dev cmdbuf[] to 8 bytes 2013-01-06 01:11:25 -08:00
license.h
linkage.h
linux_logo.h
lis3lv02d.h
list.h list: Fix double fetch of pointer in hlist_entry_safe() 2013-03-14 13:18:30 -07:00
list_bl.h
list_nulls.h
list_sort.h
llc.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
llist.h xen-blkfront: drop the use of llist_for_each_entry_safe 2013-02-19 15:17:08 -05:00
lockdep.h Merge branch 'core-locking-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip 2013-02-22 19:25:09 -08:00
log2.h
loop.h loop: Limit the number of requests in the bio list 2012-11-30 11:48:05 +01:00
lp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
lru_cache.h Merge branch 'for-3.8/drivers' of git://git.kernel.dk/linux-block 2012-12-17 13:39:11 -08:00
lsm_audit.h
lzo.h lib/lzo: Update LZO compression to current upstream version 2013-02-20 19:36:01 +01:00
m48t86.h
mISDNdsp.h
mISDNhw.h mISDN: Fix wrong usage of flush_work_sync while holding locks 2012-09-13 14:58:54 -04:00
mISDNif.h
mailbox.h ARM / highbank: add support for pl320 IPC 2013-02-02 00:01:15 +01:00
maple.h
marvell_phy.h
math64.h
max17040_battery.h
mbcache.h
mbus.h
mc6821.h
mc146818rtc.h
mdio-bitbang.h
mdio-gpio.h
mdio-mux.h
mdio.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
memblock.h x86, ACPI, mm: Revert movablemem_map support 2013-03-02 09:34:39 -08:00
memcontrol.h mm: refactor inactive_file_is_low() to use get_lru_size() 2013-02-23 17:50:20 -08:00
memory.h hotplug: update nodemasks management 2012-12-12 17:38:33 -08:00
memory_hotplug.h memory-hotplug: export the function try_offline_node() 2013-02-23 17:50:13 -08:00
mempolicy.h mm: mempolicy: Convert shared_policy mutex to spinlock 2013-01-02 17:32:13 -08:00
mempool.h mempool: add @gfp_mask to mempool_create_node() 2012-06-25 11:53:47 +02:00
memstick.h
mg_disk.h
micrel_phy.h drivers/net/phy/micrel_phy: Add support for new PHYs 2013-01-28 18:42:10 -05:00
migrate.h mm: remove offlining arg to migrate_pages 2013-02-23 17:50:19 -08:00
migrate_mode.h
mii.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
miscdevice.h [SCSI] miscdevice: Adding support for MPT3SAS_MINOR(222) 2012-12-01 10:07:54 +00:00
mm.h ImgTec Meta architecture changes for v3.9-rc1 2013-03-03 12:06:09 -08:00
mm_inline.h
mm_types.h mm: fold page->_last_nid into page->flags where possible 2013-02-23 17:50:17 -08:00
mman.h mm: introduce VM_POPULATE flag to better deal with racy userspace programs 2013-02-23 17:50:11 -08:00
mmdebug.h
mmiotrace.h
mmu_context.h
mmu_notifier.h mm: fix wrong comments about anon_vma lock 2013-02-05 20:38:48 +11:00
mmzone.h mm: zone_end_pfn is too small 2013-03-22 16:41:20 -07:00
mnt_namespace.h vfs: Add a user namespace reference from struct mnt_namespace 2012-11-19 05:59:19 -08:00
mod_devicetable.h mod/file2alias: make modalias generation safe for cross compiling 2013-01-24 22:48:04 +01:00
module.h module: constify within_module_* 2013-01-21 17:18:20 +10:30
moduleloader.h Make most arch asm/module.h files use asm-generic/module.h 2012-09-28 14:31:03 +09:30
moduleparam.h moduleparam: use __UNIQUE_ID() 2012-12-14 13:06:40 +10:30
mount.h
mpage.h
mpi.h MPILIB: Provide a function to read raw data into an MPI 2012-10-08 13:50:21 +10:30
mroute.h mcast: define and use MRT[6]_MAX in ip[6]_mroute_opt() 2013-01-21 13:55:14 -05:00
mroute6.h mcast: define and use MRT[6]_MAX in ip[6]_mroute_opt() 2013-01-21 13:55:14 -05:00
msdos_fs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
msg.h selftests: IPC message queue copy feature test 2013-01-04 16:11:45 -08:00
msi.h
msm_mdp.h
mutex-debug.h
mutex.h
mv643xx.h
mv643xx_eth.h ARM: Orion: Set eth packet size csum offload limit 2012-08-15 13:58:09 +00:00
mv643xx_i2c.h
mxm-wmi.h
mxsfb.h video: mxsfb: move mxsfb.h into include/linux 2012-07-03 13:22:37 +08:00
n_r3964.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
namei.h namei.h: include errno.h 2012-12-25 18:45:06 -05:00
nbd.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
net.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
netdev_features.h v4 GRE: Add TCP segmentation offload for GRE 2013-02-15 15:17:11 -05:00
netdevice.h net: fix a build failure when !CONFIG_PROC_FS 2013-02-19 13:18:13 -05:00
netfilter.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
netfilter_bridge.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
netfilter_ipv4.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
netfilter_ipv6.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
netlink.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
netpoll.h netpoll: Fix __netpoll_rcu_free so that it can hold the rtnl lock 2013-02-11 19:19:33 -05:00
nfs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
nfs3.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
nfs4.h nfsd: Handle kuids and kgids in the nfs4acl to posix_acl conversion 2013-02-13 06:16:06 -08:00
nfs_fs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
nfs_fs_i.h
nfs_fs_sb.h NFSv4.1: Move slot table and session struct definitions to nfs4session.h 2012-12-06 00:30:46 +01:00
nfs_idmap.h nfs: Convert idmap to use kuids and kgids 2013-02-13 06:15:29 -08:00
nfs_iostat.h
nfs_page.h NFS41: add pg_layout_private to nfs_pageio_descriptor 2012-08-02 17:41:18 -04:00
nfs_xdr.h NFS client bugfixes for Linux 3.9 2013-03-02 16:46:07 -08:00
nfsacl.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
nilfs2_fs.h nilfs2: add omitted comments for structures in nilfs2_fs.h 2012-07-30 17:25:19 -07:00
nl802154.h mac802154: add wpan device-class support 2012-06-26 21:06:11 -07:00
nls.h
nmi.h
node.h mm: cleanup register_node() 2012-12-11 17:22:27 -08:00
nodemask.h numa: add CONFIG_MOVABLE_NODE for movable-dedicated node 2012-12-12 17:38:34 -08:00
notifier.h
nsc_gpio.h
nsproxy.h userns: Implement unshare of the user namespace 2012-11-20 04:18:14 -08:00
ntb.h PCI-Express Non-Transparent Bridge Support 2013-01-17 19:11:14 -08:00
nubus.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
numa.h
nvme.h NVMe: Define SMART log 2012-11-13 09:13:50 -05:00
nvram.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
nwpserial.h
nx842.h powerpc/crypto: add 842 hardware compression driver 2012-08-01 17:47:56 +08:00
of.h of: Create function for counting number of phandles in a property 2013-02-13 10:09:31 +00:00
of_address.h of/address: sparc: Declare of_iomap as an extern function for sparc again 2012-11-23 22:01:15 +00:00
of_device.h
of_dma.h dmaengine: fix !of_dma compilation warning 2013-01-07 22:05:02 -08:00
of_fdt.h
of_gpio.h gpio: Make of_count_named_gpios() use new of_count_phandle_with_args() 2013-02-13 10:11:53 +00:00
of_i2c.h of/i2c: add dummy inline functions for when CONFIG_OF_I2C(_MODULE) isn't defined 2012-12-11 17:30:16 +00:00
of_iommu.h iommu: Add DMA window parser, of_get_dma_window() 2012-06-25 13:50:28 +02:00
of_irq.h of/irq: sparse fixes 2012-10-17 15:53:02 -05:00
of_mdio.h of/mdio: Staticise !CONFIG_OF stubs 2012-10-10 22:41:05 -04:00
of_mtd.h of: mtd: nuke useless const qualifier 2012-07-10 10:32:06 -05:00
of_net.h
of_pci.h
of_pdt.h
of_platform.h of: define struct device in of_platform.h if !OF_DEVICE and !OF_ADDRESS 2012-12-19 16:15:17 +00:00
oid_registry.h X.509: Add utility functions to render OIDs as strings 2012-10-08 13:50:18 +10:30
olpc-ec.h Platform: OLPC: turn EC driver into a platform_driver 2012-07-31 23:27:30 -04:00
omap-dma.h ARM: OMAP: Move plat-omap/dma-omap.h to include/linux/omap-dma.h 2012-11-30 08:41:50 -08:00
omap-iommu.h ARM: OMAP2+: Move plat/iovmm.h to include/linux/omap-iommu.h 2012-11-20 10:04:29 -08:00
omapfb.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
oom.h mm, oom: fix race when specifying a thread as the oom origin 2012-12-11 17:22:27 -08:00
openvswitch.h openvswitch: add skb mark matching and set action 2012-11-26 11:33:18 -08:00
opp.h PM / OPP: fix condition for empty of_init_opp_table() 2013-02-23 00:30:08 +01:00
oprofile.h
oxu210hp.h
padata.h
page-debug-flags.h
page-flags-layout.h mm: fold page->_last_nid into page->flags where possible 2013-02-23 17:50:17 -08:00
page-flags.h s390/mm: implement software dirty bits 2013-02-14 15:55:23 +01:00
page-isolation.h mm: remove MIGRATE_ISOLATE check in hotpath 2013-02-23 17:50:15 -08:00
page_cgroup.h memcg: rename config variables 2012-07-31 18:42:43 -07:00
pageblock-flags.h mm: compaction: fix bit ranges in {get,clear,set}_pageblock_skip() 2012-10-11 08:50:14 +09:00
pagemap.h mm: only enforce stable page writes if the backing device requires it 2013-02-21 17:22:19 -08:00
pagevec.h
parport.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
parport_pc.h
parser.h
pata_arasan_cf_data.h Viresh has moved 2012-06-20 14:39:36 -07:00
patchkey.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
path.h constify path_get/path_put and fs_struct.c stuff 2013-03-01 23:51:07 -05:00
pch_dma.h
pci-acpi.h PCI/ACPI: Use DEVICE_ACPI_HANDLE rather than searching acpi_pci_roots 2012-09-24 14:51:23 -06:00
pci-aspm.h
pci-ats.h
pci-dma.h
pci.h PCI changes for the v3.9 merge window: 2013-02-25 21:18:18 -08:00
pci_hotplug.h
pci_ids.h Merge branch 'linux_next' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac 2013-02-28 20:42:33 -08:00
pcieport_if.h PCI: Make pci_error_handlers const 2012-09-07 16:24:59 -06:00
pda_power.h
percpu-defs.h
percpu-rwsem.h percpu_rw_semaphore: add lockdep annotations 2012-12-17 17:15:18 -08:00
percpu.h sections: fix section conflicts in mm/percpu.c 2012-10-06 03:04:44 +09:00
percpu_counter.h percpu_counter.h: comment code for better readability 2013-02-05 11:54:06 +01:00
perf_event.h perf,x86: fix link failure for non-Intel configs 2013-03-17 15:59:15 -07:00
perf_regs.h perf: Add ability to attach user level registers dump to sample 2012-08-10 11:31:26 -03:00
personality.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
pfn.h
phonedev.h
phonet.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
phy.h net: phy: remove flags argument from phy_{attach, connect, connect_direct} 2013-01-14 15:11:50 -05:00
phy_fixed.h
pid.h hlist: drop the node parameter from iterators 2013-02-27 19:10:24 -08:00
pid_namespace.h pidns: Stop pid allocation when init dies 2012-12-25 16:10:05 -08:00
pim.h
pipe_fs_i.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs 2012-08-01 10:26:23 -07:00
pktcdvd.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
platform_device.h driver core: add helper macro for platform_driver_probe() boilerplate 2013-01-17 17:39:33 -08:00
plist.h
pm.h pm / runtime: introduce pm_runtime_set_memalloc_noio() 2013-02-23 17:50:16 -08:00
pm2301_charger.h pm2301: LPN mode control support 2013-01-23 14:39:19 +00:00
pm_clock.h
pm_domain.h PM / Domains: Operations related to cpuidle using domain names 2012-09-04 01:36:53 +02:00
pm_qos.h PM / QoS: Make it possible to expose PM QoS device flags to user space 2012-10-24 02:08:18 +02:00
pm_runtime.h pm / runtime: introduce pm_runtime_set_memalloc_noio() 2013-02-23 17:50:16 -08:00
pm_wakeup.h
pmu.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
pnfs_osd_xdr.h pnfs_osd_xdr: Remove unused #include from pnfs_osd_xdr.h 2012-10-03 13:52:52 -07:00
pnp.h
poison.h
poll.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
posix-clock.h
posix-timers.h
posix_acl.h userns: Convert vfs posix_acl support to use kuids and kgids 2012-09-18 01:01:35 -07:00
posix_acl_xattr.h userns: Pass a userns parameter into posix_acl_to_xattr and posix_acl_from_xattr 2012-09-18 01:01:35 -07:00
power_supply.h Driver core patches for 3.9-rc1 2013-02-21 12:05:51 -08:00
ppp-comp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ppp_channel.h
ppp_defs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
pps-gpio.h
pps_kernel.h pps: Add pps_lookup_dev() function 2013-02-13 09:40:35 -08:00
preempt.h
prefetch.h
printk.h printk: Provide a wake_up_klogd() off-case 2013-03-22 16:41:20 -07:00
prio_heap.h
proc_fs.h tty/serial patches for 3.9-rc1 2013-02-21 13:41:04 -08:00
profile.h profiling: Remove unused timer hook 2013-01-24 15:37:26 +01:00
projid.h userns: Add kprojid_t and associated infrastructure in projid.h 2012-09-18 01:01:37 -07:00
proportions.h
pstore.h pstore: Avoid deadlock in panic and emergency-restart path 2013-01-11 10:20:50 -08:00
pstore_ram.h pstore: remove __dev* attributes. 2013-01-03 15:57:14 -08:00
pti.h
ptp_classify.h
ptp_clock_kernel.h ptp: update adjfreq callback description 2012-11-03 15:27:07 -04:00
ptrace.h ia64: kill thread_matches(), unexport ptrace_check_attach() 2013-01-20 12:26:05 -08:00
pvclock_gtod.h time: export time information for KVM pvclock 2012-11-27 23:29:12 -02:00
pwm.h pwm: Changes for v3.9-rc1 2013-02-26 09:34:29 -08:00
pwm_backlight.h pwm-backlight: Add rudimentary device tree support 2012-07-23 13:23:52 +02:00
pxa2xx_ssp.h spi/pxa2xx: add support for Intel Low Power Subsystem SPI 2013-02-08 13:14:40 +00:00
pxa168_eth.h
qnx6_fs.h
quicklist.h
quota.h quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format 2013-01-24 23:24:56 -05:00
quotaops.h userns: Modify dqget to take struct kqid 2012-09-18 01:01:40 -07:00
radix-tree.h radix-tree: fix contiguous iterator 2012-06-05 10:46:40 -07:00
raid_class.h
ramfs.h
random.h soreuseport: infrastructure 2013-01-23 13:44:00 -05:00
range.h
ratelimit.h tty: Fix bogus "callbacks suppressed" messages 2012-10-05 09:26:01 -07:00
rational.h
rbtree.h rbtree: move augmented rbtree functionality to rbtree_augmented.h 2012-10-09 16:22:40 +09:00
rbtree_augmented.h lib/rbtree.c: avoid the use of non-static __always_inline 2013-01-11 14:54:56 -08:00
rculist.h hlist: drop the node parameter from iterators 2013-02-27 19:10:24 -08:00
rculist_bl.h
rculist_nulls.h
rcupdate.h Merge branches 'doctorture.2013.01.29a', 'fixes.2013.01.26a', 'tagcb.2013.01.24a' and 'tiny.2013.01.29b' into HEAD 2013-01-28 22:25:21 -08:00
rcutiny.h Revert "rcu: Move PREEMPT_RCU preemption to switch_to() invocation" 2012-07-02 11:39:19 -07:00
rcutree.h rcu: Precompute RCU_FAST_NO_HZ timer offsets 2012-06-06 20:43:28 -07:00
reboot.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
reciprocal_div.h
regmap.h Merge remote-tracking branch 'regmap/topic/no-bus' into regmap-next 2013-02-14 17:11:09 +00:00
regset.h
relay.h
remoteproc.h remtoteproc: maintain max notifyid 2012-09-18 21:55:52 +03:00
res_counter.h include/linux/res_counter.h needs errno.h 2013-03-13 15:21:44 -07:00
resource.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
resume-trace.h
rfkill-gpio.h
rfkill-regulator.h
rfkill.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ring_buffer.h ring-buffer: Add stats field for amount read from trace ring buffer 2013-01-30 11:01:53 -05:00
rio.h rapidio: fix kernel-doc warnings 2012-11-16 14:33:04 -08:00
rio_drv.h rapidio: add inbound memory mapping interface 2012-10-06 03:05:21 +09:00
rio_ids.h
rio_regs.h
rmap.h mm/rmap: rename anon_vma_unlock() => anon_vma_unlock_write() 2013-02-23 17:50:17 -08:00
rndis.h
root_dev.h
rotary_encoder.h
rpmsg.h rpmsg: make sure inflight messages don't invoke just-removed callbacks 2012-07-04 11:51:59 +03:00
rslib.h
rtc-ds2404.h rtc: add Dallas DS2404 driver 2012-10-06 03:05:01 +09:00
rtc-v3020.h
rtc.h Driver core patches for 3.9-rc1 2013-02-21 12:05:51 -08:00
rtmutex.h
rtnetlink.h ixgbe: add setlink, getlink support to ixgbe and ixgbevf 2012-10-31 13:18:29 -04:00
rwlock.h
rwlock_api_smp.h
rwlock_types.h
rwsem-spinlock.h
rwsem.h lockdep, rwsem: fix down_write_nest_lock() if !CONFIG_DEBUG_LOCK_ALLOC 2013-01-16 12:13:20 -08:00
rxrpc.h
s3c_adc_battery.h
sa11x0-dma.h
scatterlist.h lib/scatterlist: use page iterator in the mapping iterator 2013-02-27 19:10:10 -08:00
scc.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
sched.h coredump: remove redundant defines for dumpable states 2013-02-27 19:10:11 -08:00
screen_info.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
sctp.h
scx200.h
scx200_gpio.h
sdla.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
seccomp.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
securebits.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
security.h tun: fix LSM/SELinux labeling of tun/tap devices 2013-01-14 18:16:59 -05:00
selection.h
selinux.h
sem.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
semaphore.h
seq_file.h userns: Make seq_file's user namespace accessible 2012-08-14 21:47:55 -07:00
seq_file_net.h
seqlock.h seqlock: Use seqcount infrastructure 2013-02-19 08:43:34 +01:00
serial.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
serial_8250.h serial: 8250: Add support for dmaengine 2013-01-15 23:03:00 -08:00
serial_core.h pps: Move timestamp read into PPS code proper 2013-02-13 10:13:58 -08:00
serial_max3100.h
serial_mfd.h
serial_pnx8xxx.h
serial_sci.h
serio.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
sfi.h
sfi_acpi.h ACPI: mark acpi_sfi_table_parse() as __init 2012-06-22 15:36:44 -06:00
sh_clk.h sh: clkfwk: add sh_clk_fsidiv_register() 2012-11-08 15:21:30 +09:00
sh_dma.h dma: sh: provide a migration path for slave drivers to stop using .private 2012-07-20 11:28:20 +05:30
sh_eth.h
sh_intc.h
sh_timer.h
shdma-base.h dmaengine: shdma: restore partial transfer calculation 2012-08-01 13:48:52 +09:00
shm.h mm: support more pagesizes for MAP_HUGETLB/SHM_HUGETLB 2012-12-11 17:22:25 -08:00
shmem_fs.h xattr: extract simple_xattr code from tmpfs 2012-08-24 15:55:33 -07:00
shrinker.h vmscan: remove obsolete shrink_control comment 2012-07-31 18:42:43 -07:00
signal.h new helper: signal_setup_done() 2013-02-03 15:09:26 -05:00
signalfd.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
sirfsoc_dma.h
sizes.h ARM: 7430/1: sizes.h: move from asm-generic to <linux/sizes.h> 2012-06-28 17:14:34 +01:00
skbuff.h skb: Propagate pfmemalloc on skb from head page only 2013-03-14 11:53:32 -04:00
slab.h slab: propagate tunable values 2012-12-18 15:02:14 -08:00
slab_def.h slab/slub: struct memcg_params 2012-12-18 15:02:13 -08:00
slob_def.h mm, slob: Use NUMA_NO_NODE instead of -1 2012-09-25 10:11:14 +03:00
slub_def.h slub: slub-specific propagation changes 2012-12-18 15:02:14 -08:00
sm501-regs.h
sm501.h
smc91x.h
smc911x.h
smp.h smp: make smp_call_function_many() use logic similar to smp_call_function_single() 2013-02-21 17:22:20 -08:00
smpboot.h stop_machine: Mark per cpu stopper enabled early 2013-02-26 22:25:17 +01:00
smsc911x.h
smscphy.h net: phy: smsc: force all capable mode if the phy is started in powerdown mode 2012-12-07 12:48:00 -05:00
sock_diag.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
socket.h VSOCK: Introduce VM Sockets 2013-02-10 19:41:08 -05:00
sonet.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
sony-laptop.h
sonypi.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
sort.h
sound.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
soundcard.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
spinlock.h
spinlock_api_smp.h
spinlock_api_up.h
spinlock_types.h
spinlock_types_up.h
spinlock_up.h
splice.h splice: fix racy pipe->buffers uses 2012-06-13 21:16:42 +02:00
srcu.h srcu: Remove checks preventing idle CPUs from calling srcu_read_lock() 2013-02-07 15:15:00 -08:00
stackprotector.h
stacktrace.h
start_kernel.h
stat.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
statfs.h
static_key.h
stddef.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
ste_modem_shm.h remoteproc: Add STE modem driver 2012-09-22 16:35:13 +03:00
stmmac.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2012-12-13 12:00:02 -08:00
stmp3xxx_rtc_wdt.h rtc: stmp3xxx: add wdt-accessor function 2013-03-01 12:40:36 +01:00
stmp_device.h
stop_machine.h
string.h string: introduce helper to get base file name from given path 2012-12-17 17:15:17 -08:00
string_helpers.h
stringify.h
sungem_phy.h
sunserialcore.h pps: Fix build breakage from decoupling pps from tty 2013-02-13 12:15:50 -08:00
sunxi_timer.h ARM: delete struct sys_timer 2012-12-24 09:36:38 -07:00
superhyway.h
suspend.h PM: Introduce suspend state PM_SUSPEND_FREEZE 2013-02-09 22:30:44 +01:00
svga.h
swab.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
swap.h vmscan: change type of vm_total_pages to unsigned long 2013-02-23 17:50:22 -08:00
swapfile.h
swapops.h swap: fix shmem swapping when more than 8 areas 2012-06-15 21:48:14 -07:00
swiotlb.h x86: Don't panic if can not alloc buffer for swiotlb 2013-01-29 19:36:53 -08:00
synclink.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
sys.h
sys_soc.h
syscalls.h burying unused conditionals 2013-02-14 09:21:15 -05:00
syscore_ops.h
sysctl.h sysctl: Pass useful parameters to sysctl permissions 2012-11-18 20:30:55 -05:00
sysfs.h sysfs: Functions for adding/removing symlinks to/from attribute groups 2013-01-25 21:51:13 +01:00
syslog.h
sysrq.h
sysv_fs.h
task_io_accounting.h
task_io_accounting_ops.h
task_work.h task_work: task_work_add() should not succeed after exit_task_work() 2012-09-13 16:47:34 +02:00
taskstats_kern.h
tboot.h
tc.h
tca6416_keypad.h
tcp.h tcp: adding a per-socket timestamp offset 2013-02-13 13:22:15 -05:00
tegra-ahb.h ARM: tegra: move tegra-ahb.h out of arch/arm/mach-tegra/ 2012-11-05 11:36:06 -07:00
tegra-soc.h ARM: tegra: add function to read chipid 2013-01-28 11:19:06 -07:00
textsearch.h
textsearch_fsm.h
tfrc.h
thermal.h thermal: sysfs: Add a new sysfs node emul_temp for thermal emulation 2013-02-06 13:45:42 +08:00
thread_info.h fork: protect architectures where THREAD_SIZE >= PAGE_SIZE against fork bombs 2012-12-18 15:02:13 -08:00
threads.h
ti_wilink_st.h drivers/misc/ti-st: remove sparse warnings 2012-08-16 10:11:45 -07:00
tick.h Merge branch 'nohz/printk-v8' into irq/core 2013-02-05 00:48:46 +01:00
tifm.h
timb_dma.h
timb_gpio.h
time-armada-370-xp.h clocksource: time-armada-370-xp: Marvell Armada 370/XP SoC timer driver 2012-07-10 15:47:46 +02:00
time.h arm-soc: cleanups 2013-02-21 14:58:40 -08:00
timekeeper_internal.h time: Introduce new GENERIC_TIME_VSYSCALL 2012-09-24 12:38:08 -04:00
timer.h timer: Implement TIMER_IRQSAFE 2012-08-21 16:28:31 +02:00
timerfd.h
timeriomem-rng.h
timerqueue.h rbtree: empty nodes have no color 2012-10-09 16:22:32 +09:00
timex.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
topology.h sched: recover SD_WAKE_AFFINE in select_task_rq_fair and code clean up 2012-08-13 19:02:05 +02:00
toshiba.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
tpm.h tpm: Move tpm_get_random api into the TPM device driver 2012-08-22 11:11:33 -05:00
tpm_command.h
trace_clock.h tracing,x86: Add a TSC trace_clock 2012-11-13 15:48:27 -05:00
trace_seq.h
tracehook.h trim task_work: get rid of hlist 2012-07-22 23:57:55 +04:00
tracepoint.h trace: Don't declare trace_*_rcuidle functions in modules 2012-09-12 10:20:14 -04:00
transport_class.h
tsacct_kern.h cputime: Use accessors to read task cputime stats 2013-01-27 19:23:31 +01:00
tty.h tty: Added a CONFIG_TTY option to allow removal of TTY 2013-01-18 16:15:27 -08:00
tty_driver.h tty: Document required behavior of tty driver close() 2013-02-04 15:40:28 -08:00
tty_flip.h TTY: switch tty_schedule_flip 2013-01-15 22:43:15 -08:00
tty_ldisc.h pps: Move timestamp read into PPS code proper 2013-02-13 10:13:58 -08:00
typecheck.h
types.h mm, oom: fix race when specifying a thread as the oom origin 2012-12-11 17:22:27 -08:00
u64_stats_sync.h
uaccess.h
ucb1400.h
udp.h net: Add support for hardware-offloaded encapsulation 2012-12-09 00:20:28 -05:00
uidgid.h
uinput.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
uio.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
uio_driver.h
uprobes.h uprobes: Introduce uprobe_apply() 2013-02-08 18:28:04 +01:00
usb.h USB: add usb_hcd_{start,end}_port_resume 2013-01-25 15:06:01 -08:00
usb_usual.h usb: remove libusual 2012-09-05 17:21:36 -07:00
usbdevice_fs.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
user-return-notifier.h
user.h
user_namespace.h userns: Avoid recursion in put_user_ns 2013-01-26 22:11:41 -08:00
uts.h
utsname.h proc: Usable inode numbers for the namespace file descriptors. 2012-11-20 04:19:49 -08:00
uuid.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
uwb.h
vermagic.h
vexpress.h mfd: vexpress: Add pseudo-GPIO based LEDs 2013-02-14 00:22:58 +01:00
vfio.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
vfs.h
vga_switcheroo.h vga_switcheroo: Add include guard 2012-06-21 09:32:16 +01:00
vgaarb.h Fix misspellings of "whether" in comments. 2012-11-19 14:31:35 +01:00
via-core.h
via-gpio.h
via.h
via_i2c.h
video_output.h
videodev2.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
virtio.h virtio: Add module driver macro for virtio drivers. 2013-02-13 17:00:32 +10:30
virtio_config.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
virtio_console.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
virtio_mmio.h
virtio_ring.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
virtio_scsi.h virtio-scsi: Add real 2-clause BSD license to header 2012-10-22 18:20:00 +10:30
vlynq.h
vm_event_item.h mm: don't wait on congested zones in balance_pgdat() 2013-02-23 17:50:15 -08:00
vmalloc.h ARM: dma-mapping: remove custom consistent dma region 2012-07-30 12:25:45 +02:00
vme.h
vmstat.h mm: numa: handle side-effects in count_vm_numa_events() for !CONFIG_NUMA_BALANCING 2013-02-23 17:50:16 -08:00
vmw_vmci_api.h VMCI: Some header and config files. 2013-01-08 16:15:57 -08:00
vmw_vmci_defs.h VMCI: Some header and config files. 2013-01-08 16:15:57 -08:00
vt.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
vt_buffer.h
vt_kern.h Merge branch 'console-fixes' into drm-next 2013-02-08 12:13:43 +10:00
vtime.h cputime: Safely read cputime of full dynticks CPUs 2013-01-27 20:35:47 +01:00
w1-gpio.h onewire: w1-gpio: add ext_pullup_enable pin in platform data 2012-08-16 10:02:33 -07:00
wait.h wait: add wait_event_lock_irq() interface 2012-11-30 11:47:57 +01:00
wanrouter.h wanrouter: delete now orphaned header content, files/drivers 2013-01-31 19:56:35 -05:00
watchdog.h watchdog: core: dt: add support for the timeout-sec dt property 2013-03-01 12:48:36 +01:00
wireless.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
wl12xx.h wlcore: move wl12xx_platform_data up and make it truly optional 2013-02-08 10:05:02 +02:00
wm97xx.h
workqueue.h workqueue: rename cpu_workqueue to pool_workqueue 2013-02-13 19:29:12 -08:00
writeback.h vfs: re-implement writeback_inodes_sb(_nr)_if_idle() and rename them 2013-01-12 10:47:43 +08:00
xattr.h UAPI: (Scripted) Disintegrate include/linux 2012-10-13 10:46:48 +01:00
xilinxfb.h
xz.h
yam.h
z2_battery.h
zconf.h
zlib.h
zorro.h
zorro_ids.h
zutil.h