Dmitry Eremin-Solenikov wrote: > fakelb is a virtual loopback driver implementing one or several > interconnected radios. > + > +static int radios = 3; > +module_param(radios, int, 0444); > +MODULE_PARM_DESC(radios, "Number of simulated radios"); > + > + > + for (i = 0; i < radios; i++) { > + err = ieee802154fake_add_priv(&pdev->dev, priv); > + if (err < 0) > + goto err_slave; > + } > + Hi Dimtry, creating software networking devices like this is IMO not state-of-the-art for kernel inclusion. Please use the NETLINK interface for creating the virtual loopback drivers, like e.g. the virtual CAN driver (drivers/net/can/vcan.c) does. Regards, Oliver -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html