1. 18 3月, 2009 1 次提交
  2. 28 10月, 2008 1 次提交
  3. 23 10月, 2008 1 次提交
  4. 18 10月, 2008 1 次提交
  5. 23 9月, 2008 1 次提交
  6. 24 8月, 2008 1 次提交
  7. 14 8月, 2008 1 次提交
  8. 22 7月, 2008 2 次提交
  9. 10 7月, 2008 2 次提交
  10. 03 5月, 2008 1 次提交
  11. 29 4月, 2008 2 次提交
  12. 25 4月, 2008 3 次提交
  13. 19 4月, 2008 1 次提交
  14. 02 2月, 2008 3 次提交
  15. 15 10月, 2007 1 次提交
  16. 13 10月, 2007 8 次提交
  17. 23 8月, 2007 2 次提交
  18. 20 7月, 2007 4 次提交
  19. 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
  20. 13 7月, 2007 1 次提交
  21. 09 6月, 2007 2 次提交
    • S
      USB: cxacru: ignore error trying to start ADSL in atm_start · fd209e35
      Simon Arlott 提交于
      The sysfs adsl_status attribute ignores (aside from returning -EIO to the
      user) any error sending a START/STOP command to the device and there is at
      least one firmware which never sends a response but appears to work
      regardless.  Therefore atm_start should also continue if an error is received
      so that such firmware is usable.
      
      The official Conexant driver doesn't expect a reply either but this is for
      another device (E2 router) and a commonly used firmware does respond.
      
      Also, there is no point in changing -ECONNRESET to -ETIMEDOUT since nothing
      ever checks for either of these values.
      Signed-off-by: NSimon Arlott <simon@fire.lp0.eu>
      Cc: Duncan Sands <duncan.sands@math.u-psud.fr>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      fd209e35
    • S
      USB: cxacru: create sysfs attributes in atm_start instead of bind · da1f82b5
      Simon Arlott 提交于
      Since usbatm doesn't set the usb_interface driver data until after calling
      bind and heavy_init, it would be NULL when the sysfs attributes are read.
      Reading the MAC address from atm_dev before atm_dev exists would have been
      be possible too.
      
      Calling create_device_file in atm_start will avoid this problem, and the
      data is useless until the first status poll runs.  However, it must be
      ready before a status poll does a printk on line status change otherwise
      userspace could react before the files exist.
      
      For completeness I've moved remove_device_file to atm_stop so it's not
      called in unbind when it's not needed.  There's no point starting ADSL if
      atm_start could still fail either.
      Signed-off-by: NSimon Arlott <simon@fire.lp0.eu>
      Cc: Duncan Sands <duncan.sands@math.u-psud.fr>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      da1f82b5