bianbu-linux-6.6/include/linux
Peter Zijlstra d670ec1317 posix-cpu-timers: Cure SMP wobbles
David reported:

  Attached below is a watered-down version of rt/tst-cpuclock2.c from
  GLIBC.  Just build it with "gcc -o test test.c -lpthread -lrt" or
  similar.

  Run it several times, and you will see cases where the main thread
  will measure a process clock difference before and after the nanosleep
  which is smaller than the cpu-burner thread's individual thread clock
  difference.  This doesn't make any sense since the cpu-burner thread
  is part of the top-level process's thread group.

  I've reproduced this on both x86-64 and sparc64 (using both 32-bit and
  64-bit binaries).

  For example:

  [davem@boricha build-x86_64-linux]$ ./test
  process: before(0.001221967) after(0.498624371) diff(497402404)
  thread:  before(0.000081692) after(0.498316431) diff(498234739)
  self:    before(0.001223521) after(0.001240219) diff(16698)
  [davem@boricha build-x86_64-linux]$ 

  The diff of 'process' should always be >= the diff of 'thread'.

  I make sure to wrap the 'thread' clock measurements the most tightly
  around the nanosleep() call, and that the 'process' clock measurements
  are the outer-most ones.

  ---
  #include <unistd.h>
  #include <stdio.h>
  #include <stdlib.h>
  #include <time.h>
  #include <fcntl.h>
  #include <string.h>
  #include <errno.h>
  #include <pthread.h>

  static pthread_barrier_t barrier;

  static void *chew_cpu(void *arg)
  {
	  pthread_barrier_wait(&barrier);
	  while (1)
		  __asm__ __volatile__("" : : : "memory");
	  return NULL;
  }

  int main(void)
  {
	  clockid_t process_clock, my_thread_clock, th_clock;
	  struct timespec process_before, process_after;
	  struct timespec me_before, me_after;
	  struct timespec th_before, th_after;
	  struct timespec sleeptime;
	  unsigned long diff;
	  pthread_t th;
	  int err;

	  err = clock_getcpuclockid(0, &process_clock);
	  if (err)
		  return 1;

	  err = pthread_getcpuclockid(pthread_self(), &my_thread_clock);
	  if (err)
		  return 1;

	  pthread_barrier_init(&barrier, NULL, 2);
	  err = pthread_create(&th, NULL, chew_cpu, NULL);
	  if (err)
		  return 1;

	  err = pthread_getcpuclockid(th, &th_clock);
	  if (err)
		  return 1;

	  pthread_barrier_wait(&barrier);

	  err = clock_gettime(process_clock, &process_before);
	  if (err)
		  return 1;

	  err = clock_gettime(my_thread_clock, &me_before);
	  if (err)
		  return 1;

	  err = clock_gettime(th_clock, &th_before);
	  if (err)
		  return 1;

	  sleeptime.tv_sec = 0;
	  sleeptime.tv_nsec = 500000000;
	  nanosleep(&sleeptime, NULL);

	  err = clock_gettime(th_clock, &th_after);
	  if (err)
		  return 1;

	  err = clock_gettime(my_thread_clock, &me_after);
	  if (err)
		  return 1;

	  err = clock_gettime(process_clock, &process_after);
	  if (err)
		  return 1;

	  diff = process_after.tv_nsec - process_before.tv_nsec;
	  printf("process: before(%lu.%.9lu) after(%lu.%.9lu) diff(%lu)\n",
		 process_before.tv_sec, process_before.tv_nsec,
		 process_after.tv_sec, process_after.tv_nsec, diff);
	  diff = th_after.tv_nsec - th_before.tv_nsec;
	  printf("thread:  before(%lu.%.9lu) after(%lu.%.9lu) diff(%lu)\n",
		 th_before.tv_sec, th_before.tv_nsec,
		 th_after.tv_sec, th_after.tv_nsec, diff);
	  diff = me_after.tv_nsec - me_before.tv_nsec;
	  printf("self:    before(%lu.%.9lu) after(%lu.%.9lu) diff(%lu)\n",
		 me_before.tv_sec, me_before.tv_nsec,
		 me_after.tv_sec, me_after.tv_nsec, diff);

	  return 0;
  }

This is due to us using p->se.sum_exec_runtime in
thread_group_cputime() where we iterate the thread group and sum all
data. This does not take time since the last schedule operation (tick
or otherwise) into account. We can cure this by using
task_sched_runtime() at the cost of having to take locks.

This also means we can (and must) do away with
thread_group_sched_runtime() since the modified thread_group_cputime()
is now more accurate and would deadlock when called from
thread_group_sched_runtime().

Aside of that it makes the function safe on 32 bit systems. The old
code added t->se.sum_exec_runtime unprotected. sum_exec_runtime is a
64bit value and could be changed on another cpu at the same time.

