summaryrefslogtreecommitdiffstats
path: root/src/net/rarp.c
diff options
context:
space:
mode:
authorMichael Brown2010-10-07 17:03:16 +0200
committerMichael Brown2010-10-07 20:15:04 +0200
commit88dd921e24af0893734d4e197d646cfc7732ed54 (patch)
tree8ecbe7ef1e5d84b2243894769a9ab1251d5c56de /src/net/rarp.c
parent[int13] Fix typo in debug message (diff)
downloadipxe-88dd921e24af0893734d4e197d646cfc7732ed54.tar.gz
ipxe-88dd921e24af0893734d4e197d646cfc7732ed54.tar.xz
ipxe-88dd921e24af0893734d4e197d646cfc7732ed54.zip
[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 <mcb30@ipxe.org>
Diffstat (limited to 'src/net/rarp.c')
-rw-r--r--src/net/rarp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net/rarp.c b/src/net/rarp.c
index bf2e7f0a..da67c459 100644
--- a/src/net/rarp.c
+++ b/src/net/rarp.c
@@ -36,6 +36,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*
* @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
*
@@ -43,6 +44,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
static int rarp_rx ( struct io_buffer *iobuf,
struct net_device *netdev __unused,
+ const void *ll_dest __unused,
const void *ll_source __unused ) {
free_iob ( iobuf );
return 0;