Skip to content

Commit 5c2a959

Browse files
leendert1966mcb30
authored andcommittedJun 10, 2016
[tg3] Fix address truncation bug on 64-bit machines
Signed-off-by: Leendert van Doorn <leendert@paramecium.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
1 parent b42e719 commit 5c2a959

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/drivers/net/tg3/tg3.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ static int tg3_test_dma(struct tg3 *tp)
545545
goto out_nofree;
546546
}
547547
buf_dma = virt_to_bus(buf);
548-
DBGC2(tp->dev, "dma test buffer, virt: %p phys: %#08x\n", buf, buf_dma);
548+
DBGC2(tp->dev, "dma test buffer, virt: %p phys: %#016lx\n", buf, buf_dma);
549549

550550
if (tg3_flag(tp, 57765_PLUS)) {
551551
tp->dma_rwctrl = DMA_RWCTRL_DIS_CACHE_ALIGNMENT;

‎src/drivers/net/tg3/tg3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2788,7 +2788,7 @@ struct tg3_hw_stats {
27882788
u8 __reserved4[0xb00-0x9c8];
27892789
};
27902790

2791-
typedef u32 dma_addr_t;
2791+
typedef unsigned long dma_addr_t;
27922792

27932793
/* 'mapping' is superfluous as the chip does not write into
27942794
* the tx/rx post rings so we could just fetch it from there.

0 commit comments

Comments
 (0)
Please sign in to comment.