linux-kernel-test/include/linux
Wolfgang Wander 1363c3cd86 [PATCH] Avoiding mmap fragmentation
Ingo recently introduced a great speedup for allocating new mmaps using the
free_area_cache pointer which boosts the specweb SSL benchmark by 4-5% and
causes huge performance increases in thread creation.

The downside of this patch is that it does lead to fragmentation in the
mmap-ed areas (visible via /proc/self/maps), such that some applications
that work fine under 2.4 kernels quickly run out of memory on any 2.6
kernel.

The problem is twofold:

  1) the free_area_cache is used to continue a search for memory where
     the last search ended.  Before the change new areas were always
     searched from the base address on.

     So now new small areas are cluttering holes of all sizes
     throughout the whole mmap-able region whereas before small holes
     tended to close holes near the base leaving holes far from the base
     large and available for larger requests.

  2) the free_area_cache also is set to the location of the last
     munmap-ed area so in scenarios where we allocate e.g.  five regions of
     1K each, then free regions 4 2 3 in this order the next request for 1K
     will be placed in the position of the old region 3, whereas before we
     appended it to the still active region 1, placing it at the location
     of the old region 2.  Before we had 1 free region of 2K, now we only
     get two free regions of 1K -> fragmentation.

The patch addresses thes issues by introducing yet another cache descriptor
cached_hole_size that contains the largest known hole size below the
current free_area_cache.  If a new request comes in the size is compared
against the cached_hole_size and if the request can be filled with a hole
below free_area_cache the search is started from the base instead.

The results look promising: Whereas 2.6.12-rc4 fragments quickly and my
(earlier posted) leakme.c test program terminates after 50000+ iterations
with 96 distinct and fragmented maps in /proc/self/maps it performs nicely
(as expected) with thread creation, Ingo's test_str02 with 20000 threads
requires 0.7s system time.

Taking out Ingo's patch (un-patch available per request) by basically
deleting all mentions of free_area_cache from the kernel and starting the
search for new memory always at the respective bases we observe: leakme
terminates successfully with 11 distinctive hardly fragmented areas in
/proc/self/maps but thread creating is gringdingly slow: 30+s(!) system
time for Ingo's test_str02 with 20000 threads.

Now - drumroll ;-) the appended patch works fine with leakme: it ends with
only 7 distinct areas in /proc/self/maps and also thread creation seems
sufficiently fast with 0.71s for 20000 threads.

