[PATCH 05/12] aoe [5/8]: allow network interface migration on packet retransmit

From: Greg KH
Date: Fri Mar 24 2006 - 01:13:04 EST


Retransmit to the current network interface for an AoE device.

Signed-off-by: "Ed L. Cashin" <ecashin@xxxxxxxxxx>

---

drivers/block/aoe/aoecmd.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

2dd5e42269b6f71db8ca519e401ef1e6615b3705
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c
index 34b8c8c..22bebf8 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) {
--
1.2.4


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/