1. 14 5月, 2009 3 次提交
  2. 24 3月, 2009 1 次提交
  3. 11 1月, 2009 2 次提交
  4. 28 10月, 2008 1 次提交
  5. 11 10月, 2008 1 次提交
  6. 04 10月, 2008 1 次提交
  7. 06 6月, 2008 1 次提交
  8. 12 10月, 2007 1 次提交
  9. 13 7月, 2007 1 次提交
  10. 11 7月, 2007 2 次提交
  11. 06 7月, 2007 1 次提交
    • R
      [MIPS] Fix scheduling latency issue on 24K, 34K and 74K cores · 4b3e975e
      Ralf Baechle 提交于
      The idle loop goes to sleep using the WAIT instruction if !need_resched().
      This has is suffering from from a race condition that if if just after
      need_resched has returned 0 an interrupt might set TIF_NEED_RESCHED but
      we've just completed the test so go to sleep anyway.  This would be
      trivial to fix by just disabling interrupts during that sequence as in:
      
              local_irq_disable();
              if (!need_resched())
                      __asm__("wait");
              local_irq_enable();
      
      but the processor architecture leaves it undefined if a processor calling
      WAIT with interrupts disabled will ever restart its pipeline and indeed
      some processors have made use of the freedom provided by the architecture
      definition.  This has been resolved and the Config7.WII bit indicates that
      the use of WAIT is safe on 24K, 24KE and 34K cores.  It also is safe on
      74K starting revision 2.1.0 so enable the use of WAIT with interrupts
      disabled for 74K based on a c0_prid of at least that.
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      4b3e975e
  12. 30 11月, 2006 1 次提交
  13. 14 7月, 2006 3 次提交
  14. 30 6月, 2006 1 次提交
  15. 20 6月, 2006 1 次提交
  16. 01 6月, 2006 1 次提交
  17. 26 4月, 2006 1 次提交
  18. 19 4月, 2006 2 次提交
  19. 10 1月, 2006 1 次提交
  20. 30 10月, 2005 13 次提交
  21. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4