mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 23:04:43 +00:00
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net into net
Pull in 'net' to take in the bug fixes that didn't make it into 3.8-final. Also, deal with the semantic conflict of the change made to net/ipv6/xfrm6_policy.c A missing rt6->n neighbour release was added to 'net', but in 'net-next' we no longer cache the neighbour entries in the ipv6 routes so that change is not appropriate there. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
6338a53a2b
60 changed files with 753 additions and 627 deletions
|
@ -132,6 +132,7 @@ static void xenvif_up(struct xenvif *vif)
|
|||
static void xenvif_down(struct xenvif *vif)
|
||||
{
|
||||
disable_irq(vif->irq);
|
||||
del_timer_sync(&vif->credit_timeout);
|
||||
xen_netbk_deschedule_xenvif(vif);
|
||||
xen_netbk_remove_xenvif(vif);
|
||||
}
|
||||
|
@ -365,8 +366,6 @@ void xenvif_disconnect(struct xenvif *vif)
|
|||
atomic_dec(&vif->refcnt);
|
||||
wait_event(vif->waiting_to_free, atomic_read(&vif->refcnt) == 0);
|
||||
|
||||
del_timer_sync(&vif->credit_timeout);
|
||||
|
||||
if (vif->irq)
|
||||
unbind_from_irqhandler(vif->irq, vif);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue