kernel-ark/include/linux
Nick Piggin e8c82c2e23 mm lockless pagecache barrier fix
An XFS workload showed up a bug in the lockless pagecache patch. Basically it
would go into an "infinite" loop, although it would sometimes be able to break
out of the loop! The reason is a missing compiler barrier in the "increment
reference count unless it was zero" case of the lockless pagecache protocol in
the gang lookup functions.

This would cause the compiler to use a cached value of struct page pointer to
retry the operation with, rather than reload it. So the page might have been
removed from pagecache and freed (refcount==0) but the lookup would not correctly
notice the page is no longer in pagecache, and keep attempting to increment the
refcount and failing, until the page gets reallocated for something else. This
isn't a data corruption because the condition will be detected if the page has
been reallocated. However it can result in a lockup.

Linus points out that ACCESS_ONCE is also required in that pointer load, even
if it's absence is not causing a bug on our particular build. The most general
way to solve this is just to put an rcu_dereference in radix_tree_deref_slot.

Assembly of find_get_pages,
before:
.L220:
        movq    (%rbx), %rax    #* ivtmp.1162, tmp82
        movq    (%rax), %rdi    #, prephitmp.1149
.L218:
        testb   $1, %dil        #, prephitmp.1149
        jne     .L217   #,
        testq   %rdi, %rdi      # prephitmp.1149
        je      .L203   #,
        cmpq    $-1, %rdi       #, prephitmp.1149
        je      .L217   #,
        movl    8(%rdi), %esi   # <variable>._count.counter, c
        testl   %esi, %esi      # c
        je      .L218   #,

after:
.L212:
        movq    (%rbx), %rax    #* ivtmp.1109, tmp81
        movq    (%rax), %rdi    #, ret
        testb   $1, %dil        #, ret
        jne     .L211   #,
        testq   %rdi, %rdi      # ret
        je      .L197   #,
        cmpq    $-1, %rdi       #, ret
        je      .L211   #,
        movl    8(%rdi), %esi   # <variable>._count.counter, c
        testl   %esi, %esi      # c
        je      .L212   #,

(notice the obvious infinite loop in the first example, if page->count remains 0)