Signed-off-by: Wolfgang Wander <wwc@rentec.com>
Credit-to: "Richard Purdie" <rpurdie@rpsys.net>
Signed-off-by: Ken Chen <kenneth.w.chen@intel.com>
Acked-by: Ingo Molnar <mingo@elte.hu> (partly)
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-21 18:46:16 -07:00
..
byteorder Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dvb Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hdlc Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
isdn Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
lockd Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mmc [PATCH] MMC: Proper MMC command classes support 2005-05-21 10:27:02 +01:00
mtd Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter_arp Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter_bridge Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter_ipv4 [NETFILTER]: Kill lockhelp.h 2005-06-21 14:01:30 -07:00
netfilter_ipv6 Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfsd Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
raid Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sunrpc Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
tc_act [PKT_SCHED]: Introduce simple actions. 2005-04-24 20:10:16 -07:00
tc_ematch [PKT_SCHED]: Allow socket attributes to be matched on via meta ematch 2005-06-08 15:10:48 -07:00
8250_pci.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
a.out.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ac97_codec.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
acct.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
acpi.h [PATCH] Include <linux/config.h> before testing CONFIG_ACPI 2005-06-06 17:02:03 -07:00
adb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
adfs_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
adfs_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
adfs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
affs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
affs_hardblocks.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
agp_backend.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
agpgart.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
aio_abi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
aio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
amifd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
amifdreg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
amigaffs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
apm_bios.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
arcdevice.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ata.h [PATCH] libata basic detection and errata for PATA->SATA bridges 2005-05-12 15:07:47 -04:00
atalk.h [ATALK]: endian annotations 2005-06-20 13:32:05 -07:00
atm_eni.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atm_he.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atm_idt77105.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atm_nicstar.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atm_suni.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atm_tcp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atm_zatm.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atm.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmapi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmarp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmbr2684.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmclip.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmdev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmioc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmlec.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmmpc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmppp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmsap.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmsvc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
attribute_container.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
audit.h AUDIT: Record working directory when syscall arguments are pathnames 2005-05-27 12:17:28 +01:00
auto_fs4.h [PATCH] autofs4: bump version number 2005-05-01 08:59:17 -07:00
auto_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
awe_voice.h [PATCH] include/linux/soundcard.h: endianness fix 2005-05-05 16:36:31 -07:00
ax25.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
b1lli.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
b1pcmcia.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
backing-dev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
backlight.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
baycom.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
bcd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
bfs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
binfmts.h [PATCH] make some things static 2005-05-05 16:36:47 -07:00
bio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
bitmap.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
bitops.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
blkdev.h [SCSI] remove requeue feature from blk_insert_request() 2005-05-20 12:53:28 -05:00
blkpg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
blockgroup_lock.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
bootmem.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
bpqether.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
buffer_head.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cache.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
capability.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
capi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cciss_ioctl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cd1400.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cdev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cdk.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cdrom.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
chio.h [SCSI] add scsi changer driver 2005-05-20 12:53:50 -05:00
circ_buf.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cobalt-nvram.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
coda_cache.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
coda_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
coda_linux.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
coda_proc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
coda_psdev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
coda.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
coff.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
com20020.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
compat_ioctl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
compat.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
compiler-gcc2.h [PATCH] uml: move va_copy conditional def 2005-05-01 08:58:54 -07:00
compiler-gcc3.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
compiler-gcc4.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
compiler-gcc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
compiler-intel.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
compiler.h [PATCH] Add deprecated_for_modules 2005-05-01 08:59:03 -07:00
completion.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
comstats.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
concap.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
config.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
console_struct.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
console.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
consolemap.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cpu.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cpufreq.h [CPUFREQ] fix up comment in cpufreq.h 2005-05-31 19:03:47 -07:00
cpumask.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cpuset.h [PATCH] cpuset: remove function attribute const 2005-04-16 15:25:59 -07:00
cramfs_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cramfs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
crc32.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
crc32c.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
crc-ccitt.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
crypto.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cryptohash.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ctype.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cuda.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cyclades.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cyclomx.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cycx_cfm.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cycx_drv.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cycx_x25.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dcache.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dcookies.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
debugfs.h [PATCH] debugfs: fix !debugfs prototypes 2005-04-18 21:57:34 -07:00
delay.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
devfs_fs_kernel.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
devfs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
device-mapper.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
device.h [PATCH] Driver core: change device_attribute callbacks 2005-06-20 15:15:31 -07:00
devpts_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dirent.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
divert.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dm9000.h [PATCH] DM9000 network driver 2005-05-15 18:31:07 -04:00
dm-ioctl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dma-mapping.h [SCSI] Add DMA mask constants other than 32 and 64 bit 2005-06-17 20:37:11 -05:00
dmapool.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dmi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dn.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dnotify.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dqblk_v1.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dqblk_v2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dqblk_xfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ds1286.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
dtlk.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
edd.h [PATCH] Increase number of e820 entries hard limit from 32 to 128 2005-05-01 08:58:51 -07:00
eeprom.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
efi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
efs_dir.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
efs_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
efs_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
efs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
efs_vh.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
eisa.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
elevator.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
elf-fdpic.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
elf.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
elfcore.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
err.h Fix get_unmapped_area sanity tests 2005-05-19 22:43:37 -07:00
errno.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
errqueue.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
etherdevice.h [NET]: Add is_multicast_ether_addr() in include/linux/etherdevice.h 2005-05-29 20:24:30 -07:00
ethtool.h [NET]: Add ethtool support for NETIF_F_HW_CSUM. 2005-05-29 20:27:24 -07:00
eventpoll.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ext2_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ext2_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ext3_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ext3_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ext3_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ext3_jbd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fadvise.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fb.h [PATCH] fbdev: Batch cmap changes at driver level 2005-05-01 08:59:22 -07:00
fcdevice.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fcntl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fd1772.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fddidevice.h [PATCH] update Ross Biro bouncing email address 2005-05-05 16:36:49 -07:00
fdreg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
file.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
filter.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
firmware.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
flat.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
font.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fs_struct.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fs.h [PATCH] libfs: add simple attribute files 2005-06-20 15:15:30 -07:00
fsl_devices.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ftape-header-segment.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ftape-vendors.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ftape.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
futex.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
gameport.h Input: 2005-05-28 02:11:12 -05:00
gen_stats.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
generic_serial.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
genhd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
gfp.h [PATCH] VM: add __GFP_NORECLAIM 2005-06-21 18:46:14 -07:00
hardirq.h [PATCH] irq code: Add coherence test for PREEMPT_ACTIVE 2005-05-28 16:46:14 -07:00
harrier_defs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hash.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hayesesp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hdlc.h [PATCH] Generic HDLC update 2005-05-15 22:24:12 -04:00
hdlcdrv.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hdpu_features.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hdreg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hdsmart.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hiddev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
highmem.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
highuid.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hippidevice.h [PATCH] update Ross Biro bouncing email address 2005-05-05 16:36:49 -07:00
hpet.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hpfs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
hugetlb.h [PATCH] Hugepage consolidation 2005-06-21 18:46:15 -07:00
hysdn_if.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-algo-bit.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-algo-ite.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-algo-pca.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-algo-pcf.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-algo-sgi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-algo-sibyte.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-dev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-id.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-sensor.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-sysfs.h [PATCH] I2C: add i2c sensor_device_attribute and macros 2005-06-20 15:15:36 -07:00
i2c-vid.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2o-dev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2o.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i8k.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ibmtr.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
icmp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
icmpv6.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ide.h [PATCH] convert IDE device drivers to driver-model 2005-05-26 14:55:34 +02:00
idr.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_arcnet.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_arp.h [PATCH] update Ross Biro bouncing email address 2005-05-05 16:36:49 -07:00
if_bonding.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_bridge.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_cablemodem.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_ec.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_eql.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_ether.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_fc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_fddi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_frad.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_hippi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_infiniband.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_ltalk.h [ATALK]: Add alloc_ltalkdev(). 2005-05-05 14:25:59 -07:00
if_packet.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_plip.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_ppp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_pppox.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_shaper.h [NET]: Fix locking in shaper driver. 2005-06-02 16:36:00 -07:00
if_slip.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_strip.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_tr.h [NET]: linux/if_tr.h needs asm/byteorder.h 2005-06-13 13:57:10 -07:00
if_tun.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_tunnel.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_vlan.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_wanpipe_common.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_wanpipe.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if.h [netdrvrs] Use netif_carrier_* instead of IFF_RUNNING 2005-05-12 19:45:25 -04:00
igmp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
in6.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
in_route.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
in.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
inet.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
inetdevice.h [IPV4]: Primary and secondary addresses 2005-05-29 20:23:46 -07:00
init_task.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
init.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
initrd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
input.h [PATCH] INPUT: move to use the new class code, instead of class_simple 2005-06-20 15:15:04 -07:00
interrupt.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ioc4_common.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ioctl32.h [PATCH] officially deprecate register_ioctl32_conversion 2005-04-16 15:25:48 -07:00
ioctl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ioport.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ip6_tunnel.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ip_mp_alg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ip.h [NET] Rename open_request to request_sock 2005-06-18 22:47:21 -07:00
ipc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ipmi_msgdefs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ipmi_smi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ipmi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ipsec.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ipv6_route.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ipv6.h [NET] Rename open_request to request_sock 2005-06-18 22:47:21 -07:00
ipx.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
irda.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
irq_cpustat.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
irq.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
isapnp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
isdn_divertif.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
isdn_ppp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
isdn.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
isdnif.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
isicom.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
iso_fs.h [PATCH] isofs includes sanitized 2005-04-25 18:32:12 -07:00
istallion.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ite_gpio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ixjuser.h [PATCH] ixj* - compile warning cleanup 2005-05-05 16:36:48 -07:00
jbd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
jffs2_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
jffs2_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
jffs2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
jffs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
jhash.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
jiffies.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
journal-head.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
joystick.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kallsyms.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kbd_diacr.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kbd_kern.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kdev_t.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kernel_stat.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kernel.h [PATCH] clean up kernel messages 2005-05-01 08:59:02 -07:00
kernelcapi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
key-ui.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
key.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
keyboard.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
keyctl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kfifo.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
klist.h [PATCH] add klist_node_attached() to determine if a node is on a list or not. 2005-06-20 15:15:17 -07:00
kmalloc_sizes.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kmod.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kobj_map.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kobject_uevent.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kobject.h [PATCH] kset_hotplug_ops->name shoudl return const char * 2005-06-20 15:15:01 -07:00
kprobes.h [PATCH] kprobes: Allow multiple kprobes at the same address 2005-05-05 16:36:39 -07:00
kref.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
kthread.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
lapb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
lcd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
libata.h Automatic merge of /spare/repo/linux-2.6/.git branch HEAD 2005-06-03 23:54:56 -04:00
libps2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
limits.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
linkage.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
linux_logo.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
list.h [PATCH] Fix comment in list.h that refers to nonexistent API 2005-04-16 15:25:51 -07:00
llc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
loop.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
lp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
major.h [SCSI] add scsi changer driver 2005-05-20 12:53:50 -05:00
matroxfb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mbcache.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mc6821.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mc146818rtc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mca-legacy.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mca.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mempolicy.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mempool.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
meye.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mii.h [BNX2]: New Broadcom gigabit network driver. 2005-05-26 13:03:09 -07:00
minix_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
miscdevice.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mm_inline.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mm.h [PATCH] node local per-cpu-pages 2005-06-21 18:46:16 -07:00
mman.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mmtimer.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mmzone.h [PATCH] node local per-cpu-pages 2005-06-21 18:46:16 -07:00
mod_devicetable.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
module.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
moduleloader.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
moduleparam.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mount.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mpage.h [PATCH] revert ext3-writepages-support-for-writeback-mode 2005-05-05 16:36:44 -07:00
mqueue.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mroute.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
msdos_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
msg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mtio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mv643xx.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
n_r3964.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
namei.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
namespace.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nbd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ncp_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ncp_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ncp_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ncp_mount.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ncp_no.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ncp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
net.h [NET]: Kill stray reference to sock->passcred. 2005-05-23 12:45:26 -07:00
netdevice.h [NET]: Fix HH_DATA_OFF. 2005-06-02 16:48:05 -07:00
netfilter_arp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter_bridge.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter_decnet.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter_ipv4.h [NETFILTER]: Kill nf_debug 2005-06-21 14:01:57 -07:00
netfilter_ipv6.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter_logging.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netfilter.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netlink.h [NETLINK]: netlink_callback structure needs 5 args not 4 2005-06-21 12:38:48 -07:00
netpoll.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
netrom.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs3.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs4_acl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs4_mount.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs4.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs_idmap.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs_mount.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs_page.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs_xdr.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfsd_idmap.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nls.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nmi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
node.h [PATCH] Driver core: unregister_node() for hotplug use 2005-06-20 15:15:29 -07:00
nodemask.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
notifier.h [BRIDGE]: features change notification 2005-05-29 14:13:47 -07:00
nubus.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
numa.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nvram.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
openprom_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
oprofile.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
page-flags.h [PATCH] count bounce buffer pages in vmstat 2005-05-01 08:58:37 -07:00
pagemap.h [PATCH] VM: add __GFP_NORECLAIM 2005-06-21 18:46:14 -07:00
pagevec.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
param.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
parport_pc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
parport.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
parser.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
patchkey.h [PATCH] include/linux/soundcard.h: endianness fix 2005-05-05 16:36:31 -07:00
pci_ids.h [TG3]: Fix 5700/5701 DMA corruption on Apple G4. 2005-06-08 14:13:14 -07:00
pci-acpi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pci-dynids.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pci.h [PATCH] PCI: drivers/pci/pci.c: remove pci_dac_set_dma_mask 2005-05-03 23:45:17 -07:00
pcieport_if.h [PATCH] fix u32 vs. pm_message_t in PCI, PCIE 2005-04-16 15:25:33 -07:00
percpu_counter.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
percpu.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
personality.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pfkeyv2.h [IPSEC]: Add XFRM_STATE_NOPMTUDISC flag 2005-06-20 13:21:43 -07:00
pg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
phonedev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pid.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pipe_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pkt_cls.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pkt_sched.h [PKT_SCHED] netem: allow random reordering (with fix) 2005-05-26 12:55:48 -07:00
pktcdvd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
platform.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pm.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pmu.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pnp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
pnpbios.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
poll.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
posix_acl_xattr.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
posix_acl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
posix_types.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
posix-timers.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ppdev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ppp_channel.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ppp_defs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ppp-comp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
prctl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
preempt.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
prefetch.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
prio_tree.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
proc_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
profile.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ps2esdi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ptrace.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
qic117.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
qnx4_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
qnxtypes.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
quota.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
quotaio_v1.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
quotaio_v2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
quotaops.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
radeonfb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
radix-tree.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ramfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
random.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
raw.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rbtree.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rcupdate.h [PATCH] Deprecate synchronize_kernel, GPL replacement 2005-05-01 08:59:04 -07:00
reboot_fixups.h [PATCH] x86 reboot: Add reboot fixup for gx1/cs5530a 2005-05-01 08:58:49 -07:00
reboot.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
reiserfs_acl.h [PATCH] reiserfs endianness: annotate little-endian objects 2005-05-01 08:59:18 -07:00
reiserfs_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
reiserfs_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
reiserfs_fs.h [PATCH] reiserfs endianness: sanitize reiserfs_key union 2005-05-01 08:59:19 -07:00
reiserfs_xattr.h [PATCH] reiserfs endianness: annotate little-endian objects 2005-05-01 08:59:18 -07:00
resource.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rmap.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
romfs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
root_dev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rose.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
route.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rslib.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rtc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rtnetlink.h [RTNETLINK]: Add RTA_(PUT|GET) shortcuts for u8, u16, and flag 2005-06-18 22:52:36 -07:00
rwsem-spinlock.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rwsem.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sc26198.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
scatterlist.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
scc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sched.h [PATCH] Avoiding mmap fragmentation 2005-06-21 18:46:16 -07:00
sctp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
scx200_gpio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
scx200.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdla_asy.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdla_chdlc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdla_fr.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdla_ppp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdla_x25.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdla.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdladrv.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdlapci.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sdlasfm.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
seccomp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
securebits.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
security.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
selection.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
selinux_netlink.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sem.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
seq_file.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
seqlock.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
serial167.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
serial_8250.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
serial_core.h [PATCH] Serial: Add uart_insert_char() 2005-05-09 23:21:59 +01:00
serial_reg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
serial.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
serialP.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
serio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
shm.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
shmem_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
signal.h [PATCH] Remove obsolete HAVE_ARCH_GET_SIGNAL_TO_DELIVER? 2005-06-12 20:43:21 -07:00
skbuff.h [NETFILTER]: Kill nf_debug 2005-06-21 14:01:57 -07:00
slab.h [SLAB] Introduce kmem_cache_name 2005-06-18 22:46:19 -07:00
smb_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smb_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smb_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smb_mount.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smbno.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smp_lock.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
smp.h [PATCH] smp_processor_id() cleanup 2005-06-21 18:46:13 -07:00
snmp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
socket.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sockios.h [PATCH] update Ross Biro bouncing email address 2005-05-05 16:36:49 -07:00
som.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sonet.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sonypi.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sort.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sound.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
soundcard.h [PATCH] include/linux/soundcard.h: endianness fix 2005-05-05 16:36:31 -07:00
spinlock.h [PATCH] spin_unlock_bh() and preempt_check_resched() 2005-05-21 10:46:48 -07:00
stallion.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
stat.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
statfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
stddef.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
stop_machine.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
string.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
stringify.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
superhyway.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
suspend.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
swap.h [PATCH] VM: early zone reclaim 2005-06-21 18:46:14 -07:00
swapops.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
synclink.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sys.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
syscalls.h [PATCH] consolidate sys_shmat 2005-05-01 08:59:12 -07:00
sysctl.h [IPV4]: Sysctl configurable icmp error source address. 2005-06-13 15:19:03 -07:00
sysdev.h [PATCH] pm_message_t: more fixes in common and i386 2005-04-16 15:25:24 -07:00
sysfs.h [PATCH] sysfs-iattr: add sysfs_setattr 2005-06-20 15:15:37 -07:00
sysrq.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sysv_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
tcp_diag.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
tcp.h [NET] Generalise tcp_listen_opt 2005-06-18 22:47:59 -07:00
telephony.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
termios.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
thread_info.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
threads.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ticable.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
time.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
timer.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
times.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
timex.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
tiocl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
topology.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
toshiba.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
transport_class.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
trdevice.h [PATCH] update Ross Biro bouncing email address 2005-05-05 16:36:49 -07:00
tty_driver.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
tty_flip.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
tty_ldisc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
tty.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
types.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
udf_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
udf_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
udf_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
udp.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ufs_fs_i.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ufs_fs_sb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ufs_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
uinput.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
uio.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ultrasound.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
umem.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
un.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
unistd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
usb_cdc.h [PATCH] USB: usb_cdc build fix 2005-04-18 17:39:21 -07:00
usb_ch9.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
usb_gadget.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
usb_gadgetfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
usb_otg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
usb_sl811.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
usb.h [PATCH] USB: move the usb hcd code to use the new class code. 2005-06-20 15:15:07 -07:00
usbdevice_fs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
user.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
utime.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
uts.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
utsname.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
vermagic.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
vfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
via.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
video_decoder.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
video_encoder.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
videodev2.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
videodev.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
videotext.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
vmalloc.h [PATCH] x86_64: Fixed guard page handling again in iounmap 2005-05-20 15:48:20 -07:00
vt_buffer.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
vt_kern.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
vt.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
wait.h [PATCH] Cleanup DEFINE_WAIT 2005-05-24 17:05:20 -07:00
wanpipe.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
wanrouter.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
watchdog.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
wavefront.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
wireless.h [PATCH] Wireless Extensions 18 (aka WPA) 2005-05-12 20:24:19 -04:00
workqueue.h [PATCH] re-export cancel_rearming_delayed_workqueue 2005-04-16 15:23:59 -07:00
writeback.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
x25.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
xattr_acl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
xattr.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
xfrm.h [IPSEC]: Add XFRM_STATE_NOPMTUDISC flag 2005-06-20 13:21:43 -07:00
yam.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zconf.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zftape.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zlib.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zorro_ids.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zorro.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zutil.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00