1. 07 8月, 2008 2 次提交
  2. 22 7月, 2008 2 次提交
  3. 24 5月, 2008 1 次提交
  4. 22 5月, 2008 1 次提交
  5. 24 4月, 2008 1 次提交
    • J
      arm/mach-integrator/time.c, mwave: revert portions of recent irq cleanups · 0d626239
      Jeff Garzik 提交于
      The recent irq cleanups for arch/arm/mach-integrator/time.c and
      drivers/char/mwave/tp3780i.c changed the request_irq() dev_id
      parameter, but neglected to change the matching free_irq() parameter,
      thus creating a bug upon irq de-registration.
      
      Given that the impetus for the changes is not yet accepted upstream,
      it is best to revert the irq cleanups.
      
      Mostly.  A comment is added to time.c to reduce future confusion,
      of type that led to my time.c cleanup in the first place.
      Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
      0d626239
  6. 21 4月, 2008 1 次提交
  7. 19 4月, 2008 1 次提交
  8. 28 1月, 2008 1 次提交
  9. 26 1月, 2008 1 次提交
  10. 25 1月, 2008 1 次提交
  11. 17 5月, 2007 1 次提交
  12. 16 5月, 2007 1 次提交
  13. 09 5月, 2007 1 次提交
  14. 22 4月, 2007 1 次提交
  15. 30 11月, 2006 2 次提交
  16. 07 10月, 2006 1 次提交
  17. 28 8月, 2006 1 次提交
  18. 02 8月, 2006 1 次提交
  19. 03 7月, 2006 1 次提交
  20. 02 7月, 2006 1 次提交
  21. 01 7月, 2006 1 次提交
  22. 10 6月, 2006 1 次提交
  23. 28 3月, 2006 1 次提交
  24. 27 3月, 2006 1 次提交
  25. 22 3月, 2006 1 次提交
  26. 16 2月, 2006 1 次提交
    • R
      [ARM] Fix SMP initialisation oops · 7bbb7940
      Russell King 提交于
      A change to the SMP initialisation caused the following oops:
      
       CPU1: Booted secondary processor
       CPU1: D VIPT write-back cache
       CPU1: I cache: 32768 bytes, associativity 4, 32 byte lines, 256 sets
       CPU1: D cache: 32768 bytes, associativity 4, 32 byte lines, 256 sets
       <7>Calibrating delay loop... 83.14 BogoMIPS (lpj=415744)
       <1>Unable to handle kernel NULL pointer dereference at virtual address 0000001c
       ...
       PC is at enqueue_task+0x1c/0x64
       LR is at activate_task+0xcc/0xe4
      
      SMP initialisation now requires cpu_possible_map to be initialised in
      setup_arch().  Move this from smp_prepare_cpus() to smp_init_cpus()
      and call it from our setup_arch() if CONFIG_SMP is enabled.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      7bbb7940
  27. 29 1月, 2006 1 次提交
  28. 14 1月, 2006 2 次提交
  29. 13 1月, 2006 1 次提交
  30. 09 1月, 2006 1 次提交
  31. 08 1月, 2006 1 次提交
  32. 07 1月, 2006 1 次提交
  33. 04 1月, 2006 2 次提交
  34. 07 11月, 2005 1 次提交
  35. 31 10月, 2005 1 次提交
    • T
      [PATCH] fix missing includes · 4e57b681
      Tim Schmielau 提交于
      I recently picked up my older work to remove unnecessary #includes of
      sched.h, starting from a patch by Dave Jones to not include sched.h
      from module.h. This reduces the number of indirect includes of sched.h
      by ~300. Another ~400 pointless direct includes can be removed after
      this disentangling (patch to follow later).
      However, quite a few indirect includes need to be fixed up for this.
      
      In order to feed the patches through -mm with as little disturbance as
      possible, I've split out the fixes I accumulated up to now (complete for
      i386 and x86_64, more archs to follow later) and post them before the real
      patch.  This way this large part of the patch is kept simple with only
      adding #includes, and all hunks are independent of each other.  So if any
      hunk rejects or gets in the way of other patches, just drop it.  My scripts
      will pick it up again in the next round.
      Signed-off-by: NTim Schmielau <tim@physik3.uni-rostock.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4e57b681