Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37671
b: refs/heads/master
c: df3fe8d
h: refs/heads/master
i:
  37669: 64d97fe
  37667: ac8ce8c
  37663: 8894c7b
v: v3
  • Loading branch information
Corey Minyard authored and Linus Torvalds committed Oct 1, 2006
1 parent 7295a7a commit f53a131
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dcb9c39236a27c2288a7059aa504abb57427df7c
refs/heads/master: df3fe8defedc52745526914e12eb4ba0b8a9f6ca
6 changes: 5 additions & 1 deletion trunk/drivers/char/ipmi/ipmi_si_intf.c
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,11 @@ static int smi_start_processing(void *send_info,
new_smi->last_timeout_jiffies = jiffies;
mod_timer(&new_smi->si_timer, jiffies + SI_TIMEOUT_JIFFIES);

if (new_smi->si_type != SI_BT) {
/*
* The BT interface is efficient enough to not need a thread,
* and there is no need for a thread if we have interrupts.
*/
if ((new_smi->si_type != SI_BT) && (!new_smi->irq)) {
new_smi->thread = kthread_run(ipmi_thread, new_smi,
"kipmi%d", new_smi->intf_num);
if (IS_ERR(new_smi->thread)) {
Expand Down

0 comments on commit f53a131

Please sign in to comment.