Signed-off-by: Nick Piggin <npiggin@suse.de>
Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2009-01-05 18:31:12 -08:00
..
amba
byteorder byteorder: provide swabb.h generically in asm/byteorder.h 2008-10-20 08:52:40 -07:00
can can: Fix CAN_(EFF|RTR)_FLAG handling in can_filter 2008-12-03 15:52:35 -08:00
dvb V4L/DVB (10166): dvb frontend: stop using non-C99 compliant comments 2009-01-02 17:15:07 -02:00
hdlc
i2c mfd: twl4030 IRQ handling update 2008-10-22 01:19:37 +02:00
isdn
lockd NLM: allow lockd requests from an unprivileged port 2008-12-23 15:21:38 -05:00
mfd ASoC: Add WM8350 AudioPlus codec driver 2008-12-18 17:21:07 +00:00
mlx4 mlx4_core: Add support for multiple completion event vectors 2008-12-22 07:15:03 -08:00
mmc mmc: Add mmc_vddrange_to_ocrmask() helper function 2008-12-31 18:18:13 +01:00
mtd [MTD] [NOR] Fix cfi_send_gen_cmd handling of x16 devices in x8 mode (v4) 2008-11-05 14:40:25 +01:00
netfilter netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC 2008-12-16 01:19:41 -08:00
netfilter_arp
netfilter_bridge netfilter: netns ebtables: part 2 2008-11-04 14:27:15 +01:00
netfilter_ipv4 netfilter: ip{,6}t_policy.h should include xp_policy.h 2008-11-20 15:59:56 +01:00
netfilter_ipv6 netfilter: ip{,6}t_policy.h should include xp_policy.h 2008-11-20 15:59:56 +01:00
nfsd nfsd: support callbacks with gss flavors 2008-12-23 16:19:00 -05:00
raid md: use sysfs_notify_dirent to notify changes to md/dev-xxx/state 2008-10-21 13:25:28 +11:00
regulator
rtc rtc-m48t59: allow externally mapped ioaddr 2008-09-03 15:41:57 -07:00
spi spi.h uses/needs device.h 2009-01-04 13:33:20 -08:00
ssb ssb: Fix DMA-API compilation for non-PCI systems 2008-11-10 13:50:19 -08:00
sunrpc Merge branch 'devel' into next 2008-12-30 16:51:43 -05:00
tc_act
tc_ematch
unaligned
usb Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 into for-upstream 2009-01-02 13:17:13 +00:00
uwb uwb: remove unused include/linux/uwb/debug.h 2008-12-22 18:30:29 +00:00
8250_pci.h And here's a patch (to be applied on top of the last) which prevents 2009-01-02 10:19:37 -08:00
a.out.h
ac97_codec.h
acct.h
acpi_pmtmr.h
acpi.h Merge branch 'video' into release 2008-11-11 21:15:50 -05:00
adb.h
adfs_fs_i.h
adfs_fs_sb.h
adfs_fs.h
aer.h PCI: fix AER capability check 2008-10-20 11:01:52 -07:00
affs_hardblocks.h
agp_backend.h
agpgart.h
aio_abi.h
aio.h aio: make the lookup_ioctx() lockless 2008-12-29 08:29:50 +01:00
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h
apm_bios.h
apm-emulation.h
arcdevice.h
arcfb.h [PATCH] Framebuffer driver for Arc LCD board 2005-06-21 19:07:41 -07:00
async_tx.h
ata_platform.h sata_mv: mbus decode window support 2008-03-27 14:51:39 -04:00
ata.h
atalk.h
atm_eni.h
atm_he.h
atm_idt77105.h
atm_nicstar.h
atm_suni.h
atm_tcp.h
atm_zatm.h
atm.h atm: 32-bit ioctl compatibility 2008-12-03 22:12:38 -08:00
atmapi.h
atmarp.h
atmbr2684.h
atmclip.h
atmdev.h atm: 32-bit ioctl compatibility 2008-12-03 22:12:38 -08:00
atmel_pdc.h
atmel_pwm.h
atmel_serial.h
atmel_tc.h atmel_tc library 2008-03-04 13:41:23 +01:00
atmel-pwm-bl.h
atmel-ssc.h
atmioc.h
atmlec.h
atmmpc.h [ATM]: Annotations. 2006-12-02 21:22:55 -08:00
atmppp.h
atmsap.h
atmsvc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
attribute_container.h
audit.h audit: validate comparison operations, store them in sane form 2009-01-04 15:14:42 -05:00
auto_dev-ioctl.h autofs4: add miscellaneous device for ioctls 2008-10-16 11:21:39 -07:00
auto_fs4.h autofs4: add miscellaneous device for ioctls 2008-10-16 11:21:39 -07:00
auto_fs.h
auxvec.h
ax25.h
b1lli.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
b1pcmcia.h
backing-dev.h vmscan: split LRU lists into anon & file sets 2008-10-20 08:50:25 -07:00
backlight.h
baycom.h
bcd.h include/linux/bcd.h: remove comments 2008-10-20 08:52:42 -07:00
bfs_fs.h
binfmts.h CRED: Make execve() take advantage of copy-on-write credentials 2008-11-14 10:39:24 +11:00
bio.h bio: add support for inlining a number of bio_vecs inside the bio 2008-12-29 08:29:50 +01:00
bit_spinlock.h bit_spin_lock: use lock bitops 2007-10-18 14:37:29 -07:00
bitmap.h bitmap: test for constant as well as small size for inline versions 2008-12-30 09:05:13 +10:30
bitops.h bitmap: find_last_bit() 2009-01-01 10:12:19 +10:30
bitrev.h
blkdev.h block: get rid of elevator_t typedef 2008-12-29 08:29:50 +01:00
blkpg.h
blktrace_api.h blktrace: port to tracepoints 2008-11-26 12:13:34 +01:00
blockgroup_lock.h fs: introduce bgl_lock_ptr() 2009-01-04 13:33:20 -08:00
bootmem.h page allocator: use no-panic variant of alloc_bootmem() in alloc_large_system_hash() 2008-08-12 16:07:27 -07:00
bottom_half.h softirq: remove useless function __local_bh_enable 2008-11-28 12:38:38 +01:00
bpqether.h
brcmphy.h tg3: Add shmem options. 2008-05-29 01:38:46 -07:00
bsg.h
buffer_head.h block: Supress Buffer I/O errors when SCSI REQ_QUIET flag set 2008-12-29 08:28:44 +01:00
bug.h generic bug: use show_regs() instead of dump_stack() 2007-07-16 09:05:51 -07:00
byteorder.h
c2port.h Add c2 port support 2008-11-12 17:17:18 -08:00
cache.h
can.h
capability.h CRED: Inaugurate COW credentials 2008-11-14 10:39:23 +11:00
capi.h
cciss_ioctl.h
cd1400.h
cdev.h
cdk.h
cdrom.h [PATCH] switch cdrom_{open,release,ioctl} to sane APIs 2008-10-21 07:47:22 -04:00
cfag12864b.h
cgroup_subsys.h pkt_sched: Control group classifier 2008-11-07 22:56:00 -08:00
cgroup.h cgroups: tiny cleanups 2008-10-30 11:38:45 -07:00
cgroupstats.h
chio.h
circ_buf.h
clk.h include/linux/clk.h: fix comment 2008-10-16 11:21:32 -07:00
clockchips.h cpumask: convert struct clock_event_device to cpumask pointers. 2008-12-13 21:20:26 +10:30
clocksource.h
cm4000_cs.h
cn_proc.h
cnt32_to_63.h clarify usage expectations for cnt32_to_63() 2008-11-09 11:17:33 -08:00
coda_cache.h
coda_fs_i.h
coda_linux.h
coda_psdev.h coda: remove CODA_STORE/CODA_RELEASE upcalls 2007-07-21 17:49:14 -07:00
coda.h
coff.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
com20020.h
compat.h remove __ARCH_WANT_COMPAT_SYS_PTRACE 2008-11-30 11:00:15 -08:00
compiler-gcc3.h Disallow gcc versions 3.{0,1} 2009-01-02 12:19:34 -08:00
compiler-gcc4.h Disallow gcc versions 4.1.{0,1} 2009-01-02 09:29:43 -08:00
compiler-gcc.h Sanitize gcc version header includes 2009-01-02 09:23:03 -08:00
compiler-intel.h Force erroneous inclusions of compiler-*.h files to be errors 2007-10-17 08:42:47 -07:00
compiler.h Sanitize gcc version header includes 2009-01-02 09:23:03 -08:00
completion.h
comstats.h
concap.h
configfs.h
connector.h
console_struct.h Revert "vt: fix background color on line feed" 2008-10-14 12:12:02 -07:00
console.h DRM: add mode setting support 2008-12-29 17:47:23 +10:00
consolemap.h
const.h
cpu.h
cpufreq.h
cpuidle.h
cpumask.h cpumask: CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS 2009-01-01 10:12:30 +10:30
cpuset.h cpuset: update top cpuset's mems after adding a node 2008-11-19 18:49:58 -08:00
cramfs_fs_sb.h
cramfs_fs.h
crash_dump.h proc: move /proc/vmcore creation to fs/proc/vmcore.c 2008-10-23 18:51:22 +04:00
crc7.h CRC7 support 2007-07-17 10:23:04 -07:00
crc16.h
crc32.h
crc32c.h libcrc32c: Add crc32c_le macro 2008-12-25 11:01:43 +11:00
crc-ccitt.h
crc-itu-t.h
crc-t10dif.h
cred.h User namespaces: set of cleanups (v2) 2008-11-24 18:57:41 -05:00
crypto.h crypto: hash - Export shash through hash 2008-12-25 11:01:33 +11:00
cryptohash.h
ctype.h
cuda.h
cyclades.h
cyclomx.h
cycx_cfm.h
cycx_drv.h
cycx_x25.h
dca.h I/OAT: I/OAT version 3.0 support 2008-07-22 17:30:57 -07:00
dcache.h shrink struct dentry 2008-12-31 18:07:38 -05:00
dcbnl.h net: add DCNA attribute to the BCN interface for DCB 2008-12-21 20:10:29 -08:00
dccp.h dccp ccid-2: Phase out the use of boolean Ack Vector sysctl 2008-12-08 01:19:06 -08:00
dcookies.h
debug_locks.h
debugfs.h
debugobjects.h
delay.h
delayacct.h
device_cgroup.h
device-mapper.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/viro/bdev 2008-10-23 10:23:07 -07:00
device.h i2c: Constify i2c_get_clientdata's parameter 2008-10-22 20:21:31 +02:00
devpts_fs.h Add an instance parameter devpts interfaces 2008-10-13 09:51:43 -07:00
dio.h
dirent.h
display.h
dlm_device.h
dlm_netlink.h
dlm_plock.h
dlm.h
dlmconstants.h
dm9000.h
dm-dirty-log.h
dm-io.h
dm-ioctl.h
dm-kcopyd.h
dm-region-hash.h dm raid1: separate region_hash interface part1 2008-10-21 17:45:06 +01:00
dma_remapping.h calculate agaw for each iommu 2009-01-03 14:02:18 +01:00
dma-attrs.h
dma-mapping.h
dmaengine.h
dmapool.h devres: device resource management 2007-02-09 17:39:36 -05:00
dmar.h intel-iommu: kill off duplicate def of dmar_disabled 2009-01-03 11:57:35 +01:00
dmi.h DMI: add dmi_match 2008-12-29 07:39:34 -05:00
dn.h
dnotify.h
dqblk_v1.h
dqblk_v2.h
dqblk_xfs.h
ds1wm.h
ds1286.h MIPS: IP22/28: Switch over to RTC class driver 2008-10-15 12:46:51 +01:00
ds17287rtc.h
dtlk.h
dw_dmac.h
dynamic_printk.h driver core: basic infrastructure for per-module dynamic debug messages 2008-10-16 09:24:47 -07:00
edac.h
edd.h
eeprom_93cx6.h
efi.h x86: Add UV EFI table entry v4 2008-10-16 16:53:13 +02:00
efs_fs_sb.h
efs_vh.h
eisa.h
elevator.h block: get rid of elevator_t typedef 2008-12-29 08:29:50 +01:00
elf-em.h
elf-fdpic.h
elf.h
elfcore-compat.h elfcore-compat fix uid/gid types 2008-02-29 08:06:37 -08:00
elfcore.h
elfnote.h
enclosure.h
err.h
errno.h
errqueue.h [NET]: struct sock_exterr_skb annotations 2006-09-28 18:02:08 -07:00
etherdevice.h eth: Declare an optimized compare_ether_addr_64bits() function 2008-11-23 23:24:32 -08:00
ethtool.h ethtool: Add GGRO and SGRO ops 2008-12-15 23:44:31 -08:00
eventfd.h flag parameters: NONBLOCK in eventfd 2008-07-24 10:47:29 -07:00
eventpoll.h
exportfs.h
ext2_fs_sb.h fs: introduce bgl_lock_ptr() 2009-01-04 13:33:20 -08:00
ext2_fs.h include: replace __FUNCTION__ with __func__ 2008-10-16 11:21:30 -07:00
ext3_fs_i.h Fix occurrences of "the the " 2007-05-09 08:57:56 +02:00
ext3_fs_sb.h fs: introduce bgl_lock_ptr() 2009-01-04 13:33:20 -08:00
ext3_fs.h ext3: add an option to control error handling on file data 2008-10-20 08:52:37 -07:00
ext3_jbd.h include: replace __FUNCTION__ with __func__ 2008-10-16 11:21:30 -07:00
f75375s.h
fadvise.h [PATCH] sys_sync_file_range() 2006-03-31 12:18:54 -08:00
falloc.h
fault-inject.h SLUB: failslab support 2008-12-29 11:27:46 +02:00
fb.h fb: SH-5 uses __raw I/O accessors now also, drop the special casing. 2008-12-22 18:44:05 +09:00
fcdevice.h
fcntl.h
fd.h
fddidevice.h fddi: convert to new network device ops 2008-11-20 20:29:48 -08:00
fdreg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fdtable.h filp_cachep can be static in fs/file_table.c 2008-12-31 18:07:42 -05:00
fib_rules.h
fiemap.h
file.h [PATCH] introduce fmode_t, do annotations 2008-10-21 07:47:06 -04:00
filter.h filter: add SKF_AD_NLATTR_NEST to look for nested attributes 2008-11-20 00:49:27 -08:00
firewire-cdev.h firewire: Add more documentation to firewire-cdev.h 2008-10-15 22:21:11 +02:00
firewire-constants.h
firmware-map.h
firmware.h
flat.h
font.h
freezer.h freezer_cg: use thaw_process() in unfreeze_cgroup() 2008-10-30 11:38:45 -07:00
fs_enet_pd.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6 2008-07-22 19:09:51 -07:00
fs_stack.h [PATCH] fsstack: Introduce fsstack_copy_{attr,inode}_* 2006-12-08 08:28:40 -08:00
fs_struct.h take init_fs to saner place 2008-12-31 18:07:42 -05:00
fs_uart_pd.h
fs.h fs: symlink write_begin allocation context fix 2009-01-04 13:33:20 -08:00
fsl_devices.h gianfar: Convert gianfar to an of_platform_driver 2008-12-16 15:29:15 -08:00
fsnotify.h [PATCH] introduce fmode_t, do annotations 2008-10-21 07:47:06 -04:00
ftrace_irq.h tracing/function-return-tracer: change the name into function-graph-tracer 2008-11-26 01:59:45 +01:00
ftrace.h ftrace: enable format arguments checking 2008-12-21 09:46:45 +01:00
fuse.h fuse: implement nonseekable open 2008-10-16 16:08:57 +02:00
futex.h futex: make clock selectable for FUTEX_WAIT_BITSET 2008-11-24 20:00:40 +01:00
gameport.h
gen_stats.h
genalloc.h [PATCH] LIB: add gen_pool_destroy() 2006-10-02 07:57:12 -07:00
generic_acl.h
generic_serial.h tty_port: Add a port level carrier detect operation 2009-01-02 10:19:38 -08:00
genetlink.h [GENETLINK]: Dynamic multicast groups. 2007-07-18 15:47:52 -07:00
genhd.h block: add one-hit cache for disk partition lookup 2008-12-29 08:29:51 +01:00
getcpu.h
gfp.h mm: add alloc_pages_exact() and free_pages_exact() 2008-07-24 10:47:20 -07:00
gfs2_ondisk.h
gigaset_dev.h
gpio_keys.h
gpio_mouse.h
gpio.h gpio_free might sleep, generic part 2008-10-16 11:21:40 -07:00
hardirq.h Merge branch 'core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2008-12-30 16:10:19 -08:00
hash.h
hayesesp.h
hdlc.h netdevice: Kill netdev->priv 2008-12-08 01:14:16 -08:00
hdlcdrv.h
hdpu_features.h
hdreg.h
hid-debug.h
hid.h HID: fix oops during suspend of unbound HID devices 2008-10-27 15:06:01 +01:00
hiddev.h HID: hiddev.h: Fix example code. 2008-10-14 23:51:02 +02:00
hidraw.h HID: export headers properly 2008-04-22 11:34:59 +02:00
highmem.h Allow architectures to override copy_user_highpage() 2008-11-27 23:39:48 +00:00
highuid.h
hil_mlc.h
hil.h
hippidevice.h hippi: convert driver to net_device_ops 2008-11-20 20:32:15 -08:00
hp_sdc.h
hpet.h hpet: /dev/hpet - fixes and cleanup 2008-07-31 18:45:41 +02:00
hrtimer.h hrtimer: removing all ur callback modes 2008-11-25 15:45:46 +01:00
htirq.h
hugetlb.h proc: switch /proc/meminfo to seq_file 2008-10-23 13:52:40 +04:00
hw_random.h
hwmon-sysfs.h
hwmon-vid.h
hwmon.h
hysdn_if.h
i2c-algo-bit.h
i2c-algo-pca.h i2c-algo-pca: Extend for future drivers 2008-04-22 22:16:46 +02:00
i2c-algo-pcf.h i2c-algo-pcf: Add adapter hooks around xfer begin and end 2008-10-22 20:21:30 +02:00
i2c-algo-sgi.h
i2c-dev.h
i2c-gpio.h
i2c-id.h V4L/DVB (9240): saa7127: Fix two typos 2008-10-17 17:25:11 -03:00
i2c-ocores.h [PATCH] i2c: New bus driver for the OpenCores I2C controller 2006-06-22 11:10:33 -07:00
i2c-pca-platform.h
i2c-pnx.h [ARM] fix pnx4008 build errors 2008-08-08 15:13:27 +01:00
i2c-pxa.h [ARM] Remove EEPROM slave emulation from i2c-pxa driver. 2006-11-30 12:24:45 +00:00
i2c.h i2c: Add info->archdata field 2008-10-22 20:21:33 +02:00
i2o-dev.h
i2o.h i2o: Fix 32/64bit DMA locking 2008-10-16 11:21:38 -07:00
i8k.h
i7300_idle.h i7300_idle: Disable ioat channel only on platforms where ile driver can load 2008-10-24 12:54:18 -04:00
i8042.h Input: i8042 - export i8042_command() 2007-10-22 00:56:52 -04:00
ibmtr.h
icmp.h
icmpv6.h IPV6: Fix default gateway criteria wrt. HIGH/LOW preference radv option 2008-10-15 16:03:01 -07:00
ide.h ide-atapi: remove timeout arg to ide_issue_pc 2009-01-02 16:12:56 +01:00
idr.h lib/idr.c: fix rcu related race with idr_find 2008-12-01 19:55:25 -08:00
ieee80211.h wireless: Incorrect LEAP authentication algorithm identifier. 2008-12-12 13:48:20 -05:00
if_addr.h
if_addrlabel.h
if_arcnet.h
if_arp.h Phonet: allocate separate ARP type for GPRS over a Phonet pipe 2008-12-17 15:47:48 -08:00
if_bonding.h
if_bridge.h
if_cablemodem.h
if_ec.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_eql.h
if_ether.h net: Rationalise email address: Network Specific Parts 2008-10-13 19:01:08 -07:00
if_fc.h [NET]: net/802: more endian annotations 2005-08-29 16:10:54 -07:00
if_fddi.h net: Rationalise email address: Network Specific Parts 2008-10-13 19:01:08 -07:00
if_frad.h
if_hippi.h net: Rationalise email address: Network Specific Parts 2008-10-13 19:01:08 -07:00
if_infiniband.h
if_link.h
if_ltalk.h
if_macvlan.h Remove "#ifdef __KERNEL__" checks from unexported headers 2008-04-30 08:29:54 -07:00
if_packet.h packet: add PACKET_RESERVE sockopt 2008-07-18 18:05:19 -07:00
if_phonet.h
if_plip.h
if_ppp.h
if_pppol2tp.h
if_pppox.h
if_slip.h
if_strip.h
if_tr.h
if_tun.h
if_tunnel.h
if_vlan.h net: fix packet socket delivery in rx irq handler 2008-11-04 14:49:57 -08:00
if.h bonding, net: Move last_rx update into bonding recv logic 2008-11-03 18:16:50 -08:00
igmp.h net: Rationalise email address: Network Specific Parts 2008-10-13 19:01:08 -07:00
ihex.h
in6.h
in_route.h
in.h TPROXY: implemented IP_RECVORIGDSTADDR socket option 2008-11-16 19:32:39 -08:00
inet_diag.h
inet_lro.h
inet.h
inetdevice.h
init_ohci1394_dma.h
init_task.h take init_fs to saner place 2008-12-31 18:07:42 -05:00
init.h adjust init section definitions 2008-10-29 22:02:09 +01:00
initrd.h
inotify.h Fix inotify watch removal/umount races 2008-11-15 12:26:44 -08:00
input-polldev.h
input.h Merge branch 'topic/jack-mechanical' into to-push 2008-12-25 11:40:29 +01:00
intel-iommu.h VT-d: remove now unused intel_iommu_found function 2009-01-03 14:11:08 +01:00
interrupt.h Merge branch 'cpus4096-for-linus-3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2009-01-03 12:04:39 -08:00
io-mapping.h io mapping: clean up #ifdefs 2008-11-03 18:21:45 +01:00
io.h [POWERPC] devres: Add devm_ioremap_prot() 2008-05-05 16:47:14 +10:00
ioc3.h
ioc4.h
iocontext.h block: blkdev.h cleanup, move iocontext stuff to iocontext.h 2008-07-03 13:21:14 +02:00
ioctl.h
iommu-helper.h introduce generic iommu_num_pages function 2008-10-16 11:21:33 -07:00
iommu.h introcude linux/iommu.h for an iommu api 2009-01-03 14:10:09 +01:00
ioport.h Merge branch 'core-v28-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2008-10-16 15:17:40 -07:00
ioprio.h
iova.h VT-d: Changes to support KVM 2008-10-15 14:24:08 +02:00
ip6_tunnel.h net: remove CVS keywords 2008-06-11 21:00:38 -07:00
ip_vs.h
ip.h
ipc_namespace.h
ipc.h
ipmi_msgdefs.h [PATCH] IPMI: Fix BT long busy 2006-12-07 08:39:47 -08:00
ipmi_smi.h
ipmi.h
ipsec.h [XFRM]: BEET mode 2006-10-04 00:31:09 -07:00
ipv6_route.h
ipv6.h ipv6: Add IPV6_PKTINFO sticky option support to setsockopt() 2008-12-16 02:06:23 -08:00
ipx.h
irda.h
irq_cpustat.h
irq.h Merge branch 'cpus4096-for-linus-2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2009-01-02 11:44:09 -08:00
irqflags.h
irqnr.h irq: simplify for_each_irq_desc() usage 2008-12-26 09:48:18 +01:00
irqreturn.h
isa.h
isapnp.h
iscsi_ibft.h
isdn_divertif.h
isdn_ppp.h
isdn.h [ISDN] include/linux/isdn.h: remove dead code 2008-04-15 00:30:16 -07:00
isdnif.h
isicom.h Remove "#ifdef __KERNEL__" checks from unexported headers 2008-04-30 08:29:54 -07:00
iso_fs.h
istallion.h tty: Introduce some close helpers for ports 2009-01-02 10:19:40 -08:00
ivtv.h
ivtvfb.h Fix header export of videodev2.h, ivtv.h, ivtvfb.h 2008-08-16 16:46:57 -07:00
ixjuser.h
jbd2.h ext4: Replace hackish ext4_mb_poll_new_transaction with commit callback 2008-10-16 20:00:24 -04:00
jbd.h jbd: fix error handling for checkpoint io 2008-10-23 08:55:01 -07:00
jffs2.h
jhash.h
jiffies.h optimize attribute timeouts for "noac" and "actimeo=0" 2008-12-23 15:21:56 -05:00
journal-head.h Remove Andrew Morton's old email accounts 2008-10-16 11:21:32 -07:00
joystick.h
kallsyms.h vsprintf: use new vsprintf symbolic function pointer format 2008-10-16 11:21:31 -07:00
kbd_diacr.h unicode diacritics support 2007-10-17 08:42:52 -07:00
kbd_kern.h
Kbuild sparse irqs: add irqnr.h to the user headers list 2008-12-12 12:29:10 +01:00
kbuild.h
kd.h Fix <linux/kd.h> usage in userspace 2007-11-29 09:24:52 -08:00
kdebug.h
kdev_t.h [PATCH] remove protection of LANANA-reserved majors 2007-04-04 21:12:47 -07:00
kernel_stat.h [PATCH] idle cputime accounting 2008-12-31 15:11:46 +01:00
kernel.h Merge branch 'core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2008-12-30 16:10:19 -08:00
kernelcapi.h
kexec.h kexec/i386: allocate page table pages dynamically 2008-10-31 10:01:56 +01:00
key-type.h
key.h CRED: Make execve() take advantage of copy-on-write credentials 2008-11-14 10:39:24 +11:00
keyboard.h
keyctl.h KEYS: Alter use of key instantiation link-to-keyring argument 2008-11-14 10:39:14 +11:00
kfifo.h
kgdb.h
klist.h klist: don't iterate over deleted entries 2008-10-09 08:56:04 +02:00
kmalloc_sizes.h Slab allocators: define common size limitations 2007-05-17 05:23:04 -07:00
kmod.h pm: rework disabling of user mode helpers during suspend/hibernation 2008-10-16 11:21:29 -07:00
kobj_map.h
kobject.h
kprobes.h ftrace: ignore functions that cannot be kprobe-ed 2008-10-14 10:34:22 +02:00
kref.h
ks0108.h Miguel Ojeda has moved 2008-07-04 10:40:05 -07:00
kthread.h
ktime.h
kvm_host.h KVM: change KVM to use IOMMU API 2009-01-03 14:11:07 +01:00
kvm_para.h
kvm_types.h KVM: MMU: Don't assume struct page for x86 2008-04-27 12:01:15 +03:00
kvm.h KVM: x86: Rework user space NMI injection as KVM_CAP_USER_NMI 2008-12-31 16:55:47 +02:00
lapb.h
latencytop.h
lcd.h
leds-pca9532.h leds: Add pca9532 led driver 2008-07-23 09:49:56 +01:00
leds.h leds: Make default trigger fields const 2008-10-20 22:34:12 +01:00
lguest_launcher.h lguest: move the initial guest page table creation code to the host 2008-12-30 09:26:11 +10:30
lguest.h
libata.h libata: perform port detach in EH 2008-12-28 22:43:21 -05:00
libps2.h
license.h
limits.h
linkage.h i386: get rid of the use of KPROBE_ENTRY / KPROBE_END 2008-11-27 12:37:54 +01:00
linux_logo.h
list_nulls.h rcu: Introduce hlist_nulls variant of hlist 2008-11-16 19:37:55 -08:00
list.h
llc.h include/linux/: Spelling fixes 2008-02-03 17:45:46 +02:00
lm_interface.h
lmb.h
lockdep.h Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2008-12-30 16:20:19 -08:00
log2.h
loop.h
lp.h
lzo.h
m48t86.h
magic.h
major.h
map_to_7segment.h
maple.h
marker.h markers: comment marker_synchronize_unregister() on data dependency 2008-11-28 16:47:41 +01:00
math64.h
matroxfb.h
mbcache.h
mbus.h introduce mbus DRAM target info abstraction 2008-03-27 14:51:39 -04:00
mc6821.h
mc146818rtc.h
mca-legacy.h
mca.h
mdio-bitbang.h
mdio-gpio.h phylib: make mdio-gpio work without OF (v4) 2008-11-16 18:59:45 -08:00
memcontrol.h memcg: allocate all page_cgroup at boot 2008-10-20 08:52:39 -07:00
memory_hotplug.h memory-hotplug: add sysfs removable attribute for hotplug memory remove 2008-07-24 10:47:21 -07:00
memory.h hotplug_memory_notifier section annotation 2008-11-30 10:03:38 -08:00
mempolicy.h
mempool.h
memstick.h
meye.h
migrate.h vmscan: move isolate_lru_page() to vmscan.c 2008-10-20 08:50:25 -07:00
mii.h net: Refactor full duplex flow control resolution 2008-12-16 02:00:48 -08:00
minix_fs.h
miscdevice.h
mISDNdsp.h
mISDNhw.h
mISDNif.h
mm_inline.h vmscan: kill unused lru functions 2008-10-20 08:52:31 -07:00
mm_types.h aio: make the lookup_ioctx() lockless 2008-12-29 08:29:50 +01:00
mm.h Merge branch 'tracing-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2008-12-28 12:21:10 -08:00
mman.h
mmdebug.h
mmiotrace.h mmiotrace: remove left-over marker cruft 2008-10-14 10:37:17 +02:00
mmtimer.h
mmu_notifier.h
mmzone.h memcg: allocate all page_cgroup at boot 2008-10-20 08:52:39 -07:00
mnt_namespace.h
mod_devicetable.h HID: fix hid_device_id for cross compiling 2008-10-29 00:51:25 +01:00
module.h param: Fix duplicate module prefixes 2008-10-22 10:00:23 +11:00
moduleloader.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
moduleparam.h core_param() for genuinely core kernel parameters 2008-10-22 10:00:23 +11:00
mount.h include/linux/mount.h: remove CVS keyword 2008-10-16 11:21:30 -07:00
mpage.h
mqueue.h
mroute6.h netns: ip6mr: enable namespace support in ipv6 multicast forwarding code 2008-12-10 16:30:15 -08:00
mroute.h net: Unbreak userspace usage of linux/mroute.h 2008-08-29 14:37:23 -07:00
msdos_fs.h fat: Cleanup FAT attribute stuff 2008-11-06 15:41:21 -08:00
msg.h
msi.h x86, MSI: pass irq_cfg and irq_desc 2008-12-08 14:31:59 +01:00
mtio.h [SCSI] st: add option to use SILI in variable block reads 2008-04-07 12:15:39 -05:00
mutex-debug.h
mutex.h mutex: improve header comment to be actually informative about the API 2008-10-30 19:55:00 +01:00
mv643xx_eth.h
mv643xx_i2c.h
mv643xx.h
n_r3964.h
namei.h vfs: introduce helper function to safely NUL-terminate symlinks 2008-12-31 18:07:38 -05:00
nbd.h
ncp_fs_i.h Remove "#ifdef __KERNEL__" checks from unexported headers 2008-04-30 08:29:54 -07:00
ncp_fs_sb.h ncpfs: make sure server connection survives a kill 2007-03-06 13:26:27 +01:00
ncp_fs.h ncpfs: add prototypes to ncp_fs.h 2008-04-28 08:58:29 -07:00
ncp_mount.h
ncp_no.h
ncp.h
neighbour.h
net.h reintroduce accept4 2008-11-19 18:49:57 -08:00
netdevice.h net: Remove unused netdev arg from some NAPI interfaces. 2008-12-22 20:43:12 -08:00
netfilter_arp.h
netfilter_bridge.h
netfilter_decnet.h
netfilter_ipv4.h netfilter: ip_tables: add iptables security table for mandatory access control rules 2008-06-09 15:57:24 -07:00
netfilter_ipv6.h netfilter: cleanup netfilter_ipv6.h userspace header 2008-07-08 02:36:40 -07:00
netfilter.h
netlink.h netlink: avoid memset of 0 bytes sparse warning 2008-11-20 04:08:29 -08:00
netpoll.h net: Add Generic Receive Offload infrastructure 2008-12-15 23:38:52 -08:00
netrom.h
nfs2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs3.h
nfs4_acl.h remove nfs4_acl_add_ace() 2007-05-09 12:30:54 -07:00
nfs4_mount.h
nfs4.h
nfs_fs_i.h
nfs_fs_sb.h NFSv4: Remove nfs_client->cl_sem 2008-12-23 15:21:45 -05:00
nfs_fs.h optimize attribute timeouts for "noac" and "actimeo=0" 2008-12-23 15:21:56 -05:00
nfs_idmap.h
nfs_iostat.h NFS: Move fs/nfs/iostat.h to include/linux 2008-07-09 12:09:17 -04:00
nfs_mount.h NFS: add "[no]resvport" mount option 2008-12-23 15:21:37 -05:00
nfs_page.h
nfs_xdr.h NFSv4: Convert the open and close ops to use fmode 2008-12-23 15:21:56 -05:00
nfs.h
nfsacl.h
nfsd_idmap.h
nl80211.h mac80211: Fix HT channel selection 2008-12-19 15:22:54 -05:00
nls.h
nmi.h
node.h
nodemask.h
notifier.h
nsc_gpio.h [PATCH] gpio: drop vtable members .gpio_set_high .gpio_set_low gpio_set is enough 2006-07-14 21:53:54 -07:00
nsproxy.h User namespaces: set of cleanups (v2) 2008-11-24 18:57:41 -05:00
nubus.h
numa.h Don't include linux/config.h from anywhere else in include/ 2006-04-26 12:56:16 +01:00
nvram.h
of_device.h [POWERPC] Move of_device_get_modalias to drivers/of 2008-05-16 23:22:28 +10:00
of_gpio.h of/gpio: Implement of_gpio_count() 2008-12-21 14:21:14 +11:00
of_i2c.h
of_platform.h of: Fix comment, sparc no longer uses of_device objects on special busses. 2008-12-04 09:16:45 -08:00
of_spi.h
of.h of: Add helpers for finding device nodes which have a given property 2008-11-19 16:05:00 +11:00
oom.h
oprofile.h oprofile: update comment for oprofile_add_sample() 2008-12-10 14:20:03 +01:00
page_cgroup.h meminit section warnings 2008-11-30 10:03:35 -08:00
page-flags.h mlock: mlocked pages are unevictable 2008-10-20 08:52:30 -07:00
page-isolation.h
pageblock-flags.h
pagemap.h fs: symlink write_begin allocation context fix 2009-01-04 13:33:20 -08:00
pagevec.h Unevictable LRU Infrastructure 2008-10-20 08:50:26 -07:00
param.h
parport_pc.h
parport.h parport: remove CVS keywords 2008-10-16 11:21:49 -07:00
parser.h
patchkey.h
path.h
pci_hotplug.h PCI: Hotplug core: remove 'name' 2008-10-22 16:42:43 -07:00
pci_ids.h serial_8250: support for Sealevel Systems Model 7803 COMM+8 2009-01-02 10:19:44 -08:00
pci_regs.h PCI: add support for function level reset 2008-10-22 16:42:35 -07:00
pci-acpi.h
pci-aspm.h PCI: disable ASPM per ACPI FADT setting 2008-07-28 14:56:09 -07:00
pci.h Merge branches 'x86/apic', 'x86/cleanups', 'x86/cpufeature', 'x86/crashdump', 'x86/debug', 'x86/defconfig', 'x86/detect-hyper', 'x86/doc', 'x86/dumpstack', 'x86/early-printk', 'x86/fpu', 'x86/idle', 'x86/io', 'x86/memory-corruption-check', 'x86/microcode', 'x86/mm', 'x86/mtrr', 'x86/nmi-watchdog', 'x86/pat2', 'x86/pci-ioapic-boot-irq-quirks', 'x86/ptrace', 'x86/quirks', 'x86/reboot', 'x86/setup-memory', 'x86/signal', 'x86/sparse-fixes', 'x86/time', 'x86/uv' and 'x86/xen' into x86/core 2008-12-23 16:27:23 +01:00
pcieport_if.h
pda_power.h pda_power: add init and exit function callbacks 2008-05-03 03:39:55 +04:00
percpu_counter.h revert "percpu_counter: new function percpu_counter_sum_and_set" 2008-12-10 08:01:52 -08:00
percpu.h
personality.h
pfkeyv2.h
pfn.h
pg.h
phantom.h
phonedev.h
phonet.h Phonet: do not reply to indication reset packets 2008-10-26 23:07:25 -07:00
phy_fixed.h phy/fixed.c: rework to not duplicate PHY layer functionality 2008-01-23 19:33:58 -06:00
phy.h phy: power management support 2008-11-28 16:24:56 -08:00
pid_namespace.h pid_ns: kill the now unused task_child_reaper() 2008-10-16 11:21:48 -07:00
pid.h pid: fix the do_each_pid_task() macro 2008-12-04 09:09:37 +01:00
pim.h
pipe_fs_i.h
pkt_cls.h pkt_sched: Control group classifier 2008-11-07 22:56:00 -08:00
pkt_sched.h pkt_sched: add DRR scheduler 2008-11-20 04:10:00 -08:00
pktcdvd.h
platform_device.h platform: add new device registration helper 2008-10-16 09:24:51 -07:00
plist.h kernel-doc: fix plist.h comments 2007-04-17 16:36:26 -07:00
pm_qos_params.h
pm_wakeup.h
pm.h include: replace __FUNCTION__ with __func__ 2008-10-16 11:21:30 -07:00
pmu.h
pnp.h Merge branch 'linus' into test 2008-10-23 00:11:07 -04:00
poison.h
poll.h
posix_acl_xattr.h
posix_acl.h
posix_types.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
posix-timers.h posix-timers: use "struct pid*" instead of "struct task_struct*" 2008-12-12 17:00:07 +01:00
power_supply.h
ppdev.h
ppp_channel.h
ppp_defs.h
ppp-comp.h
prctl.h
preempt.h ftrace: trace preempt off critical timings 2008-05-23 20:32:54 +02:00
prefetch.h
prio_heap.h
prio_tree.h
proc_fs.h proc: remove fs/proc/proc_misc.c 2008-10-23 18:54:05 +04:00
profile.h profiling: fix up CONFIG_PROC_FS=n build 2008-10-23 08:55:01 -07:00
proportions.h reorder struct prop_local_single to remove padding on 64 bit builds 2008-08-15 17:15:23 +02:00
ptrace.h x86, bts: add fork and exit handling 2008-12-20 09:15:46 +01:00
pwm_backlight.h
pwm.h
qnx4_fs.h
qnxtypes.h [PATCH] fs/qnx4/*: fix sparse warnings 2005-06-24 14:14:24 -07:00
quicklist.h
quota.h quota: remove CVS keywords 2008-10-16 11:21:46 -07:00
quotaio_v1.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
quotaio_v2.h
quotaops.h quota: remove CVS keywords 2008-10-16 11:21:46 -07:00
radeonfb.h
radix-tree.h mm lockless pagecache barrier fix 2009-01-05 18:31:12 -08:00
raid_class.h
ramfs.h
random.h sparseirq: move set/get_timer_rand_state back to .c 2009-01-03 12:01:23 -08:00
ratelimit.h remove ratelimt() 2008-11-12 17:17:17 -08:00
raw.h
rbtree.h [PATCH] rbtree: fixed reversed RB_EMPTY_NODE and rb_next/prev 2006-09-30 20:26:56 +02:00
rcuclassic.h cpumask: convert RCU implementations 2009-01-01 10:12:26 +10:30
rculist_nulls.h rcu: Introduce hlist_nulls variant of hlist 2008-11-16 19:37:55 -08:00
rculist.h udp: Use hlist_nulls in UDP RCU code 2008-11-16 19:39:21 -08:00
rcupdate.h Merge branch 'core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2008-12-30 16:10:19 -08:00
rcupreempt_trace.h
rcupreempt.h
rcutree.h "Tree RCU": scalable classic RCU implementation 2008-12-18 21:56:04 +01:00
reboot.h
reciprocal_div.h
regset.h x86: user_regset user-copy helpers 2008-01-30 13:31:47 +01:00
reiserfs_acl.h
reiserfs_fs_i.h
reiserfs_fs_sb.h [PATCH] remember mode of reiserfs journal 2008-10-21 07:49:04 -04:00
reiserfs_fs.h include: replace __FUNCTION__ with __func__ 2008-10-16 11:21:30 -07:00
reiserfs_xattr.h
relay.h
res_counter.h
resource.h mm: increase the default mlock limit from 32k to 64k 2008-10-30 11:38:45 -07:00
resume-trace.h
rfkill.h rfkill: strip pointless notifier chain 2008-12-12 14:45:25 -05:00
ring_buffer.h Merge branch 'oprofile-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2008-12-30 17:31:25 -08:00
rio_drv.h rapidio: struct device - replace bus_id with dev_name(), dev_set_name() 2008-12-16 15:53:41 +11:00
rio_ids.h
rio_regs.h
rio.h
rmap.h make mm/rmap.c:anon_vma_cachep static 2008-10-20 08:52:40 -07:00
romfs_fs.h
root_dev.h
rose.h
route.h
rslib.h
rtc-v3020.h [PATCH] Add v3020 RTC support 2006-06-25 10:01:14 -07:00
rtc.h rtc: add alarm/update irq interfaces 2009-01-04 13:33:20 -08:00
rtmutex.h include: replace __FUNCTION__ with __func__ 2008-10-16 11:21:30 -07:00
rtnetlink.h ixgbe: this patch adds support for DCB to the kernel and ixgbe driver 2008-11-20 20:52:10 -08:00
rwsem-spinlock.h
rwsem.h
rxrpc.h
sc26198.h
scatterlist.h
scc.h
sched.h Merge branch 'cputime' of git://git390.osdl.marist.edu/pub/scm/linux-2.6 2009-01-03 11:56:24 -08:00
screen_info.h
sctp.h
scx200_gpio.h
scx200.h
sdla.h
seccomp.h
securebits.h CRED: Wrap current->cred and a few other accessors 2008-11-14 10:39:18 +11:00
security.h introduce new LSM hooks where vfsmount is available. 2008-12-31 18:07:37 -05:00
selection.h
selinux_netlink.h
selinux.h SELinux: use new audit hooks, remove redundant exports 2008-04-19 09:53:46 +10:00
sem.h
semaphore.h
seq_file_net.h
seq_file.h cpumask: Use nr_cpu_ids in seq_cpumask 2008-12-30 09:05:19 +10:30
seqlock.h
serial167.h Char: serial167, remove bottomhalf 2008-02-07 08:42:34 -08:00
serial_8250.h Serial: Allow port type to be specified when calling serial8250_register_port. 2009-01-02 10:19:43 -08:00
serial_core.h Serial: UART driver changes for Cavium OCTEON. 2009-01-02 10:19:43 -08:00
serial_pnx8xxx.h
serial_reg.h Serial 8250: handle saving the clear-on-read bits from the LSR and MSR 2007-08-22 19:52:44 -07:00
serial_sci.h
serial.h serial: RS485 ioctl structure uses __u32 include linux/types.h 2009-01-02 10:19:42 -08:00
serialP.h
serio.h
sh_intc.h
shm.h
shmem_fs.h
signal.h
signalfd.h
skbuff.h net: Add skb_gro_receive 2008-12-15 23:42:33 -08:00
slab_def.h
slab.h Merge branches 'topic/fixes', 'topic/cleanups' and 'topic/documentation' into for-linus 2008-12-29 11:45:47 +02:00
slob_def.h
slub_def.h
sm501-regs.h
sm501.h
smb_fs_i.h
smb_fs_sb.h
smb_fs.h
smb_mount.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smb.h
smbno.h
smc91x.h
smc911x.h smc911x: Add IRQ polarity configuration 2008-10-22 07:00:38 -04:00
smp_lock.h
smp.h cpumask: smp_call_function_many() 2008-12-30 09:05:16 +10:30
smsc911x.h smsc911x: add dynamic bus configuration 2008-12-10 15:12:45 -08:00
snmp.h tcp: add some mibs to track collapsing 2008-11-24 21:27:22 -08:00
socket.h
sockios.h
som.h
sonet.h
sony-laptop.h
sonypi.h
sort.h
sound.h [PATCH] The scheduled removal of some OSS drivers 2006-10-04 07:55:32 -07:00
soundcard.h
spinlock_api_smp.h
spinlock_api_up.h
spinlock_types_up.h
spinlock_types.h
spinlock_up.h
spinlock.h
splice.h
srcu.h
stacktrace.h tracing/stack-tracer: introduce CONFIG_USER_STACKTRACE_SUPPORT 2008-11-23 11:53:50 +01:00
stallion.h
start_kernel.h
stat.h
statfs.h
stddef.h
stop_machine.h cpumask: convert rest of files in kernel/ 2009-01-01 10:12:28 +10:30
string_helpers.h
string.h linux/string.h: fix comment typo 2008-11-02 10:15:07 -08:00
stringify.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
superhyway.h
suspend_ioctls.h
suspend.h
svga.h
swab.h byteorder: use generic C version for value byteswapping 2008-10-20 08:52:40 -07:00
swap.h vmscan: unevictable LRU scan sysctl 2008-10-20 08:52:31 -07:00
swapops.h
swiotlb.h swiotlb: add arch hook to force mapping 2008-12-17 18:58:13 +01:00
synclink.h synclink_gt: add serial bit order control 2008-07-22 13:03:29 -07:00
sys.h
syscalls.h reintroduce accept4 2008-11-19 18:49:57 -08:00
sysctl.h sysctl: simplify ->strategy 2008-10-16 11:21:47 -07:00
sysdev.h
sysfs.h x86: sysfs: kill owner field from attribute 2008-10-20 08:52:42 -07:00
sysrq.h
sysv_fs.h
task_io_accounting_ops.h
task_io_accounting.h Remove Andrew Morton's old email accounts 2008-10-16 11:21:32 -07:00
taskstats_kern.h
taskstats.h
tc.h [TC] MIPS: TURBOchannel update to the driver model 2007-02-09 16:23:15 +00:00
tcp.h
telephony.h telephony: trivial: fix up email address 2008-11-11 09:30:23 -08:00
termios.h
textsearch_fsm.h [LIB]: Naive finite state machine based textsearch 2005-06-23 20:59:16 -07:00
textsearch.h
tfrc.h [DCCP] ccid3: Finer-grained resolution of sending rates 2006-12-11 14:34:42 -08:00
thermal.h
thread_info.h
threads.h cpumask: make CONFIG_NR_CPUS always valid. 2008-12-30 09:05:12 +10:30
tick.h cpumask: convert kernel time functions 2009-01-01 10:12:25 +10:30
tifm.h
time.h Merge branch 'timers/range-hrtimers' into v28-range-hrtimers-for-linus-v2 2008-10-22 09:48:06 +02:00
timer.h Add round_jiffies_up and related routines 2008-11-06 08:42:48 +01:00
timerfd.h flag parameters: NONBLOCK in timerfd_create 2008-07-24 10:47:29 -07:00
times.h
timex.h linux/timex.h: cleanup for userspace 2008-12-12 17:01:38 +01:00
tiocl.h
tipc_config.h
tipc.h [TIPC]: Added subscription cancellation capability 2006-10-18 19:55:22 -07:00
topology.h sched: add SD_BALANCE_NEWIDLE at MC and CPU level for sched_mc>0 2008-12-19 09:21:55 +01:00
toshiba.h
tracehook.h
tracepoint.h tracepoints: add DECLARE_TRACE() and DEFINE_TRACE() 2008-11-16 09:01:36 +01:00
transport_class.h
trdevice.h
tsacct_kern.h
tty_driver.h pty: simplify resize 2009-01-02 10:19:36 -08:00
tty_flip.h
tty_ldisc.h tty: Ldisc revamp 2008-07-20 17:12:34 -07:00
tty.h tty: Introduce some close helpers for ports 2009-01-02 10:19:40 -08:00
typecheck.h
types.h Get rid of CONFIG_LSF 2008-12-29 08:29:51 +01:00
uaccess.h
ucb1400.h
udf_fs_i.h
udp.h
uinput.h
uio_driver.h
uio.h remove odd and misleading comments from uio.h 2007-07-16 09:05:45 -07:00
ultrasound.h
un.h
unistd.h
unwind.h
usb_usual.h
usb.h USB: don't register endpoints for interfaces that are going away 2008-11-13 14:45:00 -08:00
usbdevice_fs.h
user_namespace.h User namespaces: set of cleanups (v2) 2008-11-24 18:57:41 -05:00
user.h
utime.h
uts.h
utsname.h
uwb.h uwb: improved MAS allocator and reservation conflict handling 2008-12-12 13:00:06 +00:00
vermagic.h
veth.h
vfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
via.h
video_decoder.h
video_encoder.h
video_output.h
videodev2.h V4L/DVB (10141): v4l2: debugging API changed to match against driver name instead of ID. 2009-01-02 17:11:52 -02:00
videodev.h
videotext.h
virtio_9p.h
virtio_balloon.h virtio: avoid implicit use of Linux page size in balloon interface 2008-12-30 09:26:04 +10:30
virtio_blk.h virtio_blk: check for hardsector size from host 2008-07-25 12:06:05 +10:00
virtio_config.h virtio: Rename set_features to finalize_features 2008-07-25 12:06:12 +10:00
virtio_console.h virtio_console: support console resizing 2008-12-30 09:26:10 +10:30
virtio_net.h virtio_net: VIRTIO_NET_F_MSG_RXBUF (imprive rcv buffer allocation) 2008-11-16 22:41:34 -08:00
virtio_pci.h virtio: Don't use PAGE_SIZE for vring alignment in virtio_pci. 2008-12-30 09:25:58 +10:30
virtio_ring.h virtio: hand virtio ring alignment as argument to vring_new_virtqueue 2008-12-30 09:26:03 +10:30
virtio_rng.h
virtio.h
vmalloc.h proc: move /proc/vmallocinfo to mm/vmalloc.c 2008-10-23 15:48:28 +04:00
vmstat.h proc: move /proc/zoneinfo boilerplate to mm/vmstat.c 2008-10-23 17:35:04 +04:00
vt_buffer.h
vt_kern.h
vt.h
w1-gpio.h
wait.h wait: kill is_sync_wait() 2008-10-16 11:21:31 -07:00
wanrouter.h
watchdog.h [WATCHDOG] add WDIOC_GETTIMELEFT ioctl 2006-06-20 19:00:30 +02:00
wireless.h
wlp.h wlp: start/stop radio on network interface up/down 2008-11-19 14:47:04 +00:00
wm97xx_batt.h
wm97xx.h
workqueue.h cpumask: introduce new API, without changing anything 2008-11-06 09:05:33 +01:00
writeback.h vfs: Add no_nrwrite_index_update writeback control flag 2008-10-16 10:09:17 -04:00
x25.h
xattr.h
xfrm.h xfrm: Notify changes in UDP encapsulation via netlink 2008-10-28 16:01:07 -07:00
xilinxfb.h
yam.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zconf.h
zlib.h
zorro_ids.h
zorro.h
zutil.h