On Fri, 9 Oct 2009 16:09:09 -0500 Matt Domsch <Matt_Domsch@xxxxxxxx> wrote: > On Fri, Oct 09, 2009 at 09:00:01AM -0500, Narendra K wrote: > > On Fri, Oct 09, 2009 at 07:12:07PM +0530, K, Narendra wrote: > > > > example udev config: > > > > SUBSYSTEM=="net", > > > SYMLINK+="net/by-mac/$sysfs{ifindex}.$sysfs{address}" > > > > > > work as well. But coupling the ifindex to the MAC address like this > > > doesn't work. (In general, coupling any two unrelated attributes when > > > trying to do persistent names doesn't work.) > > > > > Attaching the latest patch incorporating review comments. > > Same patch, rebased to linux-next. > > By creating character devices for every network device, we can use > udev to maintain alternate naming policies for devices, including > additional names for the same device, without interfering with the > name that the kernel assigns a device. > > This is conditionalized on CONFIG_NET_CDEV. If enabled (the default), > device nodes will automatically be created in /dev/netdev/ for each > network device. (/dev/net/ is already populated by the tun device.) > > These device nodes are not functional at the moment - open() returns > -ENOSYS. Their only purpose is to provide userspace with a kernel > name to ifindex mapping, in a form that udev can easily manage. > > Signed-off-by: Jordan Hargrave <Jordan_Hargrave@xxxxxxxx> > Signed-off-by: Narendra K <Narendra_K@xxxxxxxx> > Signed-off-by: Matt Domsch <Matt_Domsch@xxxxxxxx> Maybe I'm dense but can't see why having a useless /dev/net/ symlinks is a good interface choice. Perhaps you should explain the race between PCI scan and udev in more detail, and why solving it in either of those places won't work. As it stands you are proposing yet another wart to the already complex set of network interface API's which has implications for security as well as increasing the number of possible bugs. -- -- To unsubscribe from this list: send the line "unsubscribe linux-hotplug" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html