Commit 7c72df50 authored by tzachar@cs.bgu.ac.il's avatar tzachar@cs.bgu.ac.il Committed by Linus Torvalds

[PATCH] uml: slirp driver tells the network it's not ethernet

Tell the netdevice code that a slirp device is not ethernet.
Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 24823b08
...@@ -33,8 +33,11 @@ void slirp_init(struct net_device *dev, void *data) ...@@ -33,8 +33,11 @@ void slirp_init(struct net_device *dev, void *data)
dev->init = NULL; dev->init = NULL;
dev->hard_header_len = 0; dev->hard_header_len = 0;
dev->addr_len = 4; dev->header_cache_update = NULL;
dev->type = ARPHRD_ETHER; dev->hard_header_cache = NULL;
dev->hard_header = NULL;
dev->addr_len = 0;
dev->type = ARPHRD_SLIP;
dev->tx_queue_len = 256; dev->tx_queue_len = 256;
dev->flags = IFF_NOARP; dev->flags = IFF_NOARP;
printk("SLIRP backend - command line:"); printk("SLIRP backend - command line:");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment