Home | History | Annotate | Download | only in pxe

Lines Matching refs:pxe_netdev

53 struct net_device *pxe_netdev = NULL;
61 if ( pxe_netdev )
62 netdev_put ( pxe_netdev );
63 pxe_netdev = NULL;
65 pxe_netdev = netdev_get ( netdev );
76 if ( ( rc = netdev_open ( pxe_netdev ) ) != 0 )
79 netdev_irq ( pxe_netdev, 1 );
88 netdev_irq ( pxe_netdev, 0 );
89 netdev_close ( pxe_netdev );
99 struct ll_protocol *ll_protocol = pxe_netdev->ll_protocol;
159 pxe_netdev->name, strerror ( rc ) );
196 pxe_netdev->name, strerror ( rc ) );
228 struct ll_protocol *ll_protocol = pxe_netdev->ll_protocol;
242 netdev_irq ( pxe_netdev, 1 );
303 ll_dest = pxe_netdev->ll_broadcast;
308 if ( ( rc = ll_protocol->push ( pxe_netdev, iobuf, ll_dest,
309 pxe_netdev->ll_addr,
327 if ( ( rc = netdev_tx ( pxe_netdev, iobuf ) ) != 0 ) {
361 struct ll_protocol *ll_protocol = pxe_netdev->ll_protocol;
369 if ( pxe_netdev->state & NETDEV_OPEN ) {
377 memcpy ( pxe_netdev->ll_addr,
413 struct device *dev = pxe_netdev->dev;
414 struct ll_protocol *ll_protocol = pxe_netdev->ll_protocol;
428 pxe_netdev->ll_addr,
430 ll_protocol->init_addr ( pxe_netdev->hw_addr,
456 undi_get_statistics->XmtGoodFrames = pxe_netdev->tx_stats.good;
457 undi_get_statistics->RcvGoodFrames = pxe_netdev->rx_stats.good;
458 undi_get_statistics->RcvCRCErrors = pxe_netdev->rx_stats.bad;
459 undi_get_statistics->RcvResourceErrors = pxe_netdev->rx_stats.bad;
478 memset ( &pxe_netdev->tx_stats, 0, sizeof ( pxe_netdev->tx_stats ) );
479 memset ( &pxe_netdev->rx_stats, 0, sizeof ( pxe_netdev->rx_stats ) );
518 struct ll_protocol *ll_protocol = pxe_netdev->ll_protocol;
543 struct device *dev = pxe_netdev->dev;
675 netdev_poll ( pxe_netdev );
678 netdev_irq ( pxe_netdev, 0 );
697 netdev_poll ( pxe_netdev );
702 if ( undi_tx_count && list_empty ( &pxe_netdev->tx_queue ) ) {
710 iobuf = netdev_rx_dequeue ( pxe_netdev );
716 netdev_irq ( pxe_netdev, 1 );
731 ll_protocol = pxe_netdev->ll_protocol;
732 if ( ( rc = ll_protocol->pull ( pxe_netdev, iobuf, &ll_dest,