From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ralf Baechle DL5RB Subject: [PATCH 10/12] ROSE has no ARP Date: Sun, 11 Sep 2005 23:19:32 +0100 Message-ID: <20050911221932.GA9336@linux-mips.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: To: "David S. Miller" , netdev@vger.kernel.org, linux-hams@vger.kernel.org Content-Disposition: inline Sender: linux-hams-owner@vger.kernel.org List-Id: netdev.vger.kernel.org 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 net/rose/rose_dev.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux-cvs/net/rose/rose_dev.c =================================================================== --- linux-cvs.orig/net/rose/rose_dev.c +++ linux-cvs/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; }