aboutsummaryrefslogtreecommitdiffstats
path: root/xen-2.4.16/net/devinit.c
blob: f3ce2c39d43572a3e7086594bb8f09ad9b413f8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/******************************************************************************
 * devinit.c
 * 
 * This is the watchdog timer routines, ripped from sch_generic.c
 * Original copyright notice appears below.
 * 
 */

/*
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 *
 * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
 *              Jamal Hadi Salim, <hadi@nortelnetworks.com> 990601
 *              - Ingress support
 */

#include <asm/uaccess.h>
#include <asm/system.h>
#include <asm/bitops.h>
#include <linux/config.h>
#include <linux/types.h>
#include <linux/sched.h>
#include <linux/lib.h>
#include <linux/mm.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/errno.h>
#include <linux/interrupt.h>
#include <linux/netdevice.h>
#include <linux/skbuff.h>
#include <linux/init.h>

static void dev_watchdog(unsigned long arg)
{
    struct net_device *dev = (struct net_device *)arg;

    spin_lock(&dev->xmit_lock);
    if (netif_device_present(dev) &&
        netif_running(dev) &&
        netif_carrier_ok(dev)) {
        if (netif_queue_stopped(dev) &&
            (jiffies - dev->trans_start) > dev->watchdog_timeo) {
            printk(KERN_INFO "NETDEV WATCHDOG: %s: transmit timed out\n", dev->name);
            dev->tx_timeout(dev);
        }
        if (!mod_timer(&dev->watchdog_timer, jiffies + dev->watchdog_timeo))
            dev_hold(dev);
    }
    spin_unlock(&dev->xmit_lock);

    dev_put(dev);
}

static void dev_watchdog_init(struct net_device *dev)
{
    init_timer(&dev->watchdog_timer);
    dev->watchdog_timer.data = (unsigned long)dev;
    dev->watchdog_timer.function = dev_watchdog;
}

void __netdev_watchdog_up(struct net_device *dev)
{
    if (dev->tx_timeout) {
        if (dev->watchdog_timeo <= 0)
            dev->watchdog_timeo = 5*HZ;
        if (!mod_timer(&dev->watchdog_timer, jiffies + dev->watchdog_timeo))
            dev_hold(dev);
    }
}

static void dev_watchdog_up(struct net_device *dev)
{
    spin_lock_bh(&dev->xmit_lock);
    __netdev_watchdog_up(dev);
    spin_unlock_bh(&dev->xmit_lock);
}

static void dev_watchdog_down(struct net_device *dev)
{
    spin_lock_bh(&dev->xmit_lock);
    if (del_timer(&dev->watchdog_timer))
        __dev_put(dev);
    spin_unlock_bh(&dev->xmit_lock);
}

void dev_activate(struct net_device *dev)
{
    spin_lock_bh(&dev->queue_lock);
    dev->trans_start = jiffies;
    dev_watchdog_up(dev);
    spin_unlock_bh(&dev->queue_lock);
}

void dev_deactivate(struct net_device *dev)
{
    dev_watchdog_down(dev);
}

void dev_init_scheduler(struct net_device *dev)
{
    dev_watchdog_init(dev);
}

void dev_shutdown(struct net_device *dev)
{
}