Reported-by: David Miller <davem@davemloft.net>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: stable@kernel.org
Link: http://lkml.kernel.org/r/1314874459.7945.22.camel@twins
Tested-by: David Miller <davem@davemloft.net>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
2011-09-30 14:07:06 +02:00
..
amba Merge branch 'next' into for-linus-3.0 2011-07-27 20:43:21 +05:30
bcma bcma: inform drivers about translation bits needed for the core 2011-07-22 09:51:12 -04:00
byteorder include: replace unifdef-y with header-y 2010-08-14 22:26:51 +02:00
caif caif: bugfix - add caif headers for userspace usage. 2011-01-30 01:14:14 -08:00
can can: make struct can_proto const 2011-05-04 14:08:36 -07:00
ceph Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client 2011-07-26 13:38:50 -07:00
crush ceph: factor out libceph from Ceph file system 2010-10-20 15:37:28 -07:00
decompress Fix common misspellings 2011-03-31 11:26:23 -03:00
dvb Revert "[media] dvb/audio.h: Remove definition for AUDIO_GET_PTS" 2011-07-27 17:52:58 -03:00
hdlc [PATCH] Modularize generic HDLC 2006-09-26 17:40:24 -04:00
i2c Merge branches 'omap/prcm' and 'omap/mfd' of git+ssh://master.kernel.org/pub/scm/linux/kernel/git/arm/linux-arm-soc into next/devel-2 2011-07-17 21:48:22 +02:00
input Input: add support for Kionix KXTJ9 accelerometer 2011-07-06 21:23:54 -07:00
isdn Fix common misspellings 2011-03-31 11:26:23 -03:00
lockd lockd: Clean up nlmsvc_lookup_host() 2010-12-16 12:37:26 -05:00
mfd drivers/video/backlight/aat2870_bl.c: fix setting max_current 2011-08-03 14:25:22 -10:00
mlx4 atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
mmc mmc: remove unused "ddr" parameter in struct mmc_ios 2011-08-13 14:50:32 -04:00
mtd Merge branch 'linux-next' of git://git.infradead.org/ubi-2.6 2011-07-22 13:09:55 -07:00
netfilter Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-next-2.6 2011-07-21 12:39:35 -07:00
netfilter_arp
netfilter_bridge Fix common misspellings 2011-03-31 11:26:23 -03:00
netfilter_ipv4 netfilter: xtables: add missing header inclusions for headers_check 2011-01-20 17:50:17 +01:00
netfilter_ipv6 netfilter: xtables: add missing header inclusions for headers_check 2011-01-20 17:50:17 +01:00
nfc NFC: Driver for NXP Semiconductors PN544 NFC chip. 2011-01-13 08:03:19 -08:00
nfsd nfsd: Remove deprecated nfsctl system call and related code. 2011-07-15 18:58:42 -04:00
platform_data Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/staging 2011-07-30 08:57:57 -10:00
power power_supply: MAX17042: Support additional properties 2011-07-08 17:01:58 +04:00
raid md: load/store badblock list from v1.x metadata 2011-07-28 11:31:47 +10:00
regulator regulator: fix kernel-doc warning in consumer.h 2011-09-08 14:43:03 -07:00
rtc rtc-m48t59: allow externally mapped ioaddr 2008-09-03 15:41:57 -07:00
spi mcp23s08: get rid of setup/teardown callbacks 2011-07-15 13:54:17 -06:00
ssb Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2011-07-25 13:56:39 -07:00
sunrpc Merge branch 'nfs-for-3.1' of git://git.linux-nfs.org/projects/trondmy/linux-nfs 2011-07-27 13:23:02 -07:00
tc_act net/sched: add ACT_CSUM action to update packets checksums 2010-08-20 01:42:59 -07:00
tc_ematch net: remove SK_ROUTE_CAPS from meta ematch 2011-07-14 14:45:59 -07:00
unaligned include/linux/unaligned/packed_struct.h: use __packed 2011-01-13 08:03:08 -08:00
usb Merge branch 'for-next' of master.kernel.org:/pub/scm/linux/kernel/git/balbi/usb into usb-next 2011-07-08 15:30:55 -07:00
uwb Fix common misspellings 2011-03-31 11:26:23 -03:00
wimax
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 Remove #ifdef CONFIG_ARCH_SUPPORTS_AOUT from <linux/a.out.h> 2008-06-16 10:20:58 -07:00
ac97_codec.h scheduled OSS driver removal 2008-02-06 10:41:02 -08:00
acct.h sysctl extern cleanup: acct 2010-03-12 15:53:10 -08:00
acpi.h Merge branch 'apei-release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6 2011-08-03 21:53:27 -10:00
acpi_io.h ACPI: Introduce acpi_os_get_iomem() 2011-02-24 19:58:42 +01:00
acpi_pmtmr.h x86: Remove stale pmtimer_64.c 2010-10-15 21:18:59 +02:00
adb.h drivers/macintosh: Various cleanups 2008-07-01 11:28:06 +10:00
adfs_fs.h Cleanup of adfs headers 2009-06-17 00:36:36 -04:00
aer.h PCI: PCIe AER: add aer_recover_queue 2011-07-22 08:25:37 -07:00
affs_hardblocks.h
agp_backend.h agp: kill agp_rebind_memory 2010-11-23 20:14:46 +00:00
agpgart.h make exported headers use strict posix types 2009-03-26 18:14:14 +01:00
ahci_platform.h ahci_platform: Provide for vendor specific init 2010-08-01 19:36:03 -04:00
aio.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
aio_abi.h headers_check fix: linux/aio_abi.h 2009-01-30 23:38:03 +05:30
alarmtimer.h timers: Improve alarmtimer comments and minor fixes 2011-04-28 13:39:17 -07:00
altera_jtaguart.h
altera_uart.h altera_uart: Fix missing prototype for registering an early console 2010-10-22 10:20:08 -07:00
amd-iommu.h iommu/amd: Move missing parts to drivers/iommu 2011-06-21 10:49:31 +02: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
anon_inodes.h anonfd: fix missing declaration 2011-07-20 20:47:43 -04:00
apm-emulation.h [APM] Add shared version of APM emulation 2007-02-09 17:08:57 +00:00
apm_bios.h apm_event{,info}_t are userspace types 2007-12-17 19:28:16 -08:00
arcdevice.h net: remove interrupt.h inclusion from netdevice.h 2011-06-06 22:55:11 -07:00
arcfb.h [PATCH] Framebuffer driver for Arc LCD board 2005-06-21 19:07:41 -07:00
async.h async: Rename _special -> _domain for clarity. 2009-02-08 09:56:11 -08:00
async_tx.h dmaengine: add fence support 2009-09-08 17:42:50 -07:00
ata.h libata: Use 'bool' return value for ata_id_XXX 2011-03-15 02:42:32 -04:00
ata_platform.h sata_mv: mbus decode window support 2008-03-27 14:51:39 -04:00
atalk.h Revert "appletalk: move to staging" 2011-01-31 14:03:00 -08:00
ath9k_platform.h ath9k: add external_reset callback to ath9k_platfom_data for AR9330 2011-06-22 16:09:57 -04:00
atm.h atm: 32-bit ioctl compatibility 2008-12-03 22:12:38 -08: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
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 atm: Cleanup atm_tcp.h and atm.h for userspace. 2008-05-14 23:24:09 -07:00
atm_zatm.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 [ATM]: atmarp.h needs to always include linux/types.h 2007-02-08 16:01:09 -08:00
atmbr2684.h headers_check fix: linux/atmbr2684.h 2009-01-30 23:39:08 +05:30
atmclip.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmdev.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
atmel-mci.h atmel-mci: change use of dma slave interface 2009-12-15 08:53:35 -08:00
atmel-pwm-bl.h fbdev: LCD backlight driver using Atmel PWM driver 2008-07-24 10:47:41 -07:00
atmel-ssc.h Driver for the Atmel on-chip SSC on AT32AP and AT91 2007-10-17 08:42:47 -07:00
atmel_pdc.h [ARM] 4151/1: AT91 / AVR32: Move at91_pdc.h to linux/atmel_pdc.h 2007-02-08 15:13:47 +00:00
atmel_pwm.h Basic PWM driver for AVR32 and AT91 2008-02-08 09:22:38 -08:00
atmel_serial.h [ARM] 4660/3: at91: allow selecting UART for early kernel messages 2008-02-04 13:16:39 +00:00
atmel_tc.h atmel_tc library 2008-03-04 13:41:23 +01:00
atmioc.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
atmlec.h make most exported headers use strict integer types 2009-03-26 18:14:15 +01:00
atmmpc.h make most exported headers use strict integer types 2009-03-26 18:14:15 +01: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
atomic.h atomic: Update comments in atomic.h 2011-07-26 16:49:47 -07:00
attribute_container.h driver model: constify attribute groups 2009-09-15 09:50:47 -07:00
audit.h netfilter: add SELinux context support to AUDIT target 2011-06-30 13:31:57 +02:00
auto_dev-ioctl.h autofs4: fix kernel includes 2009-04-01 08:59:23 -07:00
auto_fs.h autofs/autofs4: Move compat_ioctl handling into fs 2010-08-09 00:13:34 +02:00
auto_fs4.h autofs4: Bump version 2011-01-15 20:07:45 -05:00
auxvec.h ELF: implement AT_RANDOM for glibc PRNG seeding 2009-01-08 08:31:12 -08:00
average.h lib: Improve EWMA efficiency by using bitshifts 2010-12-06 15:58:43 -05: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
backing-dev.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
backlight.h backlight: add backlight type 2011-03-22 17:43:59 -07:00
basic_mmio_gpio.h gpio/basic_mmio: add missing include of spinlock_types.h 2011-06-10 08:46:26 -06:00
baycom.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
bcd.h include/linux/bcd.h: remove comments 2008-10-20 08:52:42 -07:00
bch.h lib: add shared BCH ECC library 2011-03-11 14:25:50 +00:00
bfin_mac.h netdev: bfin_mac: let boards set vlan masks 2011-01-10 13:31:14 -08:00
bfs_fs.h headers_check fix: linux/bfs_fs.h 2009-01-30 23:40:06 +05:30
binfmts.h consolidate BINPRM_FLAGS_ENFORCE_NONDUMP handling 2011-07-20 01:43:10 -04:00
bio.h block: biovec_slab vs. CONFIG_BLK_DEV_INTEGRITY 2011-03-08 08:28:01 +01:00
bit_spinlock.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
bitmap.h Merge branch 'apei' into apei-release 2011-08-03 11:30:42 -04:00
bitops.h arch: remove CONFIG_GENERIC_FIND_{NEXT_BIT,BIT_LE,LAST_BIT} 2011-05-26 17:12:38 -07:00
bitrev.h lib: export bitrev16 2008-06-06 11:29:10 -07:00
blk-iopoll.h block: make blk_iopoll_prep_sched() follow normal 0/1 return convention 2009-09-11 14:33:32 +02:00
blk_types.h Move some REQ flags to the common bio/request area 2011-08-11 10:36:03 +02:00
blkdev.h block: fix flush machinery for stacking drivers with differring flush flags 2011-08-15 21:37:25 +02:00
blkpg.h linux/blkpg.h needs <linux/compiler.h> for __user 2006-04-27 16:46:56 +01:00
blktrace_api.h blktrace: add FLUSH/FUA support 2011-08-11 10:36:05 +02:00
blockgroup_lock.h
bootmem.h memblock/nobootmem: allow alloc_bootmem() to take 0 as low limit 2011-05-25 08:39:30 -07:00
bottom_half.h softirq: remove useless function __local_bh_enable 2008-11-28 12:38:38 +01:00
bpqether.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
brcmphy.h broadcom: Add 5241 support 2010-06-24 21:30:09 -07:00
bsearch.h lib: Add generic binary search function to the kernel. 2011-05-19 16:55:27 +09:30
bsg-lib.h block: add bsg helper library 2011-07-31 22:05:09 +02:00
bsg.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6 2009-03-28 13:30:43 -07:00
btree-128.h [LogFS] add new flash file system 2009-11-20 20:13:39 +01:00
btree-type.h
btree.h [LogFS] add new flash file system 2009-11-20 20:13:39 +01:00
buffer_head.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
bug.h headers: move module_bug_finalize()/module_bug_cleanup() definitions into module.h 2009-06-16 19:47:48 -07:00
c2port.h include/linux/c2port.h: remove wrong and never used macros 2011-05-25 08:39:43 -07:00
cache.h Rename .data.cacheline_aligned to .data..cacheline_aligned. 2010-03-03 11:25:58 +01:00
can.h [CAN]: Add PF_CAN core module 2008-01-28 14:54:10 -08:00
capability.h Merge branch 'next' into for-linus 2011-05-24 22:55:24 +10:00
capi.h include of <linux/types.h> is preferred over <asm/types.h> 2009-01-15 16:39:41 -08:00
cb710.h cb710: use SG_MITER_TO_SG/SG_MITER_FROM_SG 2009-07-31 12:28:46 +02:00
cciss_defs.h cciss: Consolidate duplicate bits in cciss_cmd.h & cciss_ioctl.h 2010-02-22 13:44:45 +01:00
cciss_ioctl.h cciss: Consolidate duplicate bits in cciss_cmd.h & cciss_ioctl.h 2010-02-22 13:44:45 +01:00
cd1400.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cdev.h fs/char_dev.c: remove unused cdev_index() 2011-01-13 08:03:17 -08:00
cdk.h Fix common misspellings 2011-03-31 11:26:23 -03:00
cdrom.h cdrom: add ->check_events() support 2010-12-16 17:53:38 +01:00
cfag12864b.h Fix common misspellings 2011-03-31 11:26:23 -03:00
cgroup.h rcu: treewide: Do not use rcu_read_lock_held when calling rcu_dereference_check 2011-07-08 22:21:58 +02:00
cgroup_subsys.h cgroup: remove the ns_cgroup 2011-05-26 17:12:34 -07:00
cgroupstats.h headers_check fix: linux/cgroupstats.h 2009-01-30 23:44:41 +05:30
chio.h tree-wide: fix assorted typos all over the place 2009-12-04 15:39:55 +01:00
circ_buf.h Document Linux's circular buffering capabilities 2010-03-24 16:31:22 -07:00
cleancache.h mm: cleancache core ops functions and config 2011-05-26 10:01:36 -06:00
clk.h [ARM] 5536/1: Move clk_add_alias() to arch/arm/common/clkdev.c 2009-06-04 17:45:43 +01:00
clkdev.h ARM: 6483/1: arm & sh: factorised duplicated clkdev.c 2010-11-26 10:51:04 +00:00
clockchips.h clockevents: Provide interface to reconfigure an active clock event device 2011-05-19 14:24:16 +02:00
clocksource.h Merge branch 'x86-vdso-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2011-07-22 17:05:15 -07:00
cm4000_cs.h Fix common misspellings 2011-03-31 11:26:23 -03:00
cn_proc.h connector: add an event for monitoring process tracers 2011-07-18 21:38:33 +02:00
cnt32_to_63.h
coda.h coda: remove CODA_FS_OLD_API 2008-07-25 10:53:33 -07:00
coda_psdev.h Coda: replace BKL with mutex 2010-10-25 08:02:40 -07:00
coff.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
com20020.h com20020: Fix allyesconfig build failure. 2009-01-23 22:28:48 -08:00
compaction.h mm: compaction: prevent kswapd compacting memory to reduce CPU usage 2011-03-22 17:44:00 -07:00
compat.h All Arch: remove linkage for sys_nfsservctl system call 2011-08-26 15:09:58 -07:00
compiler-gcc.h sparse: define __must_be_array() for __CHECKER__ 2011-05-25 08:39:46 -07:00
compiler-gcc3.h include/linux/compiler-gcc*.h: unify macro definitions 2011-03-22 17:44:10 -07:00
compiler-gcc4.h sparse: Undef __compiletime_{warning,error} if __CHECKER__ is defined 2011-05-25 08:39:47 -07:00
compiler-intel.h Force erroneous inclusions of compiler-*.h files to be errors 2007-10-17 08:42:47 -07:00
compiler.h rcu: define __rcu address space modifier for sparse 2010-08-19 17:17:59 -07:00
completion.h sched: Change wait_for_completion_*_timeout() to return a signed long 2011-01-05 14:15:50 +01:00
comstats.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
concap.h Remove "#ifdef __KERNEL__" checks from unexported headers 2008-04-30 08:29:54 -07:00
configfs.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
connector.h MAINTAINERS: Evgeniy has moved 2011-08-25 16:25:33 -07:00
console.h console: rename acquire/release_console_sem() to console_lock/unlock() 2011-01-26 10:50:06 +10:00
console_struct.h tty: Move the vt_tty field from the vc_data into the standard tty_port 2010-08-10 13:47:42 -07:00
consolemap.h Make console charset translation optional 2008-06-04 14:56:12 +01:00
const.h x86: add _AT() macro to conditionally cast 2008-01-30 13:32:42 +01:00
cordic.h lib: cordic: add library module providing cordic angle calculation 2011-06-03 15:01:07 -04:00
coredump.h Un-inline the core-dump helper functions 2010-10-14 14:32:06 -07:00
cper.h Fix common misspellings 2011-03-31 11:26:23 -03:00
cpu.h notifiers: cpu: move cpu notifiers into cpu.h 2011-07-25 20:57:14 -07:00
cpu_rmap.h lib: cpu_rmap: CPU affinity reverse-mapping 2011-01-24 14:51:56 -08:00
cpufreq.h cpufreq: expose a cpufreq_quick_get_max routine 2011-06-28 13:54:26 -07:00
cpuidle.h cpuidle: stop depending on pm_idle 2011-08-03 19:06:37 -04:00
cpumask.h cpumask: add cpumask_var_t documentation 2011-07-26 16:49:44 -07:00
cpuset.h cpuset: Fix cpuset_cpus_allowed_fallback(), don't update tsk->rt.nr_cpus_allowed 2011-05-28 17:02:57 +02:00
cramfs_fs.h cramfs: hide function prototypes behind __KERNEL__ macro 2011-01-13 08:03:22 -08:00
cramfs_fs_sb.h
crash_dump.h fs/proc/vmcore.c: add hook to read_from_oldmem() to check for non-ram pages 2011-05-26 17:12:37 -07:00
crc-ccitt.h Remove "#ifdef __KERNEL__" checks from unexported headers 2008-04-30 08:29:54 -07:00
crc-itu-t.h
crc-t10dif.h [SCSI] lib: Add support for the T10 (SCSI) Data Integrity Field CRC 2008-07-12 08:22:32 -05:00
crc7.h CRC7 support 2007-07-17 10:23:04 -07:00
crc8.h lib: crc8: add new library module providing crc8 algorithm 2011-06-03 15:01:06 -04:00
crc16.h [PATCH] crc16: remove w1 specific comments. 2005-09-12 08:48:08 -07:00
crc32.h crc32: add missed brackets in macro 2011-03-22 17:44:15 -07:00
crc32c.h libcrc32c: Add crc32c_le macro 2008-12-25 11:01:43 +11:00
cred.h cred: use 'const' in get_current_{user,groups} 2011-08-08 11:33:23 -07:00
crypto.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
cryptohash.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2011-08-06 22:12:37 -07:00
cs5535.h x86, olpc: Add XO-1 RTC driver 2011-07-06 14:44:42 -07:00
ctype.h lib: make _tolower() public 2011-07-25 20:57:16 -07:00
cuda.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cyclades.h serial: move delta_msr_wait into the tty_port 2009-09-19 13:13:31 -07:00
cyclomx.h Don't include linux/config.h from anywhere else in include/ 2006-04-26 12:56:16 +01:00
cycx_cfm.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
cycx_drv.h [PATCH] drivers/net/wan/: possible cleanups 2005-09-14 08:36:54 -04:00
cycx_x25.h
davinci_emac.h net: davinci_emac:Fix translation logic for buffer descriptor 2011-03-22 19:25:05 -07:00
dca.h dca: registering requesters in multiple dca domains 2009-09-10 10:00:05 -07:00
dcache.h vfs: renumber DCACHE_xyz flags, remove some stale ones 2011-08-06 22:52:40 -07:00
dcbnl.h dcbnl: Aggregated CEE GET operation 2011-07-05 23:42:17 -07:00
dccp.h net: remove interrupt.h inclusion from netdevice.h 2011-06-06 22:55:11 -07:00
dcookies.h headers: path.h redux 2011-01-10 08:51:44 -08:00
debug_locks.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
debugfs.h Add x64 support to debugfs 2010-05-19 22:41:57 -04:00
debugobjects.h debugobjects: Add hint for better object identification 2011-03-08 16:10:38 +01:00
delay.h timer: Added usleep_range timer 2010-08-04 11:00:45 +02:00
delayacct.h include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h 2010-03-30 22:02:32 +09:00
device-mapper.h dm table: share target argument parsing functions 2011-08-02 12:32:04 +01:00
device.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
device_cgroup.h devcgroup_inode_permission: take "is it a device node" checks to inlined wrapper 2011-06-20 10:46:04 -04:00
devpts_fs.h Add an instance parameter devpts interfaces 2008-10-13 09:51:43 -07:00
dio.h treewide: Convert uses of struct resource to resource_size(ptr) 2011-06-10 14:55:36 +02:00
dirent.h remove the in-kernel struct dirent{,64} 2008-07-25 10:53:34 -07:00
display.h fbdev: display class 2007-05-08 11:15:26 -07:00
dlm.h dlm: Fix dlm lock status block comment in dlm.h 2010-09-07 14:17:10 -05:00
dlm_device.h dlm: allow multiple lockspace creates 2008-08-28 11:49:15 -05:00
dlm_netlink.h make most exported headers use strict integer types 2009-03-26 18:14:15 +01:00
dlm_plock.h dlm: make plock operation killable 2011-05-23 10:47:06 -05:00
dlmconstants.h dlm: common max length definitions 2008-04-21 11:22:29 -05:00
dm-dirty-log.h dm log: add flush callback fn 2009-12-10 23:52:01 +00:00
dm-io.h dm io: use fixed initial mempool size 2011-05-29 13:03:09 +01:00
dm-ioctl.h dm ioctl: fill in device parameters in more ioctls 2011-08-02 12:32:06 +01:00
dm-kcopyd.h dm snapshot: skip reading origin when overwriting complete chunk 2011-08-02 12:32:04 +01:00
dm-log-userspace.h dm log userspace: add version number to comms 2011-01-13 19:59:52 +00:00
dm-region-hash.h dm raid1: remove bio_endio from dm_rh_mark_nosync 2009-12-10 23:52:05 +00:00
dm9000.h Fix spelling of 'platform' in comments and doc 2010-02-05 12:22:34 +01:00
dma-attrs.h powerpc/cell: Add DMA_ATTR_WEAK_ORDERING dma attribute and use in Cell IOMMU code 2008-07-22 10:39:36 +10:00
dma-debug.h dma-debug: add dma_debug_resize_entries() to adjust the number of dma_debug_entries 2009-04-15 12:22:37 +02:00
dma-direction.h net: remove mm.h inclusion from netdevice.h 2011-06-21 19:17:20 -07:00
dma-mapping.h include/linux/dma-mapping.h: remove DMA_xxBIT_MASK macros 2011-07-26 16:49:45 -07:00
dma_remapping.h intel-iommu: Enable super page (2MiB, 1GiB, etc.) support 2011-06-01 12:26:35 +01:00
dmaengine.h net: remove mm.h inclusion from netdevice.h 2011-06-21 19:17:20 -07:00
dmapool.h devres: device resource management 2007-02-09 17:39:36 -05:00
dmar.h dmar, x86: Use function stubs when CONFIG_INTR_REMAP is disabled 2010-11-26 09:57:36 +01:00
dmi.h firmware: Add DMI entry types to the headers 2011-02-25 12:00:34 -08:00
dn.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
dnotify.h dnotify: move dir_notify_enable declaration 2010-07-28 09:59:01 -04:00
dns_resolver.h DNS: Separate out CIFS DNS Resolver code 2010-08-05 17:17:51 +00:00
dqblk_qtree.h quota: Split off quota tree handling into a separate file 2009-01-05 08:40:21 -08:00
dqblk_v1.h quota: Unexport dqblk_v1.h and dqblk_v2.h 2009-01-05 08:40:25 -08:00
dqblk_v2.h quota: Unexport dqblk_v1.h and dqblk_v2.h 2009-01-05 08:40:25 -08:00
dqblk_xfs.h quota: Clean up the namespace in dqblk_xfs.h 2010-07-21 16:01:46 +02:00
drbd.h drbd: Fix spelling 2011-05-24 10:21:29 +02:00
drbd_limits.h drbd: fix limit define, we support 1 PiByte now 2011-06-30 09:23:45 +02:00
drbd_nl.h drbd: --force option for disconnect 2011-03-10 11:35:17 +01:00
drbd_tag_magic.h drbd: Fix spelling 2011-05-24 10:21:29 +02:00
ds1286.h MIPS: IP22/28: Switch over to RTC class driver 2008-10-15 12:46:51 +01:00
ds2782_battery.h
ds17287rtc.h Remove unnecessary includes of spinlock.h under include/linux 2007-07-16 09:05:42 -07:00
dtlk.h cleanup console_print() 2009-09-14 17:41:42 -07:00
dw_apb_timer.h clocksource: apb: Share APB timer code with other platforms 2011-06-27 15:16:21 -07:00
dw_dmac.h dmaengine/dw_dmac: Update maintainer-ship 2011-05-25 18:30:37 +05:30
dynamic_debug.h jump label: Introduce static_branch() interface 2011-04-04 12:48:08 -04:00
ecryptfs.h eCryptfs: export global eCryptfs definitions to include/linux/ecryptfs.h 2011-06-27 09:11:02 -04:00
edac.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
edac_mce.h edac_mce: Add an interface driver to report mce errors via edac 2010-05-10 11:44:49 -03:00
edd.h headers_check fix: linux/edd.h 2009-01-30 23:46:40 +05:30
eeprom_93cx6.h
eeprom_93xx46.h misc/eeprom: add driver for microwire 93xx46 EEPROMs 2011-07-25 20:57:16 -07:00
efi.h Merge branch 'pstore-efi' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6 2011-08-01 13:40:51 -10:00
efs_fs_sb.h
efs_vh.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
eisa.h eisa: remove driver_data direct access of struct device 2009-06-15 21:30:26 -07:00
elevator.h iosched: prevent aliased requests from starving other I/O 2011-06-02 21:19:05 +02:00
elf-em.h mn10300: add the MN10300/AM33 architecture to the kernel 2008-02-08 09:22:30 -08:00
elf-fdpic.h
elf.h ARM: 6882/1: ELF: Define new core note type for VFP registers 2011-05-14 21:36:55 +01:00
elfcore-compat.h elfcore-compat fix uid/gid types 2008-02-29 08:06:37 -08:00
elfcore.h linux/elfcore.h: hide kernel functions 2010-05-21 20:29:10 -07:00
elfnote.h remove __attribute_used__ 2008-01-28 23:21:18 +01:00
enclosure.h [SCSI] enclosure: fix oops while iterating enclosure_status array 2009-12-10 08:54:14 -06:00
err.h include/linux/err.h: add a function to cast error-pointers to a return value 2011-03-22 17:44:11 -07:00
errno.h Better documentation for ERESTARTSYS 2007-06-01 08:18:29 -07:00
errqueue.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
etherdevice.h net: Push protocol type directly down to header_ops->cache() 2011-07-13 02:29:59 -07:00
ethtool.h net: add external loopback test in ethtool self test 2011-06-30 22:32:49 -07:00
eventfd.h eventfd - allow atomic read and waitqueue remove 2010-01-25 12:26:38 -02:00
eventpoll.h Fix common misspellings 2011-03-31 11:26:23 -03:00
exportfs.h Fix common misspellings 2011-03-31 11:26:23 -03:00
ext2_fs.h ext2: include fs.h into ext2_fs.h 2011-06-25 17:29:52 +02:00
ext2_fs_sb.h ext2: Add ext2_sb_info s_lock spinlock 2010-05-21 19:30:39 +02:00
ext3_fs.h Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs-2.6 2011-07-26 11:34:40 -07:00
ext3_fs_i.h ext3: fix broken handling of EXT3_STATE_NEW 2010-03-29 14:30:19 -07:00
ext3_fs_sb.h ext3: Replace lock/unlock_super() with an explicit lock for resizing 2009-12-23 13:44:12 +01:00
ext3_jbd.h ext3: quota macros cleanup [V2] 2009-12-23 13:33:54 +01:00
f75375s.h hwmon: (f75375s) Allow setting up fans with platform_data 2007-11-08 08:42:46 -05:00
fadvise.h [PATCH] sys_sync_file_range() 2006-03-31 12:18:54 -08:00
falloc.h fs: add hole punching to fallocate 2011-01-12 20:16:43 -05:00
fanotify.h fanotify: split version into version and metadata_len 2010-12-15 13:56:33 -05:00
fault-inject.h fault-injection: add ability to export fault_attr in arbitrary directory 2011-08-03 14:25:20 -10:00
fb.h fs: push i_mutex and filemap_write_and_wait down into ->fsync() handlers 2011-07-20 20:47:59 -04:00
fcdevice.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
fcntl.h New AT_... flag: AT_EMPTY_PATH 2011-03-14 19:12:20 -04:00
fd.h compat_ioctl: fix make headers_check regression 2011-07-07 08:18:18 +02:00
fddidevice.h fddi: convert to new network device ops 2008-11-20 20:29:48 -08:00
fdreg.h Update broken web addresses in the kernel. 2010-10-18 11:03:14 +02:00
fdtable.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
fec.h net/fec: add mac field into platform data and consolidate fec_get_mac 2011-01-09 15:42:55 -08:00
fib_rules.h net 03/05: fib_rules: add oif classification 2009-12-03 12:14:36 -08:00
fiemap.h fiemap: Add new extent flag FIEMAP_EXTENT_SHARED 2009-12-17 20:55:57 -08:00
file.h New kind of open files - "location only". 2011-03-15 02:21:45 -04:00
filter.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
fips.h random: Add optional continuous repetition test to entropy store based rngs 2009-06-18 19:50:21 +08:00
firewire-cdev.h firewire: cdev: ABI documentation enhancements 2011-07-16 07:24:32 +02:00
firewire-constants.h firewire: cdev: fix cut+paste mistake in disclaimer 2010-04-15 22:18:36 +02:00
firewire.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
firmware-map.h headers: kobject.h redux 2011-01-10 08:51:44 -08:00
firmware.h firmware_classs: change val uevent's type to bool 2011-02-03 15:39:17 -08:00
flat.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
flex_array.h flex_array: avoid divisions when accessing elements 2011-05-26 17:12:33 -07:00
font.h fbcon: font setting should check limitation of driver 2007-05-08 11:15:31 -07:00
freezer.h workqueue, freezer: unify spelling of 'freeze' + 'able' to 'freezable' 2011-02-16 17:48:59 +01:00
fs.h lockdep: Add helper function for dir vs file i_mutex annotation 2011-08-25 10:50:18 -07:00
fs_enet_pd.h net: Rework fs_enet driver to use of_mdio infrastructure 2009-04-27 02:53:51 -07:00
fs_stack.h VFS/fsstack: handle 32-bit smp + preempt + large files in fsstack_copy_inode_size 2009-12-17 10:58:17 -05:00
fs_struct.h fs: fs_struct use seqlock 2011-01-07 17:50:27 +11:00
fs_uart_pd.h removed unused #include <linux/version.h>'s 2008-08-23 12:14:12 -07:00
fscache-cache.h fscache: remove dead code under CONFIG_WORKQUEUE_DEBUGFS 2011-05-25 08:39:44 -07:00
fscache.h FS-Cache: Add a helper to bulk uncache pages on an inode 2011-07-07 13:21:56 -07:00
fsl-diu-fb.h fsl-diu-fb: remove check for pixel clock ranges 2011-06-24 17:08:49 +09:00
fsl_devices.h USB: extend ehci-fsl and fsl_udc_core driver for OTG operation 2011-05-02 16:59:38 -07:00
fsl_hypervisor.h drivers/virt: introduce Freescale hypervisor management driver 2011-07-08 00:21:27 -05:00
fsnotify.h fs: dcache remove dcache_lock 2011-01-07 17:50:23 +11:00
fsnotify_backend.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
ftrace.h ftrace: Fix warning when CONFIG_FUNCTION_TRACER is not defined 2011-07-11 10:12:59 -04:00
ftrace_event.h tracing: Have dynamic size event stack traces 2011-07-14 16:36:53 -04:00
ftrace_irq.h ring-buffer: use generic version of in_nmi 2009-02-07 20:03:33 -05:00
fuse.h fuse: fix flock 2011-08-08 16:08:08 +02:00
futex.h Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2009-10-08 12:16:35 -07:00
gameport.h
gcd.h lib: add lib/gcd.c 2009-06-18 13:04:05 -07:00
gen_stats.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
genalloc.h lib, Make gen_pool memory allocator lockless 2011-08-03 11:15:57 -04:00
generic_acl.h fs: take the ACL checks to common code 2011-07-25 14:30:23 -04:00
generic_serial.h tty_port: Add a port level carrier detect operation 2009-01-02 10:19:38 -08:00
genetlink.h netlink: Export genl_lock() API for use by modules 2010-04-03 14:56:05 -07:00
genhd.h block: flush MEDIA_CHANGE from drivers on close(2) 2011-07-01 16:17:47 +02:00
getcpu.h [PATCH] Define vsyscall cache as blob to make clearer that user space shouldn't use it 2006-09-30 01:47:55 +02:00
gfp.h mm: page_alloc: increase __GFP_BITS_SHIFT to include __GFP_OTHER_NODE 2011-08-03 14:25:21 -10:00
gfs2_ondisk.h GFS2: Remove old, unused linked list code from quota 2010-03-01 14:08:10 +00:00
gigaset_dev.h
gpio-fan.h hwmon: add generic GPIO fan driver 2010-10-25 14:11:37 -07:00
gpio-i2cmux.h i2c: Add generic I2C multiplexer using GPIO API 2011-01-10 22:11:23 +01:00
gpio.h gpio: add GPIOF_ values regardless on kconfig settings 2011-06-16 08:40:52 -06:00
gpio_keys.h Input: gpio-keys - add support for setting device name 2011-04-11 23:53:19 -07:00
gpio_mouse.h Input: add gpio-mouse driver 2007-07-10 00:35:17 -04:00
gsmmux.h tty: n_gsm: Add raw-ip support 2011-07-01 15:34:45 -07:00
hardirq.h sched: Isolate preempt counting in its own config option 2011-06-10 15:15:40 +02:00
hash.h mm: make HASHED_PAGE_VIRTUAL page_address' struct page argument const. 2011-08-17 13:00:20 -07:00
hdlc.h hdlc: convert to netdev_tx_t 2009-09-01 01:13:31 -07:00
hdlcdrv.h drivers/net/hamradio: fix sparse warnings: fix signedness 2009-02-17 17:37:40 -08:00
hdreg.h remove <linux/ata.h> include from <linux/hdreg.h> 2009-04-01 21:42:26 +02:00
hid-debug.h HID: fix debugfs build with !CONFIG_DEBUG_FS 2009-06-26 10:48:34 +02:00
hid-roccat.h HID: roccat: Rename header roccat.h -> hid-roccat.h 2011-02-03 16:37:28 +01:00
hid.h HID: yurex: recognize GeneralKeys wireless presenter as generic HID 2011-06-07 15:34:17 +02:00
hiddev.h HID: usbhid: remove unused hiddev_driver 2010-09-24 14:03:44 +02:00
hidraw.h HID: Add Support for Setting and Getting Feature Reports from hidraw 2011-02-11 15:05:49 +01:00
highmem.h highmem: Use this_cpu_xx_return() operations 2010-12-17 15:18:04 +01:00
highuid.h Don't include linux/config.h from anywhere else in include/ 2006-04-26 12:56:16 +01:00
hil.h tree-wide: Assorted spelling fixes 2010-02-09 11:13:56 +01:00
hil_mlc.h Convert asm/semaphore.h users to linux/semaphore.h 2008-04-18 22:22:54 -04:00
hippidevice.h hippi: convert driver to net_device_ops 2008-11-20 20:32:15 -08:00
hp_sdc.h Fix common misspellings 2011-03-31 11:26:23 -03:00
hpet.h intr-remap: generic support for remapping HPET MSIs 2009-08-27 23:33:20 +02:00
hrtimer.h treewide: fix kernel-doc warnings 2011-06-28 10:48:34 +02:00
htcpld.h mfd: Add HTCPLD driver 2010-03-07 22:17:09 +01:00
htirq.h ht: Convert to new irq_chip functions 2010-10-12 16:53:37 +02:00
huge_mm.h mm: convert anon_vma->lock to a mutex 2011-05-25 08:39:19 -07:00
hugetlb.h hugetlb: add phys addr to struct huge_bootmem_page 2011-07-25 20:57:07 -07:00
hugetlb_inline.h mm: don't access vm_flags as 'int' 2011-05-26 09:20:31 -07:00
hw_breakpoint.h perf: Add context field to perf_event 2011-07-01 11:06:38 +02:00
hw_random.h hwrng: fix spelling mistake in header comment 2011-05-25 14:15:12 +02:00
hwmon-sysfs.h [PATCH] hwmon: Refactor SENSOR_DEVICE_ATTR_2 2006-03-23 14:21:50 -08:00
hwmon-vid.h
hwmon.h hwmon: Convert from class_device to device 2007-10-09 22:56:30 -04:00
hwspinlock.h drivers: hwspinlock: add framework 2011-02-17 09:52:03 -08:00
hysdn_if.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i2c-algo-bit.h i2c-algo-bit: Add pre- and post-xfer hooks 2010-03-13 20:56:56 +01:00
i2c-algo-pca.h i2c-algo-pca: Add PCA9665 support 2009-03-28 21:34:44 +01: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-dev.h i2c-dev: Clarify the unit of ioctl I2C_TIMEOUT 2009-02-24 19:19:49 +01:00
i2c-gpio.h i2c: Bitbanging I2C bus driver using the GPIO API 2007-05-01 23:26:34 +02:00
i2c-mux.h i2c: Multiplexed I2C bus core support 2010-08-11 18:21:02 +02:00
i2c-ocores.h i2c-ocores: Can add I2C devices to the bus 2009-06-13 10:39:28 +01:00
i2c-omap.h I2C: OMAP1/OMAP2+: create omap I2C functionality flags for each cpu_... test 2011-07-10 05:27:15 -06:00
i2c-pca-platform.h i2c-algo-pca: Rework waiting for a free bus 2009-03-28 21:34:45 +01:00
i2c-pnx.h ARM: PNX4008: move i2c_adapter structure inside the drivers private data 2010-02-12 17:32:41 +00:00
i2c-pxa.h [ARM] Remove EEPROM slave emulation from i2c-pxa driver. 2006-11-30 12:24:45 +00:00
i2c-smbus.h i2c: Add SMBus alert support 2010-03-02 12:23:42 +01:00
i2c-tegra.h i2c: tegra: Add i2c support 2011-02-23 00:53:26 +00:00
i2c-xiic.h Add the platform data include for the Xilinx XPS IIC Bus Interface 2010-03-14 11:14:58 -07:00
i2c.h hwmon: (jc42) Change detection class 2011-05-25 20:43:32 +02:00
i2o-dev.h [PATCH] use __u8/__u32 in userspace ioctl defines for I2O 2007-01-30 08:26:45 -08:00
i2o.h Fix common misspellings 2011-03-31 11:26:23 -03:00
i8k.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
i7300_idle.h i7300_idle: allow testing on i5000-series hardware w/o re-compile 2009-05-28 20:52:40 -04:00
i8042.h Input: i8042 - mark stubs in i8042.h "static inline" 2010-06-30 01:21:38 -07:00
i8253.h i8253: Cleanup outb/inb magic 2011-07-01 10:37:15 +02:00
i82593.h
ibmtr.h ibmtr: convert to internal network_device_stats 2009-01-21 14:02:26 -08:00
icmp.h [SK_BUFF]: Introduce skb_transport_header(skb) 2007-04-25 22:25:31 -07:00
icmpv6.h ipv6: Convert to use flowi6 where applicable. 2011-03-12 15:08:54 -08:00
ide.h ide: Use linux/mutex.h 2011-05-08 16:41:45 -07:00
idr.h ida: simplified functions for id allocation 2011-08-03 14:25:20 -10:00
ieee80211.h ieee80211: add few wmm tspec values 2011-07-19 16:49:54 -04:00
if.h net: add IFF_SKB_TX_SHARED flag to priv_flags 2011-07-27 22:39:30 -07:00
if_addr.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
if_addrlabel.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
if_alg.h crypto: af_alg - User-space interface for Crypto API 2010-11-19 17:47:57 +08:00
if_arcnet.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
if_arp.h net-caif: add CAIF protocol definitions 2010-03-30 19:08:43 -07:00
if_bonding.h bonding: add retransmit membership reports tunable 2010-10-05 20:26:58 -07:00
if_bridge.h netfilter: ebtables: make broute table work again 2011-01-11 23:55:51 +01:00
if_cablemodem.h
if_ec.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
if_eql.h [NET] drivers/net: statistics cleanup #1 -- save memory and shrink code 2007-10-10 16:51:16 -07:00
if_ether.h net: add 802.1ad / 802.1ah / QinQ ethertypes 2011-07-17 12:33:22 -07:00
if_fc.h headers_check fix: linux/if_fc.h 2009-01-30 23:53:12 +05:30
if_fddi.h header: fix broken headers for user space 2010-08-22 21:15:39 -07:00
if_frad.h net: use __packed annotation 2010-06-03 03:21:52 -07:00
if_hippi.h header: fix broken headers for user space 2010-08-22 21:15:39 -07:00
if_infiniband.h Update broken web addresses in the kernel. 2010-10-18 11:03:14 +02:00
if_link.h net: Allow setting the network namespace by fd 2011-05-10 14:36:03 -07:00
if_ltalk.h [ATALK]: Add alloc_ltalkdev(). 2005-05-05 14:25:59 -07:00
if_macvlan.h macvlan: lockless tx path 2010-11-16 10:58:30 -08:00
if_packet.h packet: Add 'cpu' fanout policy. 2011-07-06 01:56:38 -07:00
if_phonet.h phonet: Protect if_phonet.h against multiple inclusions. 2008-10-01 01:30:19 -07:00
if_plip.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
if_ppp.h headers: use __aligned_xx types for userspace 2011-03-18 15:14:45 -07:00
if_pppol2tp.h l2tp: Update PPP-over-L2TP driver to work over L2TPv3 2010-04-03 14:56:04 -07:00
if_pppox.h net: constify some ppp/pptp structs 2010-09-21 18:04:47 -07:00
if_slip.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
if_strip.h headers_check fix: linux/if_strip.h 2009-01-30 23:56:13 +05:30
if_tr.h headers_check fix: linux/if_tr.h 2009-01-30 23:56:48 +05:30
if_tun.h tun: add ioctl to modify vnet header size 2010-05-03 12:33:13 +03:00
if_tunnel.h if_tunnel.h: add missing ams/byteorder.h include 2010-03-21 21:19:02 -07:00
if_vlan.h vlan: move vlan_group_[gs]et_device to public header 2011-07-21 13:47:58 -07:00
if_x25.h X25: Add if_x25.h and x25 to device identifiers 2010-04-22 16:12:36 -07:00
igmp.h ipv4: Remove redundant RCU locking in ip_check_mc(). 2011-03-10 16:37:26 -08:00
ihex.h Fix IHEX firmware generation/loading 2008-08-02 18:36:10 +01:00
ima.h IMA: maintain i_readcount in the VFS layer 2011-02-10 07:51:44 -05:00
in.h net: introduce proto_ports_offset() 2010-08-19 17:16:23 -07:00
in6.h tproxy: added tproxy sockopt interface in the IPV6 layer 2010-10-21 16:08:28 +02:00
in_route.h route: Mark unused route cache flags as such. 2008-06-03 16:36:01 -07:00
inet.h NFS: Add string length argument to nfs_parse_server_address 2008-07-09 12:09:28 -04:00
inet_diag.h headers_check fix: linux/inet_diag.h 2009-01-30 23:57:43 +05:30
inet_lro.h lro: do vlan cleanup 2011-07-21 13:47:54 -07:00
inetdevice.h ipv4: Add hash table of interface addresses. 2011-02-18 12:42:28 -08:00
init.h ftrace: Avoid recording mcount on .init sections directly 2011-05-16 14:46:30 -04:00
init_ohci1394_dma.h
init_task.h fixlet: Remove fs_excl from struct task. 2011-07-12 08:35:10 +02:00
initrd.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
inotify.h inotify: force inotify and fsnotify use same bits 2010-07-28 10:18:49 -04:00
input-polldev.h Input: input-polldev - fix a couple of typos 2011-01-31 21:17:41 -08:00
input.h Add KEY_MICMUTE and enable it on Lenovo X220 2011-08-05 14:45:41 -04:00
intel-iommu.h dmar: support for parsing Remapping Hardware Static Affinity structure 2009-10-05 07:55:22 +01:00
intel_mid_dma.h intel_mid_dma: change the slave interface 2010-10-07 15:03:44 -07:00
intel_pmic_gpio.h gpio: Add PMIC GPIO block support 2010-08-03 09:49:09 -04:00
interrupt.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
io-mapping.h mm: stack based kmap_atomic() 2010-10-26 16:52:08 -07:00
io.h x86, ioremap: Fix incorrect physical address handling in PAE mode 2010-07-09 11:42:03 -07:00
ioc3.h IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
ioc4.h [PATCH] fix misannotation in ioc4.h 2006-10-10 15:37:22 -07:00
iocontext.h CFQ: move think time check variables to a separate struct 2011-07-12 14:24:35 +02:00
ioctl.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
iommu-helper.h iommu: inline iommu_num_pages 2010-08-09 20:45:05 -07:00
iommu.h iommu-api: Add missing header file 2011-06-14 11:30:22 +02:00
ioport.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k 2011-07-31 14:30:59 -10:00
ioprio.h ext4: Add mount option to set kjournald's I/O priority 2009-01-05 22:46:26 -05:00
iova.h intel-iommu: Remove superfluous iova_alloc_lock from IOVA code 2009-07-15 08:17:02 +01:00
ip.h [SK_BUFF]: Introduce skb_transport_header(skb) 2007-04-25 22:25:31 -07:00
ip6_tunnel.h
ip_vs.h IPVS: Backup, Adding Version 1 receive capability 2010-11-25 10:42:59 +09:00
ipc.h headers: kref.h redux 2009-09-26 10:17:19 -07:00
ipc_namespace.h ipc: introduce shm_rmid_forced sysctl 2011-07-26 16:49:44 -07:00
ipmi.h Fix common misspellings 2011-03-31 11:26:23 -03:00
ipmi_msgdefs.h ipmi: add oem message handling 2009-04-21 13:41:48 -07:00
ipmi_smi.h ipmi: convert to seq_file interface 2011-05-26 17:12:37 -07:00
ipsec.h [XFRM]: BEET mode 2006-10-04 00:31:09 -07:00
ipv6.h ipv6: mcast: RCU conversion 2010-11-24 11:16:42 -08:00
ipv6_route.h headers_check fix: linux/ipv6_route.h 2009-01-30 23:59:12 +05:30
ipx.h
irda.h headers_check fix: linux/irda.h 2009-01-31 00:00:06 +05:30
irq.h Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip 2011-08-17 10:23:50 -07:00
irq_cpustat.h Don't include linux/config.h from anywhere else in include/ 2006-04-26 12:56:16 +01:00
irq_work.h irq_work: Add generic hardirq context callbacks 2010-10-18 19:58:50 +02:00
irqdesc.h irq: Track the owner of irq descriptor 2011-07-28 11:23:21 +02:00
irqdomain.h dt/irq: add irq_domain_generate_simple() helper 2011-07-28 01:32:04 -06:00
irqflags.h Fix IRQ flag handling naming 2010-10-07 14:08:55 +01:00
irqnr.h genirq: Fix up irq_node() for irq_data changes. 2010-10-28 11:58:39 +02:00
irqreturn.h irq: Handle spurios irq detection for threaded irqs 2011-06-03 14:53:15 +02:00
isa.h Fix non-ISA link error in drivers/scsi/advansys.c 2007-09-16 21:13:58 -07:00
isapnp.h isapnp: move definitions to mod_devicetable.h so file2alias can reach them. 2010-05-19 17:33:38 +09:30
iscsi_boot_sysfs.h [SCSI] iscsi_ibft, be2iscsi, iscsi_boot: fix boot kobj data lifetime management 2011-06-29 16:43:06 -05:00
iscsi_ibft.h ibft: Update iBFT handling for v1.03 of the spec. 2010-05-11 13:02:23 -04:00
isdn.h [ISDN] include/linux/isdn.h: remove dead code 2008-04-15 00:30:16 -07:00
isdn_divertif.h
isdn_ppp.h Revert "isdn: isdn_ppp: Use SKB list facilities instead of home-grown implementation." 2009-11-15 22:23:47 -08:00
isdnif.h net: use __packed annotation 2010-06-03 03:21:52 -07:00
isicom.h tty: isicom: sort out the board init logic 2009-12-11 15:18:07 -08:00
iso_fs.h Move several *_SUPER_MAGIC symbols to include/linux/magic.h. 2006-09-24 11:13:19 -04:00
istallion.h istallion: use bit ops for the board flags 2010-08-10 13:47:40 -07:00
ivtv.h V4L/DVB (11042): v4l2-api: Add definitions for V4L2_MPEG_STREAM_VBI_FMT_IVTV payloads 2009-03-30 12:43:22 -03:00
ivtvfb.h fbdev: move FBIO_WAITFORVSYNC to linux/fb.h 2010-05-25 08:07:09 -07:00
ixjuser.h Fix common misspellings 2011-03-31 11:26:23 -03:00
jbd.h jbd: Fix oops in journal_remove_journal_head() 2011-06-27 11:44:37 +02:00
jbd2.h jbd2: remove jbd2_dev_to_name() from jbd2 tracepoints 2011-07-10 22:05:08 -04:00
jffs2.h Merge git://git.infradead.org/mtd-2.6 2010-08-10 11:49:21 -07:00
jhash.h The new jhash implementation 2010-12-09 20:17:07 -08:00
jiffies.h Fix common misspellings 2011-03-31 11:26:23 -03:00
journal-head.h jbd: change the field "b_cow_tid" of struct journal_head from type unsigned to tid_t 2011-07-25 17:24:47 +02:00
joystick.h Input: use ABS_CNT rather than (ABS_MAX + 1) 2010-05-20 23:05:28 -07:00
jump_label.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
jz4740-adc.h mfd: Add JZ4740 ADC driver 2010-08-12 11:27:58 +02:00
kallsyms.h vsprintf: Introduce %pB format specifier 2011-03-24 08:36:10 +01:00
kbd_diacr.h
kbd_kern.h tty: stop using "delayed_work" in the tty layer 2011-03-22 16:17:32 -07:00
Kbuild drivers/virt: introduce Freescale hypervisor management driver 2011-07-08 00:21:27 -05:00
kbuild.h Add kbuild.h that contains common definitions for kbuild users 2008-04-29 08:06:29 -07:00
kconfig.h kconfig: Introduce IS_ENABLED(), IS_BUILTIN() and IS_MODULE() 2011-07-29 21:53:30 +02:00
kd.h vt: Add virtual console keyboard mode OFF 2011-02-17 11:12:40 -08:00
kdb.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
kdebug.h kdebug.h: forward-declare struct struct notifier_block 2007-07-31 15:39:40 -07:00
kdev_t.h [PATCH] remove protection of LANANA-reserved majors 2007-04-04 21:12:47 -07:00
kernel-page-flags.h mm: export stable page flags 2009-12-16 12:19:59 +01:00
kernel.h Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending 2011-07-27 13:21:40 -07:00
kernel_stat.h irq: use per_cpu kstat_irqs 2011-01-13 17:32:31 -08:00
kernelcapi.h CAPI: Rework controller state notifier 2010-02-16 16:01:21 -08:00
kexec.h kdump: Allow shrinking of kdump region to be overridden 2011-04-01 16:14:30 +11:00
key-type.h KEYS: Add a new keyctl op to reject a key with a specified error code 2011-03-08 11:17:18 +11:00
key.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
keyboard.h keyboard: advertise KT_DEAD2 extended diacriticals 2009-06-14 13:50:36 -07:00
keyctl.h KEYS: Add an iovec version of KEYCTL_INSTANTIATE 2011-03-08 11:17:22 +11:00
kfifo.h kfifo: fix kfifo_alloc() to return a signed int value 2010-10-27 18:03:18 -07:00
kgdb.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
khugepaged.h thp: madvise(MADV_NOHUGEPAGE) 2011-01-13 17:32:47 -08:00
klist.h klist: Fix object alignment on 64-bit. 2011-02-13 16:54:24 -08:00
kmalloc_sizes.h Slab allocators: define common size limitations 2007-05-17 05:23:04 -07:00
kmemcheck.h Remove MAYBE_BUILD_BUG_ON 2011-01-24 14:45:11 +10:30
kmemleak.h kmemleak: Simplify the kmemleak_scan_area() function prototype 2009-10-28 15:11:00 +00:00
kmod.h KEYS/DNS: Fix ____call_usermodehelper() to not lose the session keyring 2011-06-17 09:40:48 -07:00
kmsg_dump.h kmsg_dump.h: fix build when CONFIG_PRINTK is disabled 2011-06-15 20:03:59 -07:00
kobj_map.h kobj: add comment and multiple inclusion protection 2010-03-15 15:29:39 +01:00
kobject.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
kobject_ns.h Delay struct net freeing while there's a sysfs instance refering to it 2011-06-12 17:45:41 -04:00
kprobes.h Merge branch 'for-2.6.38' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu 2011-01-07 17:02:58 -08:00
kref.h kref: Add a kref_sub function 2010-11-22 13:25:13 +10:00
ks0108.h Miguel Ojeda has moved 2008-07-04 10:40:05 -07:00
ks8842.h ks8842: Support DMA when accessed via timberdale 2010-07-27 20:48:19 -07:00
ksm.h mm: fix swapin race condition 2010-09-09 18:57:24 -07:00
kthread.h kthread: NUMA aware kthread_create_on_node() 2011-03-22 17:44:01 -07:00
ktime.h Fix common misspellings 2011-03-31 11:26:23 -03:00
kvm.h KVM: PPC: Allocate RMAs (Real Mode Areas) at boot for use by guests 2011-07-12 13:16:57 +03:00
kvm_host.h KVM: MMU: filter out the mmio pfn from the fault pfn 2011-07-24 11:50:34 +03:00
kvm_para.h KVM: Move kvm_guest_init out of generic code 2010-10-24 10:50:49 +02:00
kvm_types.h KVM: Add memory slot versioning and use it to provide fast guest write interface 2011-01-12 11:23:08 +02:00
l2tp.h l2tp: Add netlink control API for L2TP 2010-04-03 14:56:05 -07:00
lapb.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
latencytop.h sched, latencytop: incorporate review feedback from Andrew Morton 2009-02-11 10:18:04 +01:00
lcd.h backlight: add S6E63M0 AMOLED LCD Panel driver 2010-05-26 17:34:16 +01:00
lcm.h block: Fix overrun in lcm() and move it to lib 2010-03-15 12:47:59 +01:00
led-lm3530.h arch/arm/mach-ux500/board-u5500.c: calibrate ALS input voltage 2011-07-25 20:57:15 -07:00
leds-bd2802.h leds: add BD2802GU LED driver 2009-04-06 16:06:26 +01:00
leds-lp3944.h
leds-lp5521.h leds-lp5521: modify the way of setting led device name 2011-01-13 08:03:06 -08:00
leds-lp5523.h leds: leds-lp5523: modify the way of setting led device name 2011-01-13 08:03:05 -08:00
leds-pca9532.h drivers/leds/leds-pca9532.c: add gpio capability 2011-05-25 08:39:50 -07:00
leds-regulator.h include/linux/leds-regulator.h: fix syntax in example code 2011-04-13 11:11:43 +02:00
leds.h leds: provide helper to register "leds-gpio" devices 2011-05-25 08:39:51 -07:00
leds_pwm.h leds: simple driver for pwm driven LEDs 2009-04-06 16:06:26 +01:00
lglock.h lglock: make lg_lock_global() actually lock globally 2010-09-09 09:09:43 -07:00
lguest.h lguest: use a special 1:1 linear pagetable mode until first switch. 2011-07-22 14:39:48 +09:30
lguest_launcher.h lguest: fix comment style 2009-07-30 16:03:45 +09:30
libata.h ata: Add and use ata_print_version_once 2011-07-23 17:57:36 -04:00
libps2.h Input: libps2 - additional locking for i8042 ports 2009-09-17 23:23:45 -07:00
license.h kbuild: check license compatibility when building modules 2006-06-09 21:53:55 +02:00
limits.h Remove CHILD_MAX 2007-07-17 10:23:03 -07:00
linkage.h x86: Get rid of asmregparm 2011-05-24 14:33:35 +02:00
linux_logo.h fbdev: move logo externs to header file 2009-06-16 19:47:57 -07:00
lis3lv02d.h hwmon: lis3: Short explanations of platform data fields 2010-10-25 14:11:39 -07:00
list.h list: remove prefetching from regular list iterators 2011-05-19 14:15:29 -07:00
list_bl.h add hlist_bl_lock/unlock helpers 2011-04-25 18:14:10 -07:00
list_nulls.h list_nulls: add hlist_nulls_add_head and hlist_nulls_del 2009-06-13 12:28:57 +02:00
list_sort.h
llc.h
llist.h lib, Add lock-less NULL terminated single list 2011-08-03 11:15:56 -04:00
lockdep.h lockdep, mutex: provide mutex_lock_nest_lock 2011-05-25 08:39:17 -07:00
log2.h log2.h: Define order_base_2() macro for convenience. 2008-02-06 10:41:03 -08:00
loop.h loop: add management interface for on-demand device allocation 2011-07-31 22:08:04 +02:00
lp.h Parallel port: convert port_mutex to the mutex API 2008-02-06 10:41:01 -08:00
lru_cache.h lru_cache.h: fix comments referring to ts_ instead of lc_ 2011-05-24 10:01:37 +02:00
lsm_audit.h LSM: separate LSM_AUDIT_DATA_DENTRY from LSM_AUDIT_DATA_PATH 2011-04-25 18:14:07 -04:00
lzo.h LZO1X: fix lzo1x_worst_compress 2007-07-16 09:05:34 -07:00
m48t86.h
magic.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2 2011-03-18 22:33:38 -07:00
major.h drbd: add major number to major.h 2009-06-16 19:47:48 -07:00
map_to_7segment.h Input: map_to_7segment.h - convert to __inline__ for userspace 2008-12-29 04:59:31 -08:00
maple.h sh: maple: Support block reads and writes. 2009-02-27 16:07:32 +09:00
marvell_phy.h phylib: Add support for Marvell 88E1149R devices. 2010-11-22 08:34:23 -08:00
math64.h div64_u64(): improve precision on 32bit platforms 2010-10-26 16:52:19 -07:00
matroxfb.h fbdev: move FBIO_WAITFORVSYNC to linux/fb.h 2010-05-25 08:07:09 -07:00
max17040_battery.h
mbcache.h ext2: Resolve 'dereferencing pointer to incomplete type' when enabling EXT2_XATTR_DEBUG 2011-01-10 19:04:08 +01:00
mbus.h introduce mbus DRAM target info abstraction 2008-03-27 14:51:39 -04:00
mc6821.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mc146818rtc.h rtc: fall back to requesting only the ports we actually use 2007-11-14 18:45:41 -08:00
mca-legacy.h remove mca_is_adapter_used() 2008-04-29 08:06:01 -07:00
mca.h mca: add integrated device bus matching 2007-05-09 12:30:49 -07:00
mdio-bitbang.h Generic bitbanged MDIO library 2007-10-10 16:54:03 -07:00
mdio-gpio.h phylib: make mdio-gpio work without OF (v4) 2008-11-16 18:59:45 -08:00
mdio.h tg3: Move EEE definitions into mdio.h 2010-12-06 11:03:46 -08:00
media.h [media] media: Pick a free ioctls range 2011-03-22 04:53:56 -03:00
memblock.h memblock: add error return when CONFIG_HAVE_MEMBLOCK is not set 2011-05-25 08:39:48 -07:00
memcontrol.h tmpfs: convert mem_cgroup shmem to radix-swap 2011-08-03 14:25:24 -10:00
memory.h mm: Move definition of MIN_MEMORY_BLOCK_SIZE to a header 2011-07-12 11:08:01 +10:00
memory_hotplug.h mm: extend memory hotplug API to allow memory hotplug in virtual machines 2011-07-25 20:57:08 -07:00
mempolicy.h mm: declare mpol_to_str() when CONFIG_TMPFS=n 2011-05-25 08:39:34 -07:00
mempool.h mm: remove broken 'kzalloc' mempool 2009-09-22 07:17:35 -07:00
memstick.h memstick: annotate endianness of attribute structs 2009-01-09 16:54:41 -08:00
meye.h V4L/DVB: meye: remove last V4L1 remnants from the code and add v4l2_device 2010-05-18 00:52:36 -03:00
mg_disk.h mg_disk: seperate mg_disk.h again 2009-06-16 08:40:20 +02:00
micrel_phy.h phy/micrel: add ability to support 50MHz RMII clock on KZS8051RNL 2011-02-14 17:38:30 -08:00
migrate.h mm: migration: cleanup migrate_pages API by matching types for offlining and sync 2011-01-13 17:32:34 -08:00
mii.h tg3: Migrate phy preprocessor defs to system defs 2011-06-15 11:11:57 -04:00
minix_fs.h headers_check fix: linux/minix_fs.h 2009-01-31 00:00:35 +05:30
miscdevice.h loop: add management interface for on-demand device allocation 2011-07-31 22:08:04 +02:00
mISDNdsp.h mISDN: Add XHFC support for embedded Speech-Design board to hfcmulti 2009-05-25 00:55:30 -07:00
mISDNhw.h mISDN: Make clearing B-channel a common function 2009-07-25 20:18:16 +02:00
mISDNif.h net: use __packed annotation 2010-06-03 03:21:52 -07:00
mm.h mm: fix __page_to_pfn for a const struct page argument 2011-08-17 13:00:20 -07:00
mm_inline.h thp: fix anon memory statistics with transparent hugepages 2011-01-13 17:32:46 -08:00
mm_types.h Avoid duplicate _count variables in page_struct 2011-07-18 15:17:01 +03:00
mman.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
mmdebug.h gcc-4.6: mm: fix unused but set warnings 2010-08-09 20:44:58 -07:00
mmiotrace.h tracing: x86, mmiotrace: only register for die notifier when tracer active 2009-04-29 11:33:34 +02:00
mmtimer.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mmu_context.h mm: move use_mm/unuse_mm from aio.c to mm/ 2009-09-22 07:17:42 -07:00
mmu_notifier.h mm: convert anon_vma->lock to a mutex 2011-05-25 08:39:19 -07:00
mmzone.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
mnt_namespace.h fs: seq_file - add event counter to simplify poll() support 2011-07-20 20:47:50 -04:00
mod_devicetable.h bcma: add Broadcom specific AMBA bus driver 2011-05-10 15:54:54 -04:00
module.h module: add /sys/module/<name>/uevent files 2011-07-24 22:06:04 +09:30
moduleloader.h modules: add default loader hook implementations 2011-07-24 22:06:04 +09:30
moduleparam.h module: reorder kparam_array to remove alignment padding on 64 bit builds 2011-05-19 16:55:25 +09:30
mount.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
mpage.h Remove two unneeded exports and make two symbols static in fs/mpage.c 2009-04-01 07:38:54 -04:00
mqueue.h mqueue.h: don't include linux/types.h 2006-11-30 04:40:22 +01:00
mroute.h ipv4: Pass explicit saddr/daddr args to ipmr_get_route(). 2011-05-04 12:18:54 -07:00
mroute6.h Fix common misspellings 2011-03-31 11:26:23 -03:00
msdos_fs.h fat: Fix stat->f_namelen 2010-02-10 23:49:08 +09:00
msg.h ipc: restore MSGPOOL original value 2008-06-06 11:29:12 -07:00
msi.h pci: Cleanup the irq_desc mess in msi 2010-10-12 16:53:34 +02:00
msm_mdp.h msm: mdp: Add support for RGBX 8888 image format. 2011-03-02 13:43:15 -08:00
mtio.h [SCSI] st: add MTWEOFI to write filemarks without flushing drive buffer 2010-10-08 17:16:22 -05:00
mutex-debug.h include/linux: Remove all users of FASTCALL() macro 2008-02-13 16:21:18 -08:00
mutex.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
mv643xx.h
mv643xx_eth.h
mv643xx_i2c.h [I2C] i2c-mv64xxx: Don't set i2c_adapter.retries 2008-01-26 15:04:01 +00:00
mxm-wmi.h mxm/wmi: add MXMX interface entry point. 2011-05-09 11:40:38 +10:00
n_r3964.h Update broken web addresses in the kernel. 2010-10-18 11:03:14 +02:00
namei.h switch vfs_path_lookup() to struct path 2011-07-20 01:44:14 -04:00
nbd.h header: fix broken headers for user space 2010-08-22 21:15:39 -07:00
ncp.h header: fix broken headers for user space 2010-08-22 21:15:39 -07:00
ncp_fs.h move internal-only parts of ncpfs headers to fs/ncpfs 2011-01-12 20:03:43 -05:00
ncp_mount.h move internal-only parts of ncpfs headers to fs/ncpfs 2011-01-12 20:03:43 -05:00
ncp_no.h net: replace __constant_{endian} uses in net headers 2009-02-14 22:58:35 -08:00
neighbour.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
net.h net: Kill ratelimit.h dependency in linux/net.h 2011-05-27 13:41:33 -04:00
net_dropmon.h dropmon: remove duplicated #include 2009-07-12 20:11:17 -07:00
net_tstamp.h net: new user space API for time stamping of incoming and outgoing packets 2009-02-15 22:43:33 -08:00
netdevice.h Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net 2011-07-28 05:58:19 -07:00
netfilter.h net: Add linux/sysctl.h includes where needed. 2011-05-27 13:40:58 -04:00
netfilter_arp.h
netfilter_bridge.h
netfilter_decnet.h
netfilter_ipv4.h
netfilter_ipv6.h
netlink.h net: Make userland include of netlink.h more sane. 2011-08-07 22:48:07 -07:00
netpoll.h netpoll: Remove unused EXPORT_SYMBOLs of netpoll_poll and netpoll_poll_dev 2011-07-03 20:02:07 -07:00
netrom.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
nfc.h NFC: add the NFC socket raw protocol 2011-07-05 15:26:58 -04:00
nfs.h pnfsblock: add device operations 2011-07-31 12:18:16 -04:00
nfs2.h NFS: Clean up MNT program definitions 2009-06-17 18:02:11 -07:00
nfs3.h NFS: Introduce new-style XDR decoding functions for NFSv2 2010-12-16 12:37:23 -05:00
nfs4.h pnfs: GETDEVICELIST 2011-07-31 12:18:15 -04:00
nfs4_mount.h NFS: Add the mount option "nosharecache" 2007-07-10 23:40:48 -04:00
nfs_fs.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6 2011-08-01 13:48:31 -10:00
nfs_fs_i.h lockd: stop abusing file_lock_list 2006-03-20 13:44:40 -05:00
nfs_fs_sb.h NFS: Re-enable compilation of nfs with !CONFIG_NFS_V4 || !CONFIG_NFS_V4_1 2011-07-31 14:27:04 -10:00
nfs_idmap.h NFSv4: cleanup idmapper functions to take an nfs_server argument 2011-03-11 15:39:26 -05:00
nfs_iostat.h NFSv4.1: implement generic pnfs layer write switch 2011-03-11 15:38:44 -05:00
nfs_mount.h nfs: introduce mount option '-olocal_lock' to make locks local 2010-09-23 08:55:58 -04:00
nfs_page.h NFS: Move the pnfs write code into pnfs.c 2011-07-15 09:12:22 -04:00
nfs_xdr.h Merge branch 'for-linus' of git://git.open-osd.org/linux-open-osd 2011-08-06 22:56:03 -07:00
nfsacl.h NFS: nfsacl_{encode,decode} should return signed integer 2011-01-25 15:24:47 -05:00
nilfs2_fs.h nilfs2: add ioctl which limits range of segment to be allocated 2011-05-10 22:21:45 +09:00
nl80211.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2011-07-25 13:56:39 -07:00
nl802154.h
nls.h NLS: update handling of Unicode 2009-06-15 21:44:43 -07:00
nmi.h watchdog: Change the default timeout and configure nmi watchdog period based on watchdog_thresh 2011-05-23 11:58:59 +02:00
node.h memory hotplug: Update phys_index to [start|end]_section_nr 2011-02-03 16:08:57 -08:00
nodemask.h cpusets: randomize node rotor used in cpuset_mem_spread_node() 2011-07-26 16:49:43 -07:00
notifier.h notifiers: vt: move vt notifiers into vt.h 2011-07-25 20:57:15 -07:00
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 make sure that nsproxy_cache is initialized early enough 2011-07-20 01:44:07 -04:00
nubus.h headers_check fix cleanup: linux/nubus.h 2009-02-03 19:33:51 +05:30
numa.h hugetlb: add generic definition of NUMA_NO_NODE 2009-12-15 08:53:12 -08:00
nvram.h [PATCH] drivers/char/nvram.c: possible cleanups 2005-06-25 16:25:03 -07:00
nwpserial.h serial: Add driver for the Cell Network Processor serial port NWP device 2009-01-08 16:25:18 +11:00
of.h dt: add empty of_get_property for non-dt 2011-08-09 11:27:16 -06:00
of_address.h dt: include linux/errno.h in linux/of_address.h 2011-07-18 16:37:45 -06:00
of_device.h drivercore: revert addition of of_match to struct device 2011-05-18 12:32:23 -06:00
of_fdt.h Revert "dt: add of_alias_scan and of_alias_get_id" 2011-08-04 11:26:24 +01:00
of_gpio.h of/gpio: export of_gpio_simple_xlate 2011-07-28 16:19:22 -06:00
of_i2c.h of/i2c: Generalize OF support 2010-07-05 16:14:52 -06:00
of_irq.h irq: add irq_domain translation infrastructure 2011-07-28 01:32:04 -06:00
of_mdio.h of/mdio: Add support function for Ethernet fixed-link property 2009-07-22 09:27:18 -07:00
of_net.h dt/net: add helper function of_get_phy_mode 2011-07-27 09:30:56 +08:00
of_pci.h pci/of: Match PCI devices to OF nodes dynamically 2011-06-08 09:08:17 +10:00
of_pdt.h
of_platform.h dt/platform: allow device name to be overridden 2011-06-21 11:04:10 -06:00
of_spi.h of/spi: call of_register_spi_devices() from spi core code 2010-07-30 00:03:59 -06:00
omap3isp.h Fix common misspellings 2011-03-31 11:26:23 -03:00
omapfb.h Merge branch 'for-linus' of git://gitorious.org/linux-omap-dss2/linux 2010-08-08 10:02:59 -07:00
oom.h oom: remove references to old badness() function 2011-07-25 20:57:09 -07:00
opp.h PM / OPP: Introduce function to free cpufreq table 2011-07-15 23:58:18 +02:00
oprofile.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
oxu210hp.h usb host: Oxford OXU210HP HCD driver. 2009-01-07 09:59:50 -08:00
padata.h padata: add missing __percpu markup in include/linux/padata.h 2010-09-03 19:09:46 +08:00
page-debug-flags.h generic debug pagealloc 2009-04-01 08:59:13 -07:00
page-flags.h Merge branch 'slub/lockless' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6 2011-07-30 08:21:48 -10:00
page-isolation.h memory unplug: page isolation 2007-10-16 09:43:02 -07:00
page_cgroup.h Fix common misspellings 2011-03-31 11:26:23 -03:00
pageblock-flags.h include/linux/pageblock-flags.h: fix set_pageblock_flags() macro definiton 2010-10-26 16:52:05 -07:00
pagemap.h mm: cleanup descriptions of filler arg 2011-07-25 20:57:10 -07:00
pagevec.h mm: remove pagevec_swap_free() 2009-04-01 08:59:13 -07:00
param.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
parport.h parport: quickfix the proc registration bug 2009-06-02 09:53:22 -07:00
parport_pc.h parport: Use the PCI IRQ if offered 2009-04-07 08:44:06 -07:00
parser.h vfs: Use const for kernel parser table 2008-10-13 10:10:37 -07:00
pata_arasan_cf_data.h ata/pata_arasan_cf: fill dma chan->private from pdata->dma_priv 2011-03-14 02:58:03 -04:00
patchkey.h [PATCH] include/linux/soundcard.h: endianness fix 2005-05-05 16:36:31 -07:00
path.h sanitize vfsmount refcounting changes 2011-01-16 13:47:07 -05:00
pch_dma.h
pci-acpi.h PCI / ACPI: Fix build of the AER driver for CONFIG_ACPI unset 2011-01-16 11:56:26 -08:00
pci-aspm.h PCI/e1000e: Add and use pci_disable_link_state_locked() 2011-05-21 12:16:44 -07:00
pci-ats.h PCI: Move ATS declarations in seperate header file 2011-04-11 09:01:41 +02:00
pci-dma.h dma-mapping.h: add the dma_unmap state API 2010-03-12 15:52:42 -08:00
pci.h PCI : ability to relocate assigned pci-resources 2011-08-01 11:50:15 -07:00
pci_hotplug.h PCI: Make current and maximum bus speeds part of the PCI core 2010-02-22 16:15:17 -08:00
pci_ids.h Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx 2011-08-04 16:43:43 -10:00
pci_regs.h PCI: add latency tolerance reporting enable/disable support 2011-05-11 15:18:53 -07:00
pcieport_if.h PCI: portdrv: remove unnecessary struct pcie_port_data 2009-12-04 15:56:19 -08:00
pda_power.h pda_power: Add function callbacks for suspend and resume 2010-04-16 19:14:34 +04:00
percpu-defs.h percpu: Remove the multi-page alignment facility 2010-10-27 17:53:25 +02:00
percpu.h slub: always align cpu_slab to honor cmpxchg_double requirement 2011-06-03 19:33:49 +03:00
percpu_counter.h percpu_counter: change return value and add comments 2011-05-25 08:39:54 -07:00
perf_event.h perf events: Fix slow and broken cgroup context switch code 2011-08-29 12:28:33 +02:00
personality.h Add a personality to report 2.6.x version numbers 2011-08-25 10:17:28 -07:00
pfkeyv2.h crypto: gcm - Add RFC4543 wrapper for GCM 2010-01-17 21:52:11 +11:00
pfn.h generic: make PFN_PHYS explicitly return phys_addr_t 2008-09-14 17:24:26 +02:00
pg.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
phantom.h include of <linux/types.h> is preferred over <asm/types.h> 2009-01-15 16:39:41 -08:00
phonedev.h [PATCH] mark struct inode_operations const 3 2007-02-12 09:48:46 -08:00
phonet.h Phonet: kill the ST-Ericsson pipe controller Kconfig 2011-03-09 11:59:33 -08:00
phy.h net: ibm_newemac: convert it to use of_get_phy_mode 2011-07-27 09:31:02 +08:00
phy_fixed.h phy/fixed.c: rework to not duplicate PHY layer functionality 2008-01-23 19:33:58 -06:00
pid.h pid: fix typo in function description 2011-05-26 17:12:37 -07:00
pid_namespace.h pid: generalize task_active_pid_ns 2009-01-08 08:31:12 -08:00
pim.h net: replace __constant_{endian} uses in net headers 2009-02-14 22:58:35 -08:00
pipe_fs_i.h pipe_fs_i.h: fix kernel-doc warning 2011-01-10 07:38:54 -08:00
pkt_cls.h net_sched: cls_flow: add key rxhash 2010-08-21 23:40:14 -07:00
pkt_sched.h Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 2011-04-11 13:44:25 -07:00
pktcdvd.h pktcdvd: use BIO list management functions 2010-02-24 08:30:08 +01:00
platform_device.h driver core: Add ability for arch code to setup pdev_archdata 2011-07-08 00:21:35 -05:00
plist.h plist: Remove the need to supply locks to plist heads 2011-07-08 14:02:53 +02:00
pm.h PM: Introduce generic "noirq" callback routines for subsystems (v2) 2011-07-02 14:29:55 +02:00
pm_domain.h PM / Domains: Fix build for CONFIG_PM_RUNTIME unset 2011-08-14 13:34:31 +02:00
pm_qos_params.h idle governor: Avoid lock acquisition to read pm_qos before entering idle 2011-05-29 00:50:59 -04:00
pm_runtime.h PM / Runtime: Add new helper function: pm_runtime_status_suspended() 2011-07-12 11:17:09 +02:00
pm_wakeup.h PM: Do not create wakeup sysfs files for devices that cannot wake up 2011-03-15 00:43:14 +01:00
pmu.h [POWERPC] Fix drivers/macintosh/mediabay.c when !CONFIG_ADB_PMU 2008-03-13 10:09:27 +11:00
pnfs_osd_xdr.h pnfs-obj: pnfs_osd_xdr: Remove dead code and cleanup 2011-07-12 13:40:29 -04:00
pnp.h treewide: Convert uses of struct resource to resource_size(ptr) 2011-06-10 14:55:36 +02:00
poison.h mm/memblock.c: avoid abuse of RED_INACTIVE 2011-07-25 20:57:09 -07:00
poll.h Fix common misspellings 2011-03-31 11:26:23 -03:00
posix-clock.h treewide: fix a few typos in comments 2011-05-10 10:16:21 +02:00
posix-timers.h posix-timers: RCU conversion 2011-05-24 12:10:51 +02:00
posix_acl.h RCUify freeing acls, let check_acl() go ahead in RCU mode if acl is cached 2011-08-03 00:58:42 -04:00
posix_acl_xattr.h [PATCH] remove <linux/xattr_acl.h> 2005-06-23 09:45:33 -07:00
posix_types.h
power_supply.h power_supply: Update power_supply_is_watt_property 2011-03-01 22:27:26 +03:00
ppdev.h fix file specification in comments 2006-10-03 23:01:26 +02:00
ppp-comp.h net: remove CVS keywords 2008-06-11 21:00:38 -07:00
ppp_channel.h ppp: make channel_ops const 2010-08-04 21:53:17 -07:00
ppp_defs.h
pps.h pps: add kernel consumer support 2011-01-13 08:03:21 -08:00
pps_kernel.h pps: capture MONOTONIC_RAW timestamps as well 2011-01-13 08:03:21 -08:00
prctl.h HWPOISON: Clean up PR_MCE_KILL interface 2009-10-04 03:23:17 +02:00
preempt.h sched: Isolate preempt counting in its own config option 2011-06-10 15:15:40 +02:00
prefetch.h Fix common misspellings 2011-03-31 11:26:23 -03:00
printk.h printk: allocate kernel log buffer earlier 2011-05-25 08:39:48 -07:00
prio_heap.h Fix cpusets update_cpumask 2007-10-19 11:53:41 -07:00
prio_tree.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
proc_fs.h proc: make struct proc_dir_entry::name a terminal array rather than a pointer 2011-07-27 12:50:45 -07: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
pstore.h pstore: Make "part" unsigned 2011-07-22 16:14:29 -07:00
pti.h PTI feature to allow user to name and mark masterchannel request. 2011-07-01 15:39:38 -07:00
ptp_classify.h ptp: Added a brand new class driver for ptp clocks. 2011-05-23 13:01:00 -07:00
ptp_clock.h ptp: Added a brand new class driver for ptp clocks. 2011-05-23 13:01:00 -07:00
ptp_clock_kernel.h ptp: Added a brand new class driver for ptp clocks. 2011-05-23 13:01:00 -07:00
ptrace.h ptrace: dont send SIGSTOP on auto-attach if PT_SEIZED 2011-07-17 20:23:52 +02:00
pwm.h trivial: PWM: fix of #endif comment 2009-03-30 15:22:01 +02:00
pwm_backlight.h backlight: add a callback 'notify_after' for backlight control 2011-08-25 16:25:34 -07:00
pxa2xx_ssp.h Fix common misspellings 2011-03-31 11:26:23 -03:00
pxa168_eth.h
qnx4_fs.h fs/qnx4: sanitize includes 2009-06-11 21:36:12 -04:00
qnxtypes.h
quicklist.h mm: show quicklist usage in /proc/meminfo 2008-09-02 19:21:38 -07:00
quota.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
quotaops.h fs: protect inode->i_state with inode->i_lock 2011-03-24 21:16:31 -04:00
radeonfb.h include of <linux/types.h> is preferred over <asm/types.h> 2009-01-15 16:39:41 -08:00
radix-tree.h tmpfs radix_tree: locate_item to speed up swapoff 2011-08-03 14:25:24 -10:00
raid_class.h [SCSI] mpt2sas: Added raid transport support 2010-02-08 18:19:41 -06:00
ramfs.h convert get_sb_nodev() users 2010-10-29 04:16:31 -04:00
ramoops.h ramoops: make record_size a module parameter 2011-07-26 16:49:46 -07:00
random.h net: Compute protocol sequence numbers and fragment IDs using MD5. 2011-08-06 18:33:19 -07:00
range.h x86/pci: Add cap_resource() 2010-02-10 17:47:17 -08:00
rar_register.h
ratelimit.h bug.h: Move ratelimit warn interfaces to ratelimit.h 2011-05-26 15:00:31 -04:00
rational.h lib: isolate rational fractions helper function 2009-06-11 08:51:08 -07:00
raw.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rbtree.h timers: Add rb_init_node() to allow for stack allocated rb nodes 2011-04-26 14:01:42 -07:00
rculist.h rcu: Fix wrong check in list_splice_init_rcu() 2011-07-20 14:10:20 -07:00
rculist_bl.h fs: hlist UP debug fixup 2011-01-14 02:36:43 +00:00
rculist_nulls.h rculist: avoid __rcu annotations 2010-08-19 17:18:00 -07:00
rcupdate.h sched: Isolate preempt counting in its own config option 2011-06-10 15:15:40 +02:00
rcutiny.h rcu: provide rcu_virt_note_context_switch() function. 2011-05-05 23:16:59 -07:00
rcutree.h rcu: provide rcu_virt_note_context_switch() function. 2011-05-05 23:16:59 -07:00
rds.h RDS: Remove dead struct from rds.h 2010-09-08 18:16:55 -07:00
reboot.h notifiers: sys: move reboot notifiers into reboot.h 2011-07-25 20:57:14 -07:00
reciprocal_div.h [PATCH] SLAB: use a multiply instead of a divide in obj_to_index() 2006-12-13 09:05:49 -08:00
regmap.h regmap: Add SPI bus support 2011-07-23 07:56:59 +01:00
regset.h x86: user_regset user-copy helpers 2008-01-30 13:31:47 +01:00
reiserfs_acl.h fs: take the ACL checks to common code 2011-07-25 14:30:23 -04:00
reiserfs_fs.h reiserfs: use proper little-endian bitops 2011-07-25 20:57:17 -07:00
reiserfs_fs_i.h Fix reiserfs_file_release() 2010-08-09 16:47:27 -04:00
reiserfs_fs_sb.h
reiserfs_xattr.h fs: take the ACL checks to common code 2011-07-25 14:30:23 -04:00
relay.h docs: fix various Documentation/ paths in header files 2009-09-24 07:20:57 -07:00
res_counter.h memcg: simplify the way memory limits are checked 2011-03-23 19:46:23 -07:00
resource.h include/linux/resource.h needs types.h 2010-11-12 07:55:30 -08:00
resume-trace.h
rfkill-gpio.h net: rfkill: add generic gpio rfkill driver 2011-05-19 13:53:54 -04:00
rfkill-regulator.h rfkill: Regulator consumer driver for rfkill 2011-04-19 15:38:02 -04:00
rfkill.h rfkill: remove dead code 2010-11-15 13:24:06 -05:00
ring_buffer.h tracing: Use NUMA allocation for per-cpu ring buffer pages 2011-06-14 22:04:39 -04:00
rio.h RapidIO/mpc85xx: fix possible mport registration problems 2011-04-14 16:06:56 -07:00
rio_drv.h rapidio: add architecture specific callbacks 2011-03-23 19:46:41 -07:00
rio_ids.h RapidIO: add IDT CPS-1432 switch definitions 2011-04-14 16:06:56 -07:00
rio_regs.h rapidio: fix use of non-compatible registers 2011-08-25 16:25:34 -07:00
rmap.h mm: convert anon_vma->lock to a mutex 2011-05-25 08:39:19 -07:00
romfs_fs.h romfs: have romfs_fs.h pull in necessary headers 2011-01-13 08:03:23 -08:00
root_dev.h [PATCH] Fix broken kernel headers preventing ARM build 2006-07-13 13:21:35 -07:00
rose.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rotary_encoder.h Input: rotary-encoder - add support for half-period encoders 2011-05-12 08:28:47 -07:00
route.h net: cleanup include/linux 2009-11-04 09:50:58 -08:00
rslib.h [RSLIB] Support non-canonical GF representations 2007-05-02 11:56:33 +01:00
rtc-v3020.h rtc-v3020: make bitfield unsigned 2010-05-11 10:09:47 +02:00
rtc.h rtc: Limit RTC PIE frequency 2011-07-26 14:50:01 -07:00
rtmutex.h plist: Remove the need to supply locks to plist heads 2011-07-08 14:02:53 +02:00
rtnetlink.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2011-07-25 13:56:39 -07:00
rwlock.h locking: Make sparse work with inline spinlocks and rwlocks 2010-03-13 01:21:21 +01:00
rwlock_api_smp.h locking: Cleanup the name space completely 2009-12-14 23:55:33 +01:00
rwlock_types.h locking: Remove deprecated lock initializers 2011-01-27 12:30:38 +01:00
rwsem-spinlock.h rwsem: Move duplicate init macros and functions to linux/rwsem.h 2011-01-27 12:30:39 +01:00
rwsem.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
rxrpc.h RxRPC: Declare the security index constants symbolically 2009-09-15 02:44:17 -07:00
s3c_adc_battery.h
sc26198.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
scatterlist.h lib/scatterlist: add a flags to signalize mapping direction 2009-07-31 12:28:45 +02:00
scc.h Don't include linux/config.h from anywhere else in include/ 2006-04-26 12:56:16 +01:00
sched.h posix-cpu-timers: Cure SMP wobbles 2011-09-30 14:07:06 +02:00
screen_info.h x86, setup: Store the boot cursor state 2009-11-13 14:23:11 -08:00
sctp.h net: use __packed annotation 2010-06-03 03:21:52 -07:00
scx200.h [PATCH] scx200_hrt: fix precedence bug manifesting as 27x clock in 1 MHz mode 2006-10-04 07:55:14 -07:00
scx200_gpio.h long vs. unsigned long - low-hanging fruits in drivers 2007-10-14 12:41:51 -07:00
sdla.h include/linux/sdla.h: remove the prototype of sdla() 2011-07-18 11:06:03 -07:00
seccomp.h x86-64: Emulate legacy vsyscalls 2011-06-07 10:02:35 +02:00
securebits.h define convenient securebits masks for prctl users (v2) 2009-10-30 08:27:25 +11:00
security.h ->permission() sanitizing: don't pass flags to exec_permission() 2011-07-20 01:43:29 -04:00
selection.h vcs: invoke the vt update callback when /dev/vcs* is written to 2010-10-22 10:20:06 -07:00
selinux.h secmark: make secmark object handling generic 2010-10-21 10:12:48 +11:00
selinux_netlink.h make most exported headers use strict integer types 2009-03-26 18:14:15 +01:00
sem.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
semaphore.h semaphore: Remove mutex emulation 2010-10-30 12:12:50 +02:00
seq_file.h fs: seq_file - add event counter to simplify poll() support 2011-07-20 20:47:50 -04:00
seq_file_net.h proc: consolidate per-net single-release callers 2008-07-18 04:07:44 -07:00
seqlock.h linux/seqlock.h should #include asm/processor.h for cpu_relax() 2011-06-11 13:17:28 -07:00
serial.h serial: fix port type conflict between NS16550A & U6_16550A 2010-09-03 17:29:04 -07:00
serial167.h Char: serial167, remove bottomhalf 2008-02-07 08:42:34 -08:00
serial_8250.h serial: abstraction for 8250 legacy ports 2010-10-22 10:20:10 -07:00
serial_core.h tty/serial: Add explicit PORT_TEGRA type 2011-05-19 16:51:01 -07:00
serial_max3100.h tty: MAX3100 2009-04-08 14:33:38 -07:00
serial_mfd.h hsu: driver for Medfield High Speed UART device 2010-08-10 13:47:46 -07:00
serial_pnx8xxx.h
serial_reg.h tty/serial: Fix break handling for PORT_TEGRA 2011-05-19 16:51:02 -07:00
serial_sci.h serial: sh-sci: Fix up pretty name printing for port IRQs. 2011-06-28 15:25:36 +09:00
serialP.h Don't include linux/config.h from anywhere else in include/ 2006-04-26 12:56:16 +01:00
serio.h Input: serio - add support for PS2Mult multiplexer protocol 2010-10-18 09:33:31 -07:00
sfi.h x86/mrst: Add SFI platform device parsing code 2010-11-09 14:45:52 +01:00
sfi_acpi.h SFI: add capability to parse ACPI tables 2009-08-28 19:57:33 -04:00
sh_clk.h sh: move CLKDEV_xxx_ID macro to sh_clk.h 2011-07-11 15:07:25 +09:00
sh_dma.h dmaengine: shdma: add .needs_tend_set / .no_dmars flags 2011-06-21 17:56:11 +09:00
sh_intc.h sh: intc: Fix up initializers for gcc 4.5. 2010-11-09 16:38:20 +09:00
sh_pfc.h sh: pfc: support pinmux deregistration. 2010-10-04 03:54:56 +09:00
sh_timer.h ARM: shmobile: remove sh_timer_config clk member 2010-10-31 10:40:39 -04:00
shm.h shm: handle separate PID namespaces case 2011-07-30 08:44:19 -10:00
shmem_fs.h tmpfs: use kmemdup for short symlinks 2011-08-03 14:25:24 -10:00
shrinker.h superblock: introduce per-sb cache shrinker infrastructure 2011-07-20 20:47:10 -04:00
sht15.h hwmon: (sht15) add support for CRC validation 2011-05-19 08:19:36 -07:00
sigma.h sigma-firmware: loader for Analog Devices' SigmaStudio 2011-03-22 17:44:15 -07:00
signal.h Merge branch 'ptrace' of git://git.kernel.org/pub/scm/linux/kernel/git/oleg/misc 2011-05-20 13:33:21 -07:00
signalfd.h HWPOISON/signalfd: add support for addr_lsb 2010-10-08 09:32:15 +02:00
skbuff.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
slab.h slab allocators: Provide generic description of alignment defines 2011-07-07 21:04:12 +03:00
slab_def.h slab: shrink sizeof(struct kmem_cache) 2011-07-20 20:27:56 +03:00
slob_def.h slab, slub, slob: Unify alignment definition 2011-06-16 19:40:20 +03:00
slub_def.h Merge branch 'slub/lockless' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6 2011-07-30 08:21:48 -10:00
sm501-regs.h
sm501.h video, sm501: add I/O functions for use on powerpc 2011-03-22 17:16:34 +09:00
smc91x.h Fix common misspellings 2011-03-31 11:26:23 -03:00
smc911x.h smc911x: Add IRQ polarity configuration 2008-10-22 07:00:38 -04:00
smp.h generic-ipi: Fix kexec boot crash by initializing call_single_queue before enabling interrupts 2011-06-17 10:17:12 +02:00
smsc911x.h net: allow shifted access in smsc911x V2 2011-04-13 17:13:00 -07:00
snmp.h tcp: Replace time wait bucket msg by counter 2010-12-08 12:16:33 -08:00
socket.h net: Make userland include of netlink.h more sane. 2011-08-07 22:48:07 -07:00
sockios.h tcp: ioctl type SIOCOUTQNSD returns amount of data not sent 2011-03-09 14:08:09 -08:00
som.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sonet.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
sony-laptop.h
sonypi.h sony-laptop: ignore hard switch rfkill events (SPIC) 2011-03-28 06:05:24 -04:00
sort.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sound.h headers_check fix: linux/sound.h 2009-01-31 00:07:00 +05:30
soundcard.h Fix common misspellings 2011-03-31 11:26:23 -03:00
spinlock.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
spinlock_api_smp.h locking: Cleanup the name space completely 2009-12-14 23:55:33 +01:00
spinlock_api_up.h locking: Cleanup the name space completely 2009-12-14 23:55:33 +01:00
spinlock_types.h locking: Remove deprecated lock initializers 2011-01-27 12:30:38 +01:00
spinlock_types_up.h
spinlock_up.h spinlock_up.h: include asm/processor.h in for cpu_relax 2011-05-20 12:51:07 -07:00
splice.h tmpfs: clone shmem_file_splice_read() 2011-07-25 20:57:11 -07:00
srcu.h rcu: Upgrade srcu_read_lock() docbook about SRCU grace periods 2010-08-20 09:00:15 -07:00
stackprotector.h x86: fix the stackprotector canary of the boot CPU 2008-05-26 16:15:32 +02:00
stacktrace.h x86: Swap save_stack_trace_regs parameters 2011-06-14 22:48:51 -04:00
stallion.h stallion: use tty_port 2008-07-20 17:12:37 -07:00
start_kernel.h [PATCH] i386: cpu_detect extraction 2006-12-07 02:14:08 +01:00
stat.h utimensat implementation 2007-05-08 11:15:18 -07:00
statfs.h add f_flags to struct statfs(64) 2010-08-09 16:48:44 -04:00
stddef.h [PATCH] Generic boolean 2006-10-01 00:39:18 -07:00
stmmac.h stmmac: unify MAC and PHY configuration parameters (V2) 2011-07-21 15:29:16 -07:00
stop_machine.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial 2011-07-25 13:56:39 -07:00
string.h Add a strtobool function matching semantics of existing in kernel equivalents 2011-05-19 16:55:28 +09:30
string_helpers.h [SCSI] lib: add generic helper to print sizes rounded to the correct SI range 2008-10-03 11:46:14 -05:00
stringify.h Make __stringify support variable argument macros too 2009-04-10 15:48:52 +02:00
superhyway.h [PATCH] superhyway: multiple block support and VCR rework 2005-11-07 07:53:28 -08:00
suspend.h notifiers: pm: move pm notifiers into suspend.h 2011-07-25 20:57:15 -07:00
suspend_ioctls.h
svga.h svga: Make svga_set_timings() take an iomem regbase pointer. 2011-03-22 15:47:22 +09:00
swab.h byteorder: make swab.h include asm/swab.h like a regular header 2009-01-14 19:56:50 -08:00
swap.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
swapops.h mm: let swap use exceptional entries 2011-08-03 14:25:22 -10:00
swiotlb.h swiotlb: Export swioltb_nr_tbl and utilize it as appropiate. 2011-06-06 15:41:16 -04:00
synclink.h drivers/char/synclink_gt.c: add extended sync feature 2010-10-27 18:03:14 -07:00
sys.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
syscalls.h All Arch: remove linkage for sys_nfsservctl system call 2011-08-26 15:09:58 -07:00
syscore_ops.h PM / Core: Introduce struct syscore_ops for core subsystems PM 2011-03-15 00:43:46 +01:00
sysctl.h sysctl: the include of rcupdate.h is only needed in the kernel 2011-03-09 16:43:24 -08:00
sysdev.h PM: Remove sysdev suspend, resume and shutdown operations 2011-05-11 21:37:15 +02:00
sysfs.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
syslog.h syslog: use defined constants instead of raw numbers 2010-02-04 14:20:41 +11:00
sysrq.h Input: sysrq - ensure sysrq_enabled and __sysrq_enabled are consistent 2011-01-24 09:33:36 -08:00
sysv_fs.h fs/sysv: v7: adjust sanity checks for some volumes 2010-08-11 08:59:22 -07:00
task_io_accounting.h Remove Andrew Morton's old email accounts 2008-10-16 11:21:32 -07:00
task_io_accounting_ops.h task IO accounting: move all IO statistics in struct task_io_accounting 2008-07-27 16:12:28 -07:00
taskstats.h taskstats: pad taskstats netlink response for aligment issues on ia64 2010-12-22 19:43:34 -08:00
taskstats_kern.h include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h 2010-03-30 22:02:32 +09:00
tboot.h KVM: VMX: enable VMXON check with SMX enabled (Intel TXT) 2010-05-19 11:36:34 +03:00
tc.h [TC] MIPS: TURBOchannel update to the driver model 2007-02-09 16:23:15 +00:00
tca6416_keypad.h Input: add keypad driver for keys interfaced to TCA6416 2010-05-03 23:50:42 -07:00
tcp.h tcp: RFC2988bis + taking RTT sample from 3WHS for the passive open side 2011-06-08 17:05:30 -07:00
telephony.h telephony: trivial: fix up email address 2008-11-11 09:30:23 -08:00
termios.h tty: Add termiox 2008-10-13 09:51:40 -07:00
textsearch.h textsearch: convert kmalloc + memset to kzalloc 2008-07-08 02:38:40 -07:00
textsearch_fsm.h [LIB]: Naive finite state machine based textsearch 2005-06-23 20:59:16 -07:00
tfrc.h [DCCP] ccid3: Finer-grained resolution of sending rates 2006-12-11 14:34:42 -08:00
thermal.h thermal: make THERMAL_HWMON implementation fully internal 2011-08-02 14:51:57 -04:00
thread_info.h hrtimers: Avoid touching inactive timer bases 2011-05-23 13:59:54 +02:00
threads.h pids: increase pid_max based on num_possible_cpus 2010-05-27 09:12:51 -07:00
ti_wilink_st.h drivers:misc:ti-st: platform hooks for chip states 2011-08-22 14:13:32 -07:00
tick.h sched: Intoduce get_cpu_iowait_time_us() 2010-05-09 19:35:27 +02:00
tifm.h tifm: fix the MemoryStick host fifo handling code 2008-03-10 18:01:18 -07:00
timb_dma.h dma: Add timb-dma 2010-03-25 17:18:43 -07:00
timb_gpio.h gpio: add GPIO driver for the Timberdale FPGA 2009-12-16 07:20:00 -08:00
time.h timerfd: Manage cancelable timers in timerfd 2011-05-23 13:59:53 +02:00
timecompare.h timecompare: generic infrastructure to map between two time bases 2009-02-15 22:43:32 -08:00
timer.h timer: Make try_to_del_timer_sync() the same on SMP and UP 2010-10-22 14:46:25 +02:00
timerfd.h timerfd: Manage cancelable timers in timerfd 2011-05-23 13:59:53 +02:00
timeriomem-rng.h hwrng: timeriomem - Use phys address rather than virt 2009-03-27 12:59:54 +08:00
timerqueue.h timers: Add rb_init_node() to allow for stack allocated rb nodes 2011-04-26 14:01:42 -07:00
times.h
timex.h ntp: Add ADJ_SETOFFSET mode bit 2011-02-02 15:28:18 +01:00
tiocl.h [PATCH] vt: add TIOCL_GETKMSGREDIRECT 2006-03-31 12:18:56 -08:00
tipc.h tipc: Abort excessive send requests as early as possible 2011-05-10 16:03:56 -04:00
tipc_config.h tipc: Correct misnamed references to neighbor discovery domain 2011-03-13 16:35:18 -04:00
topology.h mm: increase RECLAIM_DISTANCE to 30 2011-06-15 20:03:59 -07:00
toshiba.h toshiba.h: hide a function prototypes behind __KERNEL__ macro 2011-01-13 08:03:08 -08:00
tpm.h key: add tpm_send command 2010-11-29 08:55:22 +11:00
tpm_command.h keys: add new trusted key-type 2010-11-29 08:55:25 +11:00
trace_clock.h tracing: implement trace_clock_*() APIs 2009-02-26 18:44:06 +01:00
trace_seq.h tracing: Add full state to trace_seq 2009-12-09 14:05:49 -05:00
tracehook.h kill tracehook_notify_death() 2011-06-27 20:30:08 +02:00
tracepoint.h jump label: Introduce static_branch() interface 2011-04-04 12:48:08 -04:00
transport_class.h driver model: constify attribute groups 2009-09-15 09:50:47 -07:00
trdevice.h [TR]: endiannness annotations 2006-09-28 17:53:59 -07:00
tsacct_kern.h [PATCH] csa: convert CONFIG tag for extended accounting routines 2006-10-01 00:39:29 -07:00
tty.h TTY: pty, fix pty counting 2011-08-23 10:10:38 -07:00
tty_driver.h TTY: pty, fix pty counting 2011-08-23 10:10:38 -07:00
tty_flip.h USB: tty: Add a function to insert a string of characters with the same flag 2010-03-02 14:55:11 -08:00
tty_ldisc.h Revert "tty: make receive_buf() return the amout of bytes received" 2011-06-04 06:33:24 +09:00
typecheck.h
types.h add the common dma_addr_t typedef to include/linux/types.h 2011-03-22 17:44:09 -07:00
u64_stats_sync.h Kill off a bunch of warning: ‘inline’ is not at beginning of declaration 2010-11-28 23:08:04 +01:00
uaccess.h maccess,probe_kernel: Make write/read src const void * 2011-05-25 19:56:23 -04:00
ucb1400.h Fix common misspellings 2011-03-31 11:26:23 -03:00
udf_fs_i.h udf: move headers out include/linux/ 2008-04-17 14:22:23 +02:00
udp.h udp: bind() optimisation 2009-11-10 20:54:38 -08:00
uinput.h Input: introduce device properties 2010-12-20 09:37:33 +01:00
uio.h uio: mark uio.h functions __KERNEL__ only 2009-07-29 19:10:39 -07:00
uio_driver.h uio: Change mail address of Hans J. Koch 2010-11-10 16:57:11 -08:00
ultrasound.h Trivial: fix typo s/balence/balance/ 2009-06-12 18:01:45 +02:00
un.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
unistd.h [PATCH] remove remaining errno and __KERNEL_SYSCALLS__ references 2006-10-02 07:57:23 -07:00
usb.h USB: documentation update for the pre_reset method 2011-04-29 17:24:29 -07:00
usb_usual.h usb-storage: redo incorrect reads 2011-06-07 09:05:42 -07:00
usbdevice_fs.h usbdevfs: move compat_ioctl handling to devio.c 2009-12-10 22:55:37 +01:00
user-return-notifier.h core: Fix user return notifier on fork() 2009-11-29 22:03:04 +01:00
user.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
user_namespace.h user_ns: improve the user_ns on-the-slab packaging 2011-01-13 08:03:18 -08:00
utime.h make exported headers use strict posix types 2009-03-26 18:14:14 +01:00
uts.h uts: make default hostname configurable, rather than always using "(none)" 2011-06-15 20:04:00 -07:00
utsname.h userns: allow sethostname in a container 2011-03-23 19:47:03 -07:00
uuid.h Unified UUID/GUID definition 2010-05-19 22:40:47 -04:00
uvcvideo.h [media] uvcvideo: Make the API public 2011-05-20 09:30:46 -03:00
uwb.h Fix common misspellings 2011-03-31 11:26:23 -03:00
v4l2-mediabus.h [media] v4l: Add V4L2_MBUS_FMT_JPEG_1X8 media bus format 2011-05-20 11:28:49 -03:00
v4l2-subdev.h [media] v4l: v4l2_subdev userspace crop API 2011-03-22 04:53:33 -03:00
vermagic.h kbuild: move utsrelease.h to include/generated 2009-12-12 13:08:15 +01:00
veth.h [VETH]: move veth.h to include/linux 2007-12-26 19:36:35 -08:00
vfs.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
vga_switcheroo.h
vgaarb.h Fix common misspellings 2011-03-31 11:26:23 -03:00
vhost.h vhost_net: a kernel-level virtio server 2010-01-15 01:43:29 -08:00
via-core.h Merge branch 'viafb-next' of git://github.com/schandinat/linux-2.6 2010-11-10 12:04:41 +09:00
via-gpio.h viafb: move some include files to include/linux 2010-05-11 16:07:59 -06:00
via.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
via_i2c.h viafb: move some include files to include/linux 2010-05-11 16:07:59 -06:00
video_output.h ACPI: video: fix build for VIDEO_OUTPUT_CONTROL=n 2010-12-11 02:01:35 -05:00
videodev2.h [media] v4l: add control definitions for codec devices 2011-07-27 17:55:40 -03:00
virtio.h virtio: add api for delayed callbacks 2011-05-30 11:14:16 +09:30
virtio_9p.h virtio: add full three-clause BSD text to headers. 2011-05-30 11:14:14 +09:30
virtio_balloon.h virtio: add full three-clause BSD text to headers. 2011-05-30 11:14:14 +09:30
virtio_blk.h virtio: add full three-clause BSD text to headers. 2011-05-30 11:14:14 +09:30
virtio_config.h virtio: add full three-clause BSD text to headers. 2011-05-30 11:14:14 +09:30
virtio_console.h virtio: add full three-clause BSD text to headers. 2011-05-30 11:14:14 +09:30
virtio_ids.h virtio: add full three-clause BSD text to headers. 2011-05-30 11:14:14 +09:30
virtio_net.h virtio_net: introduce VIRTIO_NET_HDR_F_DATA_VALID 2011-06-11 15:57:47 -07:00
virtio_pci.h virtio: add full three-clause BSD text to headers. 2011-05-30 11:14:14 +09:30
virtio_ring.h virtio ring: inline function to check for events 2011-05-30 11:14:14 +09:30
virtio_rng.h virtio: let header files include virtio_ids.h 2009-10-22 16:39:28 +10:30
vlynq.h drivers: add support for the TI VLYNQ bus 2009-06-16 19:47:52 -07:00
vm_event_item.h mm: move enum vm_event_item into a standalone header file 2011-05-26 17:12:34 -07:00
vmalloc.h NOMMU: support SMP dynamic percpu_alloc 2011-03-28 12:53:29 +01:00
vmstat.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
vt.h notifiers: vt: move vt notifiers into vt.h 2011-07-25 20:57:15 -07:00
vt_buffer.h Don't include linux/config.h from anywhere else in include/ 2006-04-26 12:56:16 +01:00
vt_kern.h panic, vt: do not force oops output when panic_timeout < 0 2011-07-26 16:49:45 -07:00
w1-gpio.h w1-gpio: add external pull-up enable callback 2009-06-18 13:03:58 -07:00
wait.h wait: using uninitialized member of wait queue 2010-10-05 11:47:18 -07:00
wanrouter.h wanrouter: Fix ioctl handler declaration. 2008-05-29 01:43:48 -07:00
watchdog.h watchdog: WatchDog Timer Driver Core - Add minimum and max timeout 2011-07-28 08:01:18 +00:00
wimax.h Fix common misspellings 2011-03-31 11:26:23 -03:00
wireless.h wext: fix alignment problem in serializing 'struct iw_point' 2010-10-13 15:45:21 -04:00
wl12xx.h wl12xx: Handle platforms without level trigger interrupts 2011-04-19 16:49:20 +03:00
wm97xx.h Input: wm97xx - refactor channel selection in poll_sample() 2011-07-04 19:31:38 -07:00
workqueue.h atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
writeback.h squeeze max-pause area and drop pass-good area 2011-08-19 22:42:07 +08:00
x25.h X25: Enable setting of cause and diagnostic fields 2009-11-18 23:30:41 -08:00
xattr.h xattr.h: expose string defines to userspace 2011-05-25 08:39:45 -07:00
xfrm.h xfrm: Add basic infrastructure to support IPsec extended sequence numbers 2011-03-13 20:22:28 -07:00
xilinxfb.h Fix common misspellings 2011-03-31 11:26:23 -03:00
xz.h decompressors: add XZ decompressor module 2011-01-13 08:03:24 -08:00
yam.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
z2_battery.h
zconf.h [PATCH] zlib_inflate: Upgrade library code to a recent version 2006-06-22 15:05:58 -07:00
zlib.h zlib: slim down zlib_deflate() workspace when possible 2011-03-22 17:44:17 -07:00
zorro.h treewide: Convert uses of struct resource to resource_size(ptr) 2011-06-10 14:55:36 +02:00
zorro_ids.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
zutil.h [PATCH] zlib_inflate: Upgrade library code to a recent version 2006-06-22 15:05:58 -07:00