Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: drivers/net/ethernet/rocker/rocker.c The rocker commit was two overlapping changes, one to rename the ->vport member to ->pport, and another making the bitmask expression use '1ULL' instead of plain '1'. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -811,7 +811,7 @@ static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout)
|
||||
break;
|
||||
}
|
||||
spin_unlock_irqrestore(&self->spinlock, flags);
|
||||
current->state = TASK_RUNNING;
|
||||
__set_current_state(TASK_RUNNING);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@@ -305,7 +305,7 @@ irnet_ctrl_read(irnet_socket * ap,
|
||||
|
||||
/* Put ourselves on the wait queue to be woken up */
|
||||
add_wait_queue(&irnet_events.rwait, &wait);
|
||||
current->state = TASK_INTERRUPTIBLE;
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
for(;;)
|
||||
{
|
||||
/* If there is unread events */
|
||||
@@ -321,7 +321,7 @@ irnet_ctrl_read(irnet_socket * ap,
|
||||
/* Yield and wait to be woken up */
|
||||
schedule();
|
||||
}
|
||||
current->state = TASK_RUNNING;
|
||||
__set_current_state(TASK_RUNNING);
|
||||
remove_wait_queue(&irnet_events.rwait, &wait);
|
||||
|
||||
/* Did we got it ? */
|
||||
|
Reference in New Issue
Block a user