1. 05 6月, 2014 1 次提交
  2. 04 4月, 2014 1 次提交
    • P
      kernel: audit/fix non-modular users of module_init in core code · c96d6660
      Paul Gortmaker 提交于
      Code that is obj-y (always built-in) or dependent on a bool Kconfig
      (built-in or absent) can never be modular.  So using module_init as an
      alias for __initcall can be somewhat misleading.
      
      Fix these up now, so that we can relocate module_init from init.h into
      module.h in the future.  If we don't do this, we'd have to add module.h
      to obviously non-modular code, and that would be a worse thing.
      
      The audit targets the following module_init users for change:
       kernel/user.c                  obj-y
       kernel/kexec.c                 bool KEXEC (one instance per arch)
       kernel/profile.c               bool PROFILING
       kernel/hung_task.c             bool DETECT_HUNG_TASK
       kernel/sched/stats.c           bool SCHEDSTATS
       kernel/user_namespace.c        bool USER_NS
      
      Note that direct use of __initcall is discouraged, vs.  one of the
      priority categorized subgroups.  As __initcall gets mapped onto
      device_initcall, our use of subsys_initcall (which makes sense for these
      files) will thus change this registration from level 6-device to level
      4-subsys (i.e.  slightly earlier).  However no observable impact of that
      difference has been observed during testing.
      
      Also, two instances of missing ";" at EOL are fixed in kexec.
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Eric Biederman <ebiederm@xmission.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      c96d6660
  3. 25 1月, 2014 1 次提交
  4. 06 11月, 2013 1 次提交
  5. 31 10月, 2013 1 次提交
  6. 23 9月, 2013 1 次提交
  7. 02 8月, 2013 1 次提交
    • O
      hung_task debugging: Print more info when reporting the problem · 41e85ce8
      Oleg Nesterov 提交于
      printk(KERN_ERR) from check_hung_task() likely means we have a bug,
      but unlike BUG_ON()/WARN_ON ()it doesn't show the kernel version,
      this complicates the bug-reports investigation.
      
      Add the additional pr_err() to print tainted/release/version
      like dump_stack_print_info() does, the output becomes:
      
              INFO: task perl:504 blocked for more than 2 seconds.
      	      Not tainted 3.11.0-rc1-10367-g136bb46-dirty #1763
              "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
              ...
      
      While at it, turn the old printk's into pr_err().
      Signed-off-by: NOleg Nesterov <oleg@redhat.com>
      Cc: ahecox@redhat.com
      Cc: Christopher Williams <cww@redhat.com>
      Cc: dwysocha@redhat.com
      Cc: gavin@redhat.com
      Cc: Mandeep Singh Baines <msb@chromium.org>
      Cc: nshi@redhat.com
      Cc: Linus Torvalds <torvalds@linux-foundation.org>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Link: http://lkml.kernel.org/r/20130801165941.GA17544@redhat.comSigned-off-by: NIngo Molnar <mingo@kernel.org>
      41e85ce8
  8. 25 4月, 2012 1 次提交
  9. 06 3月, 2012 1 次提交
    • O
      hung_task: fix the broken rcu_lock_break() logic · 6027ce49
      Oleg Nesterov 提交于
      check_hung_uninterruptible_tasks()->rcu_lock_break() introduced by
      "softlockup: check all tasks in hung_task" commit ce9dbe24 looks
      absolutely wrong.
      
      	- rcu_lock_break() does put_task_struct(). If the task has exited
      	  it is not safe to even read its ->state, nothing protects this
      	  task_struct.
      
      	- The TASK_DEAD checks are wrong too. Contrary to the comment, we
      	  can't use it to check if the task was unhashed. It can be unhashed
      	  without TASK_DEAD, or it can be valid with TASK_DEAD.
      
      	  For example, an autoreaping task can do release_task(current)
      	  long before it sets TASK_DEAD in do_exit().
      
      	  Or, a zombie task can have ->state == TASK_DEAD but release_task()
      	  was not called, and in this case we must not break the loop.
      
      Change this code to check pid_alive() instead, and do this before we drop
      the reference to the task_struct.
      
      Note: while_each_thread() under rcu_read_lock() is not really safe, it can
      livelock.  This will be fixed later, but fortunately in this case the
      "max_count" logic saves us anyway.
      Signed-off-by: NOleg Nesterov <oleg@redhat.com>
      Acked-by: NFrederic Weisbecker <fweisbec@gmail.com>
      Acked-by: NMandeep Singh Baines <msb@google.com>
      Acked-by: NPaul E. McKenney <paulmck@linux.vnet.ibm.com>
      Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      6027ce49
  10. 04 1月, 2012 1 次提交
  11. 31 10月, 2011 1 次提交
  12. 28 4月, 2011 1 次提交
  13. 17 8月, 2010 2 次提交
  14. 27 11月, 2009 1 次提交
  15. 24 9月, 2009 1 次提交
  16. 11 2月, 2009 1 次提交
  17. 09 2月, 2009 1 次提交
  18. 06 2月, 2009 2 次提交
  19. 19 1月, 2009 1 次提交
  20. 16 1月, 2009 1 次提交