From: Ralf Baechle Date: Mon, 12 Sep 2005 21:26:52 +0000 (-0700) Subject: [ROSE]: ROSE has no ARP X-Git-Tag: v2.6.14-rc1~7^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2ce4bc340946d5b78484d638ac10df958c4c3bf;p=platform%2Fupstream%2Fkernel-adaptation-pc.git [ROSE]: ROSE has no ARP ARP over ROSE does not exist so it's obviously not implemented on any ROSE stack, so the ROSE interfaces really should default to IFF_NOARP. Signed-off-by: Ralf Baechle DL5RB Signed-off-by: David S. Miller --- diff --git a/net/rose/rose_dev.c b/net/rose/rose_dev.c index a8ed9a1..d297af7 100644 --- a/net/rose/rose_dev.c +++ b/net/rose/rose_dev.c @@ -149,6 +149,6 @@ void rose_setup(struct net_device *dev) dev->set_mac_address = rose_set_mac_address; /* New-style flags. */ - dev->flags = 0; + dev->flags = IFF_NOARP; dev->get_stats = rose_get_stats; }