From 88dd921e24af0893734d4e197d646cfc7732ed54 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 7 Oct 2010 16:03:16 +0100 Subject: [netdevice] Pass both link-layer addresses in net_tx() and net_rx() FCoE requires the use of fabric-provided MAC addresses, which breaks the assumption that the net device's MAC address is implicitly the source address for net_tx() and the (unicast) destination address for net_rx(). Signed-off-by: Michael Brown --- src/net/fcoe.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/net/fcoe.c') diff --git a/src/net/fcoe.c b/src/net/fcoe.c index 87726044e..11acfca21 100644 --- a/src/net/fcoe.c +++ b/src/net/fcoe.c @@ -129,7 +129,7 @@ static int fcoe_deliver ( struct fcoe_port *fcoe, /* Transmit packet */ if ( ( rc = net_tx ( iob_disown ( iobuf ), fcoe->netdev, &fcoe_protocol, - fcoe->fcf_ll_addr ) ) != 0 ) { + fcoe->fcf_ll_addr, fcoe->netdev->ll_addr )) != 0){ DBGC ( fcoe, "FCoE %s could not transmit: %s\n", fcoe->netdev->name, strerror ( rc ) ); goto done; @@ -164,12 +164,12 @@ static struct io_buffer * fcoe_alloc_iob ( struct fcoe_port *fcoe __unused, * * @v iobuf I/O buffer * @v netdev Network device + * @v ll_dest Link-layer destination address * @v ll_source Link-layer source address * @ret rc Return status code */ -static int fcoe_rx ( struct io_buffer *iobuf, - struct net_device *netdev, - const void *ll_source ) { +static int fcoe_rx ( struct io_buffer *iobuf, struct net_device *netdev, + const void *ll_dest __unused, const void *ll_source ) { struct fcoe_header *fcoehdr; struct fcoe_footer *fcoeftr; struct fcoe_port *fcoe; -- cgit v1.2.3-55-g7522