net_init.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:19k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* net_init.c: Initialization for network devices. */
  2. /*
  3. Written 1993,1994,1995 by Donald Becker.
  4. The author may be reached as becker@scyld.com, or C/O
  5. Scyld Computing Corporation
  6. 410 Severn Ave., Suite 210
  7. Annapolis MD 21403
  8. This file contains the initialization for the "pl14+" style ethernet
  9. drivers.  It should eventually replace most of drivers/net/Space.c.
  10. It's primary advantage is that it's able to allocate low-memory buffers.
  11. A secondary advantage is that the dangerous NE*000 netcards can reserve
  12. their I/O port region before the SCSI probes start.
  13. Modifications/additions by Bjorn Ekwall <bj0rn@blox.se>:
  14. ethdev_index[MAX_ETH_CARDS]
  15. register_netdev() / unregister_netdev()
  16. Modifications by Wolfgang Walter
  17. Use dev_close cleanly so we always shut things down tidily.
  18. Changed 29/10/95, Alan Cox to pass sockaddr's around for mac addresses.
  19. 14/06/96 - Paul Gortmaker: Add generic eth_change_mtu() function. 
  20. 24/09/96 - Paul Norton: Add token-ring variants of the netdev functions. 
  21. 08/11/99 - Alan Cox: Got fed up of the mess in this file and cleaned it
  22. up. We now share common code and have regularised name
  23. allocation setups. Abolished the 16 card limits.
  24. 03/19/2000 - jgarzik and Urban Widmark: init_etherdev 32-byte align
  25. 03/21/2001 - jgarzik: alloc_etherdev and friends
  26. */
  27. #include <linux/config.h>
  28. #include <linux/module.h>
  29. #include <linux/kernel.h>
  30. #include <linux/sched.h>
  31. #include <linux/types.h>
  32. #include <linux/fs.h>
  33. #include <linux/slab.h>
  34. #include <linux/if_ether.h>
  35. #include <linux/string.h>
  36. #include <linux/netdevice.h>
  37. #include <linux/etherdevice.h>
  38. #include <linux/fddidevice.h>
  39. #include <linux/hippidevice.h>
  40. #include <linux/trdevice.h>
  41. #include <linux/fcdevice.h>
  42. #include <linux/if_arp.h>
  43. #include <linux/if_ltalk.h>
  44. #include <linux/rtnetlink.h>
  45. #include <net/neighbour.h>
  46. /* The network devices currently exist only in the socket namespace, so these
  47.    entries are unused.  The only ones that make sense are
  48.     open start the ethercard
  49.     close stop  the ethercard
  50.     ioctl To get statistics, perhaps set the interface port (AUI, BNC, etc.)
  51.    One can also imagine getting raw packets using
  52.     read & write
  53.    but this is probably better handled by a raw packet socket.
  54.    Given that almost all of these functions are handled in the current
  55.    socket-based scheme, putting ethercard devices in /dev/ seems pointless.
  56.    
  57.    [Removed all support for /dev network devices. When someone adds
  58.     streams then by magic we get them, but otherwise they are un-needed
  59. and a space waste]
  60. */
  61. static struct net_device *alloc_netdev(int sizeof_priv, const char *mask,
  62.        void (*setup)(struct net_device *))
  63. {
  64. struct net_device *dev;
  65. int alloc_size;
  66. /* ensure 32-byte alignment of the private area */
  67. alloc_size = sizeof (*dev) + sizeof_priv + 31;
  68. dev = (struct net_device *) kmalloc (alloc_size, GFP_KERNEL);
  69. if (dev == NULL)
  70. {
  71. printk(KERN_ERR "alloc_dev: Unable to allocate device memory.n");
  72. return NULL;
  73. }
  74. memset(dev, 0, alloc_size);
  75. if (sizeof_priv)
  76. dev->priv = (void *) (((long)(dev + 1) + 31) & ~31);
  77. setup(dev);
  78. strcpy(dev->name, mask);
  79. return dev;
  80. }
  81. static struct net_device *init_alloc_dev(int sizeof_priv)
  82. {
  83. struct net_device *dev;
  84. int alloc_size;
  85. /* ensure 32-byte alignment of the private area */
  86. alloc_size = sizeof (*dev) + sizeof_priv + 31;
  87. dev = (struct net_device *) kmalloc (alloc_size, GFP_KERNEL);
  88. if (dev == NULL)
  89. {
  90. printk(KERN_ERR "alloc_dev: Unable to allocate device memory.n");
  91. return NULL;
  92. }
  93. memset(dev, 0, alloc_size);
  94. if (sizeof_priv)
  95. dev->priv = (void *) (((long)(dev + 1) + 31) & ~31);
  96. return dev;
  97. }
  98. /* 
  99.  * Create and name a device from a prototype, then perform any needed
  100.  * setup.
  101.  */
  102. static struct net_device *init_netdev(struct net_device *dev, int sizeof_priv,
  103.       char *mask, void (*setup)(struct net_device *))
  104. {
  105. int new_device = 0;
  106. /*
  107.  * Allocate a device if one is not provided.
  108.  */
  109.  
  110. if (dev == NULL) {
  111. dev=init_alloc_dev(sizeof_priv);
  112. if(dev==NULL)
  113. return NULL;
  114. new_device = 1;
  115. }
  116. /*
  117.  * Allocate a name
  118.  */
  119.  
  120. if (dev->name[0] == '' || dev->name[0] == ' ') {
  121. strcpy(dev->name, mask);
  122. if (dev_alloc_name(dev, mask)<0) {
  123. if (new_device)
  124. kfree(dev);
  125. return NULL;
  126. }
  127. }
  128. netdev_boot_setup_check(dev);
  129. /*
  130.  * Configure via the caller provided setup function then
  131.  * register if needed.
  132.  */
  133. setup(dev);
  134. if (new_device) {
  135. int err;
  136. rtnl_lock();
  137. err = register_netdevice(dev);
  138. rtnl_unlock();
  139. if (err < 0) {
  140. kfree(dev);
  141. dev = NULL;
  142. }
  143. }
  144. return dev;
  145. }
  146. #if defined(CONFIG_HIPPI) || defined(CONFIG_TR) || defined(CONFIG_NET_FC)
  147. static int __register_netdev(struct net_device *dev)
  148. {
  149. if (dev->init && dev->init(dev) != 0) {
  150. unregister_netdev(dev);
  151. return -EIO;
  152. }
  153. return 0;
  154. }
  155. #endif
  156. /**
  157.  * init_etherdev - Register ethernet device
  158.  * @dev: An ethernet device structure to be filled in, or %NULL if a new
  159.  * struct should be allocated.
  160.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  161.  * for this ethernet device
  162.  *
  163.  * Fill in the fields of the device structure with ethernet-generic values.
  164.  *
  165.  * If no device structure is passed, a new one is constructed, complete with
  166.  * a private data area of size @sizeof_priv.  A 32-byte (not bit)
  167.  * alignment is enforced for this private data area.
  168.  *
  169.  * If an empty string area is passed as dev->name, or a new structure is made,
  170.  * a new name string is constructed.
  171.  */
  172. struct net_device *init_etherdev(struct net_device *dev, int sizeof_priv)
  173. {
  174. return init_netdev(dev, sizeof_priv, "eth%d", ether_setup);
  175. }
  176. /**
  177.  * alloc_etherdev - Allocates and sets up an ethernet device
  178.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  179.  * for this ethernet device
  180.  *
  181.  * Fill in the fields of the device structure with ethernet-generic
  182.  * values. Basically does everything except registering the device.
  183.  *
  184.  * Constructs a new net device, complete with a private data area of
  185.  * size @sizeof_priv.  A 32-byte (not bit) alignment is enforced for
  186.  * this private data area.
  187.  */
  188. struct net_device *alloc_etherdev(int sizeof_priv)
  189. {
  190. return alloc_netdev(sizeof_priv, "eth%d", ether_setup);
  191. }
  192. EXPORT_SYMBOL(init_etherdev);
  193. EXPORT_SYMBOL(alloc_etherdev);
  194. static int eth_mac_addr(struct net_device *dev, void *p)
  195. {
  196. struct sockaddr *addr=p;
  197. if (netif_running(dev))
  198. return -EBUSY;
  199. memcpy(dev->dev_addr, addr->sa_data,dev->addr_len);
  200. return 0;
  201. }
  202. static int eth_change_mtu(struct net_device *dev, int new_mtu)
  203. {
  204. if ((new_mtu < 68) || (new_mtu > 1500))
  205. return -EINVAL;
  206. dev->mtu = new_mtu;
  207. return 0;
  208. }
  209. #ifdef CONFIG_FDDI
  210. /**
  211.  * init_fddidev - Register FDDI device
  212.  * @dev: A FDDI device structure to be filled in, or %NULL if a new
  213.  * struct should be allocated.
  214.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  215.  * for this ethernet device
  216.  *
  217.  * Fill in the fields of the device structure with FDDI-generic values.
  218.  *
  219.  * If no device structure is passed, a new one is constructed, complete with
  220.  * a private data area of size @sizeof_priv.  A 32-byte (not bit)
  221.  * alignment is enforced for this private data area.
  222.  *
  223.  * If an empty string area is passed as dev->name, or a new structure is made,
  224.  * a new name string is constructed.
  225.  */
  226. struct net_device *init_fddidev(struct net_device *dev, int sizeof_priv)
  227. {
  228. return init_netdev(dev, sizeof_priv, "fddi%d", fddi_setup);
  229. }
  230. /**
  231.  * alloc_fddidev - Register FDDI device
  232.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  233.  * for this FDDI device
  234.  *
  235.  * Fill in the fields of the device structure with FDDI-generic values.
  236.  *
  237.  * Constructs a new net device, complete with a private data area of
  238.  * size @sizeof_priv.  A 32-byte (not bit) alignment is enforced for
  239.  * this private data area.
  240.  */
  241. struct net_device *alloc_fddidev(int sizeof_priv)
  242. {
  243. return alloc_netdev(sizeof_priv, "fddi%d", fddi_setup);
  244. }
  245. EXPORT_SYMBOL(init_fddidev);
  246. EXPORT_SYMBOL(alloc_fddidev);
  247. static int fddi_change_mtu(struct net_device *dev, int new_mtu)
  248. {
  249. if ((new_mtu < FDDI_K_SNAP_HLEN) || (new_mtu > FDDI_K_SNAP_DLEN))
  250. return(-EINVAL);
  251. dev->mtu = new_mtu;
  252. return(0);
  253. }
  254. #endif /* CONFIG_FDDI */
  255. #ifdef CONFIG_HIPPI
  256. static int hippi_change_mtu(struct net_device *dev, int new_mtu)
  257. {
  258. /*
  259.  * HIPPI's got these nice large MTUs.
  260.  */
  261. if ((new_mtu < 68) || (new_mtu > 65280))
  262. return -EINVAL;
  263. dev->mtu = new_mtu;
  264. return(0);
  265. }
  266. /*
  267.  * For HIPPI we will actually use the lower 4 bytes of the hardware
  268.  * address as the I-FIELD rather than the actual hardware address.
  269.  */
  270. static int hippi_mac_addr(struct net_device *dev, void *p)
  271. {
  272. struct sockaddr *addr = p;
  273. if (netif_running(dev))
  274. return -EBUSY;
  275. memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
  276. return 0;
  277. }
  278. /**
  279.  * init_hippi_dev - Register HIPPI device
  280.  * @dev: A HIPPI device structure to be filled in, or %NULL if a new
  281.  * struct should be allocated.
  282.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  283.  * for this ethernet device
  284.  *
  285.  * Fill in the fields of the device structure with HIPPI-generic values.
  286.  *
  287.  * If no device structure is passed, a new one is constructed, complete with
  288.  * a private data area of size @sizeof_priv.  A 32-byte (not bit)
  289.  * alignment is enforced for this private data area.
  290.  *
  291.  * If an empty string area is passed as dev->name, or a new structure is made,
  292.  * a new name string is constructed.
  293.  */
  294. struct net_device *init_hippi_dev(struct net_device *dev, int sizeof_priv)
  295. {
  296. return init_netdev(dev, sizeof_priv, "hip%d", hippi_setup);
  297. }
  298. /**
  299.  * alloc_hippi_dev - Register HIPPI device
  300.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  301.  * for this HIPPI device
  302.  *
  303.  * Fill in the fields of the device structure with HIPPI-generic values.
  304.  *
  305.  * Constructs a new net device, complete with a private data area of
  306.  * size @sizeof_priv.  A 32-byte (not bit) alignment is enforced for
  307.  * this private data area.
  308.  */
  309. struct net_device *alloc_hippi_dev(int sizeof_priv)
  310. {
  311. return alloc_netdev(sizeof_priv, "hip%d", hippi_setup);
  312. }
  313. int register_hipdev(struct net_device *dev)
  314. {
  315. return __register_netdev(dev);
  316. }
  317. void unregister_hipdev(struct net_device *dev)
  318. {
  319. unregister_netdev(dev);
  320. }
  321. EXPORT_SYMBOL(init_hippi_dev);
  322. EXPORT_SYMBOL(alloc_hippi_dev);
  323. EXPORT_SYMBOL(register_hipdev);
  324. EXPORT_SYMBOL(unregister_hipdev);
  325. static int hippi_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
  326. {
  327. /* Never send broadcast/multicast ARP messages */
  328. p->mcast_probes = 0;
  329.  
  330. /* In IPv6 unicast probes are valid even on NBMA,
  331. * because they are encapsulated in normal IPv6 protocol.
  332. * Should be a generic flag. 
  333. */
  334. if (p->tbl->family != AF_INET6)
  335. p->ucast_probes = 0;
  336. return 0;
  337. }
  338. #endif /* CONFIG_HIPPI */
  339. void ether_setup(struct net_device *dev)
  340. {
  341. /* Fill in the fields of the device structure with ethernet-generic values.
  342.    This should be in a common file instead of per-driver.  */
  343. dev->change_mtu = eth_change_mtu;
  344. dev->hard_header = eth_header;
  345. dev->rebuild_header  = eth_rebuild_header;
  346. dev->set_mac_address  = eth_mac_addr;
  347. dev->hard_header_cache = eth_header_cache;
  348. dev->header_cache_update= eth_header_cache_update;
  349. dev->hard_header_parse = eth_header_parse;
  350. dev->type = ARPHRD_ETHER;
  351. dev->hard_header_len  = ETH_HLEN;
  352. dev->mtu = 1500; /* eth_mtu */
  353. dev->addr_len = ETH_ALEN;
  354. dev->tx_queue_len = 100; /* Ethernet wants good queues */
  355. memset(dev->broadcast,0xFF, ETH_ALEN);
  356. /* New-style flags. */
  357. dev->flags = IFF_BROADCAST|IFF_MULTICAST;
  358. }
  359. EXPORT_SYMBOL(ether_setup);
  360. #ifdef CONFIG_FDDI
  361. void fddi_setup(struct net_device *dev)
  362. {
  363. /*
  364.  * Fill in the fields of the device structure with FDDI-generic values.
  365.  * This should be in a common file instead of per-driver.
  366.  */
  367. dev->change_mtu = fddi_change_mtu;
  368. dev->hard_header = fddi_header;
  369. dev->rebuild_header = fddi_rebuild_header;
  370. dev->type = ARPHRD_FDDI;
  371. dev->hard_header_len = FDDI_K_SNAP_HLEN+3; /* Assume 802.2 SNAP hdr len + 3 pad bytes */
  372. dev->mtu = FDDI_K_SNAP_DLEN; /* Assume max payload of 802.2 SNAP frame */
  373. dev->addr_len = FDDI_K_ALEN;
  374. dev->tx_queue_len = 100; /* Long queues on FDDI */
  375. memset(dev->broadcast, 0xFF, FDDI_K_ALEN);
  376. /* New-style flags */
  377. dev->flags = IFF_BROADCAST | IFF_MULTICAST;
  378. }
  379. EXPORT_SYMBOL(fddi_setup);
  380. #endif /* CONFIG_FDDI */
  381. #ifdef CONFIG_HIPPI
  382. void hippi_setup(struct net_device *dev)
  383. {
  384. dev->set_multicast_list = NULL;
  385. dev->change_mtu = hippi_change_mtu;
  386. dev->hard_header = hippi_header;
  387. dev->rebuild_header  = hippi_rebuild_header;
  388. dev->set_mac_address  = hippi_mac_addr;
  389. dev->hard_header_parse = NULL;
  390. dev->hard_header_cache = NULL;
  391. dev->header_cache_update = NULL;
  392. dev->neigh_setup  = hippi_neigh_setup_dev; 
  393. /*
  394.  * We don't support HIPPI `ARP' for the time being, and probably
  395.  * never will unless someone else implements it. However we
  396.  * still need a fake ARPHRD to make ifconfig and friends play ball.
  397.  */
  398. dev->type = ARPHRD_HIPPI;
  399. dev->hard_header_len  = HIPPI_HLEN;
  400. dev->mtu = 65280;
  401. dev->addr_len = HIPPI_ALEN;
  402. dev->tx_queue_len = 25 /* 5 */;
  403. memset(dev->broadcast, 0xFF, HIPPI_ALEN);
  404. /*
  405.  * HIPPI doesn't support broadcast+multicast and we only use
  406.  * static ARP tables. ARP is disabled by hippi_neigh_setup_dev. 
  407.  */
  408. dev->flags = 0; 
  409. }
  410. EXPORT_SYMBOL(hippi_setup);
  411. #endif /* CONFIG_HIPPI */
  412. #if defined(CONFIG_ATALK) || defined(CONFIG_ATALK_MODULE)
  413. static int ltalk_change_mtu(struct net_device *dev, int mtu)
  414. {
  415. return -EINVAL;
  416. }
  417. static int ltalk_mac_addr(struct net_device *dev, void *addr)
  418. {
  419. return -EINVAL;
  420. }
  421. void ltalk_setup(struct net_device *dev)
  422. {
  423. /* Fill in the fields of the device structure with localtalk-generic values. */
  424. dev->change_mtu = ltalk_change_mtu;
  425. dev->hard_header = NULL;
  426. dev->rebuild_header  = NULL;
  427. dev->set_mac_address  = ltalk_mac_addr;
  428. dev->hard_header_cache = NULL;
  429. dev->header_cache_update= NULL;
  430. dev->type = ARPHRD_LOCALTLK;
  431. dev->hard_header_len  = LTALK_HLEN;
  432. dev->mtu = LTALK_MTU;
  433. dev->addr_len = LTALK_ALEN;
  434. dev->tx_queue_len = 10;
  435. dev->broadcast[0] = 0xFF;
  436. dev->flags = IFF_BROADCAST|IFF_MULTICAST|IFF_NOARP;
  437. }
  438. EXPORT_SYMBOL(ltalk_setup);
  439. #endif /* CONFIG_ATALK || CONFIG_ATALK_MODULE */
  440. int register_netdev(struct net_device *dev)
  441. {
  442. int err;
  443. rtnl_lock();
  444. /*
  445.  * If the name is a format string the caller wants us to
  446.  * do a name allocation
  447.  */
  448.  
  449. if (strchr(dev->name, '%'))
  450. {
  451. err = dev_alloc_name(dev, dev->name);
  452. if (err < 0)
  453. goto out;
  454. }
  455. /*
  456.  * Back compatibility hook. Kill this one in 2.5
  457.  */
  458. if (dev->name[0]==0 || dev->name[0]==' ')
  459. {
  460. err = dev_alloc_name(dev, "eth%d");
  461. if (err < 0)
  462. goto out;
  463. }
  464. err = register_netdevice(dev);
  465. out:
  466. rtnl_unlock();
  467. return err;
  468. }
  469. void unregister_netdev(struct net_device *dev)
  470. {
  471. rtnl_lock();
  472. unregister_netdevice(dev);
  473. rtnl_unlock();
  474. }
  475. EXPORT_SYMBOL(register_netdev);
  476. EXPORT_SYMBOL(unregister_netdev);
  477. #ifdef CONFIG_TR
  478. void tr_setup(struct net_device *dev)
  479. {
  480. /*
  481.  * Configure and register
  482.  */
  483. dev->hard_header = tr_header;
  484. dev->rebuild_header = tr_rebuild_header;
  485. dev->type = ARPHRD_IEEE802_TR;
  486. dev->hard_header_len = TR_HLEN;
  487. dev->mtu = 2000;
  488. dev->addr_len = TR_ALEN;
  489. dev->tx_queue_len = 100; /* Long queues on tr */
  490. memset(dev->broadcast,0xFF, TR_ALEN);
  491. /* New-style flags. */
  492. dev->flags = IFF_BROADCAST | IFF_MULTICAST ;
  493. }
  494. /**
  495.  * init_trdev - Register token ring device
  496.  * @dev: A token ring device structure to be filled in, or %NULL if a new
  497.  * struct should be allocated.
  498.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  499.  * for this ethernet device
  500.  *
  501.  * Fill in the fields of the device structure with token ring-generic values.
  502.  *
  503.  * If no device structure is passed, a new one is constructed, complete with
  504.  * a private data area of size @sizeof_priv.  A 32-byte (not bit)
  505.  * alignment is enforced for this private data area.
  506.  *
  507.  * If an empty string area is passed as dev->name, or a new structure is made,
  508.  * a new name string is constructed.
  509.  */
  510. struct net_device *init_trdev(struct net_device *dev, int sizeof_priv)
  511. {
  512. return init_netdev(dev, sizeof_priv, "tr%d", tr_setup);
  513. }
  514. /**
  515.  * alloc_trdev - Register token ring device
  516.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  517.  * for this token ring device
  518.  *
  519.  * Fill in the fields of the device structure with token ring-generic values.
  520.  *
  521.  * Constructs a new net device, complete with a private data area of
  522.  * size @sizeof_priv.  A 32-byte (not bit) alignment is enforced for
  523.  * this private data area.
  524.  */
  525. struct net_device *alloc_trdev(int sizeof_priv)
  526. {
  527. return alloc_netdev(sizeof_priv, "tr%d", tr_setup);
  528. }
  529. int register_trdev(struct net_device *dev)
  530. {
  531. return __register_netdev(dev);
  532. }
  533. void unregister_trdev(struct net_device *dev)
  534. {
  535. unregister_netdev(dev);
  536. }
  537. EXPORT_SYMBOL(tr_setup);
  538. EXPORT_SYMBOL(init_trdev);
  539. EXPORT_SYMBOL(alloc_trdev);
  540. EXPORT_SYMBOL(register_trdev);
  541. EXPORT_SYMBOL(unregister_trdev);
  542. #endif /* CONFIG_TR */
  543. #ifdef CONFIG_NET_FC
  544. void fc_setup(struct net_device *dev)
  545. {
  546. dev->hard_header        =        fc_header;
  547.         dev->rebuild_header   =        fc_rebuild_header;
  548.                 
  549.         dev->type               =        ARPHRD_IEEE802;
  550. dev->hard_header_len    =        FC_HLEN;
  551.         dev->mtu                =        2024;
  552.         dev->addr_len           =        FC_ALEN;
  553.         dev->tx_queue_len       =        100; /* Long queues on fc */
  554.         memset(dev->broadcast,0xFF, FC_ALEN);
  555.         /* New-style flags. */
  556.         dev->flags              =        IFF_BROADCAST;
  557. }
  558. /**
  559.  * init_fcdev - Register fibre channel device
  560.  * @dev: A fibre channel device structure to be filled in, or %NULL if a new
  561.  * struct should be allocated.
  562.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  563.  * for this ethernet device
  564.  *
  565.  * Fill in the fields of the device structure with fibre channel-generic values.
  566.  *
  567.  * If no device structure is passed, a new one is constructed, complete with
  568.  * a private data area of size @sizeof_priv.  A 32-byte (not bit)
  569.  * alignment is enforced for this private data area.
  570.  *
  571.  * If an empty string area is passed as dev->name, or a new structure is made,
  572.  * a new name string is constructed.
  573.  */
  574. struct net_device *init_fcdev(struct net_device *dev, int sizeof_priv)
  575. {
  576. return init_netdev(dev, sizeof_priv, "fc%d", fc_setup);
  577. }
  578. /**
  579.  * alloc_fcdev - Register fibre channel device
  580.  * @sizeof_priv: Size of additional driver-private structure to be allocated
  581.  * for this fibre channel device
  582.  *
  583.  * Fill in the fields of the device structure with fibre channel-generic values.
  584.  *
  585.  * Constructs a new net device, complete with a private data area of
  586.  * size @sizeof_priv.  A 32-byte (not bit) alignment is enforced for
  587.  * this private data area.
  588.  */
  589. struct net_device *alloc_fcdev(int sizeof_priv)
  590. {
  591. return alloc_netdev(sizeof_priv, "fc%d", fc_setup);
  592. }
  593. int register_fcdev(struct net_device *dev)
  594. {
  595. return __register_netdev(dev);
  596. }                                               
  597.         
  598. void unregister_fcdev(struct net_device *dev)
  599. {
  600. unregister_netdev(dev);
  601. }
  602. EXPORT_SYMBOL(fc_setup);
  603. EXPORT_SYMBOL(init_fcdev);
  604. EXPORT_SYMBOL(alloc_fcdev);
  605. EXPORT_SYMBOL(register_fcdev);
  606. EXPORT_SYMBOL(unregister_fcdev);
  607. #endif /* CONFIG_NET_FC */