1. 25 4月, 2008 3 次提交
  2. 26 1月, 2008 11 次提交
  3. 12 12月, 2007 1 次提交
  4. 22 10月, 2007 1 次提交
  5. 11 10月, 2007 1 次提交
  6. 10 10月, 2007 9 次提交
  7. 19 7月, 2007 2 次提交
  8. 18 7月, 2007 1 次提交
    • R
      Freezer: make kernel threads nonfreezable by default · 83144186
      Rafael J. Wysocki 提交于
      Currently, the freezer treats all tasks as freezable, except for the kernel
      threads that explicitly set the PF_NOFREEZE flag for themselves.  This
      approach is problematic, since it requires every kernel thread to either
      set PF_NOFREEZE explicitly, or call try_to_freeze(), even if it doesn't
      care for the freezing of tasks at all.
      
      It seems better to only require the kernel threads that want to or need to
      be frozen to use some freezer-related code and to remove any
      freezer-related code from the other (nonfreezable) kernel threads, which is
      done in this patch.
      
      The patch causes all kernel threads to be nonfreezable by default (ie.  to
      have PF_NOFREEZE set by default) and introduces the set_freezable()
      function that should be called by the freezable kernel threads in order to
      unset PF_NOFREEZE.  It also makes all of the currently freezable kernel
      threads call set_freezable(), so it shouldn't cause any (intentional)
      change of behaviour to appear.  Additionally, it updates documentation to
      describe the freezing of tasks more accurately.
      
      [akpm@linux-foundation.org: build fixes]
      Signed-off-by: NRafael J. Wysocki <rjw@sisk.pl>
      Acked-by: NNigel Cunningham <nigel@nigel.suspend2.net>
      Cc: Pavel Machek <pavel@ucw.cz>
      Cc: Oleg Nesterov <oleg@tv-sign.ru>
      Cc: Gautham R Shenoy <ego@in.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      83144186
  9. 21 2月, 2007 4 次提交
  10. 13 2月, 2007 1 次提交
  11. 16 1月, 2007 1 次提交
    • M
      V4L/DVB (5020): Fix: disable interrupts while at KM_BOUNCE_READ · 35d6270b
      Mauro Carvalho Chehab 提交于
      vivi.c uses the KM_BOUNCE_READ with local interrupts enabled. 
      This means that if a disk interrupt occurs while vivi.c is using this
      fixmap slot, the vivi.c driver will, upon return from that interrupt, find
      that the fixmap slot now points at a different physical page.
      The net result will probably be rare corruption of disk file contents,
      because viv.c will now be altering the page which the disk code was
      recently using. 
      
      Thanks to Andrew Morton for pointing this.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      35d6270b
  12. 28 12月, 2006 2 次提交
  13. 10 12月, 2006 1 次提交
  14. 08 12月, 2006 1 次提交
  15. 14 10月, 2006 1 次提交