2.移除device与net_device之间的设定 /* Set the sysfs physical device reference for the network logical device * if set prior to registration will cause a symlink during initialization. */
#define SET_NETDEV_DEV(net, pdev)((net)->dev.parent = (pdev)) //device与net_device之间的设定移除不会影响目前我了解的基本动作,比如:ping与arp table的建 //立,但ifconfig下的信息则不会自动建立而需要执行ifconfig相关指令生成。(因为没有设备信息, //则设备自动生成信息的那部分也相当也拿掉了,所以需要自己去建立)-----括号中是自己的猜想, //具体ifconfig抓取的那边信息生成的eth0这边还未找到=-=