diff options
Diffstat (limited to 'drivers/block/aoe/aoecmd.c')
-rw-r--r-- | drivers/block/aoe/aoecmd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index 5e7daa1ff6f6..1be5150bcd3b 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c | |||
@@ -309,7 +309,8 @@ resend(struct aoedev *d, struct aoetgt *t, struct frame *f) | |||
309 | "%15s e%ld.%d oldtag=%08x@%08lx newtag=%08x " | 309 | "%15s e%ld.%d oldtag=%08x@%08lx newtag=%08x " |
310 | "s=%012llx d=%012llx nout=%d\n", | 310 | "s=%012llx d=%012llx nout=%d\n", |
311 | "retransmit", d->aoemajor, d->aoeminor, f->tag, jiffies, n, | 311 | "retransmit", d->aoemajor, d->aoeminor, f->tag, jiffies, n, |
312 | mac_addr(h->src), mac_addr(h->dst), t->nout); | 312 | mac_addr(h->src), |
313 | mac_addr(h->dst), t->nout); | ||
313 | aoechr_error(buf); | 314 | aoechr_error(buf); |
314 | 315 | ||
315 | f->tag = n; | 316 | f->tag = n; |
@@ -633,7 +634,7 @@ ataid_complete(struct aoedev *d, struct aoetgt *t, unsigned char *id) | |||
633 | 634 | ||
634 | if (d->ssize != ssize) | 635 | if (d->ssize != ssize) |
635 | printk(KERN_INFO "aoe: %012llx e%lu.%lu v%04x has %llu sectors\n", | 636 | printk(KERN_INFO "aoe: %012llx e%lu.%lu v%04x has %llu sectors\n", |
636 | (unsigned long long)mac_addr(t->addr), | 637 | mac_addr(t->addr), |
637 | d->aoemajor, d->aoeminor, | 638 | d->aoemajor, d->aoeminor, |
638 | d->fw_ver, (long long)ssize); | 639 | d->fw_ver, (long long)ssize); |
639 | d->ssize = ssize; | 640 | d->ssize = ssize; |
@@ -727,8 +728,7 @@ aoecmd_ata_rsp(struct sk_buff *skb) | |||
727 | t = gettgt(d, hin->src); | 728 | t = gettgt(d, hin->src); |
728 | if (t == NULL) { | 729 | if (t == NULL) { |
729 | printk(KERN_INFO "aoe: can't find target e%ld.%d:%012llx\n", | 730 | printk(KERN_INFO "aoe: can't find target e%ld.%d:%012llx\n", |
730 | d->aoemajor, d->aoeminor, | 731 | d->aoemajor, d->aoeminor, mac_addr(hin->src)); |
731 | (unsigned long long) mac_addr(hin->src)); | ||
732 | spin_unlock_irqrestore(&d->lock, flags); | 732 | spin_unlock_irqrestore(&d->lock, flags); |
733 | return; | 733 | return; |
734 | } | 734 | } |
@@ -1003,7 +1003,7 @@ aoecmd_cfg_rsp(struct sk_buff *skb) | |||
1003 | "aoe: e%ld.%d: setting %d%s%s:%012llx\n", | 1003 | "aoe: e%ld.%d: setting %d%s%s:%012llx\n", |
1004 | d->aoemajor, d->aoeminor, n, | 1004 | d->aoemajor, d->aoeminor, n, |
1005 | " byte data frames on ", ifp->nd->name, | 1005 | " byte data frames on ", ifp->nd->name, |
1006 | (unsigned long long) mac_addr(t->addr)); | 1006 | mac_addr(t->addr)); |
1007 | ifp->maxbcnt = n; | 1007 | ifp->maxbcnt = n; |
1008 | } | 1008 | } |
1009 | } | 1009 | } |