summaryrefslogtreecommitdiffstats
path: root/drivers/block/aoe
diff options
context:
space:
mode:
authorEd L. Cashin2006-01-19 19:46:25 +0100
committerGreg Kroah-Hartman2006-03-24 07:01:56 +0100
commit2dd5e42269b6f71db8ca519e401ef1e6615b3705 (patch)
tree5f330b93b062cb111c9da8d02714290ebf4208fd /drivers/block/aoe
parent[PATCH] aoe [4/8]: use less confusing driver name (diff)
downloadkernel-qcow2-linux-2dd5e42269b6f71db8ca519e401ef1e6615b3705.tar.gz
kernel-qcow2-linux-2dd5e42269b6f71db8ca519e401ef1e6615b3705.tar.xz
kernel-qcow2-linux-2dd5e42269b6f71db8ca519e401ef1e6615b3705.zip
[PATCH] aoe [5/8]: allow network interface migration on packet retransmit
Retransmit to the current network interface for an AoE device. Signed-off-by: "Ed L. Cashin" <ecashin@coraid.com>
Diffstat (limited to 'drivers/block/aoe')
-rw-r--r--drivers/block/aoe/aoecmd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c
index 34b8c8c13f9a..22bebf87945c 100644
--- a/drivers/block/aoe/aoecmd.c
+++ b/drivers/block/aoe/aoecmd.c
@@ -286,6 +286,8 @@ rexmit(struct aoedev *d, struct frame *f)
h = (struct aoe_hdr *) f->data;
f->tag = n;
h->tag = cpu_to_be32(n);
+ memcpy(h->dst, d->addr, sizeof h->dst);
+ memcpy(h->src, d->ifp->dev_addr, sizeof h->src);
skb = skb_prepare(d, f);
if (skb) {