From: Ed Cashin Date: Fri, 9 Nov 2012 03:05:16 +0000 (+1100) Subject: aoe: err device: include MAC addresses for unexpected responses X-Git-Tag: next-20121112~5^2~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b146f09429dea485f134834f633660dcd5c82b8c;p=karo-tx-linux.git aoe: err device: include MAC addresses for unexpected responses Signed-off-by: Ed Cashin Signed-off-by: Andrew Morton --- diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index f849fa2471ca..6ea27fd8954d 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c @@ -1204,12 +1204,14 @@ aoecmd_ata_rsp(struct sk_buff *skb) spin_unlock_irqrestore(&d->lock, flags); aoedev_put(d); snprintf(ebuf, sizeof(ebuf), - "%15s e%d.%d tag=%08x@%08lx\n", + "%15s e%d.%d tag=%08x@%08lx s=%pm d=%pm\n", "unexpected rsp", get_unaligned_be16(&h->major), h->minor, get_unaligned_be32(&h->tag), - jiffies); + jiffies, + h->src, + h->dst); aoechr_error(ebuf); return skb; }