This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / net / dummy.c
index 7e15c51..fc0a851 100644 (file)
@@ -57,6 +57,13 @@ static void set_multicast_list(struct net_device *dev)
 {
 }
 
+#ifdef CONFIG_NET_FASTROUTE
+static int dummy_accept_fastpath(struct net_device *dev, struct dst_entry *dst)
+{
+       return -1;
+}
+#endif
+
 static void __init dummy_setup(struct net_device *dev)
 {
        /* Initialize the device structure. */
@@ -64,6 +71,9 @@ static void __init dummy_setup(struct net_device *dev)
        dev->hard_start_xmit = dummy_xmit;
        dev->set_multicast_list = set_multicast_list;
        dev->set_mac_address = dummy_set_address;
+#ifdef CONFIG_NET_FASTROUTE
+       dev->accept_fastpath = dummy_accept_fastpath;
+#endif
 
        /* Fill in device structure with ethernet-generic values. */
        ether_setup(dev);