David Miller <davem@xxxxxxxxxxxxx> writes: > From: Dan Williams <dcbw@xxxxxxxxxx> > >> IFF_NOARP is already done for other WWAN devices (sierra_net, hso, >> cdc-ether, cdc-phonet, lg-vl600, etc) so there is some precedent. Some >> drivers (phonet, hso) set *both* POINTTOPOINT and NOARP. Is that >> redundant, and should all WWAN drivers be moved to only POINTTOPOINT? >> >> (aside: usbnet has FLAG_POINTTOPOINT, but that's nothing to do with >> IFF_POINTTOPOINT, it only controls whether the interface is named usbX >> or ethX. Confusing.) > > I can't answer any of your questions unless you tell me what the > real limitation of these devices is. > > For the second time, is the problem that these devices cannot > support broadcast packets properly? The main problem is that these devices don't support ethernet. They support IP (v4 and _maybe_ v6) with an ethernet header. Many of them will do ARP (and IPv6 ND) as well to complete the picture, but some of them don't and that's what these drivers try to deal with. Note that most of the devices will run a DHCP server, so there is some sort of IP broadcast support. Whether that qualifies as proper ethernet broadcast support is another question... These devices are attempting to bridge an IP-only point-to-point interface and an ethernet over USB interface, with the intention to make the point-to-point interface look like ethernet to applications and users. This is of course always going to be imperfect. But I believe that we should aim to help the firmware achive this goal when writing drivers instead of working against it. Setting IFF_NOARP and not IFF_POINTTOPOINT is one way to do that. Bjørn -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html