Author: np
Date: Wed Jan 30 05:39:47 2019
New Revision: 343569
URL: https://svnweb.freebsd.org/changeset/base/343569
Log:
cxgbe/iw_cxgbe: Fix an address calculation in the memory registration code
that
was added in r342266.
Submitted by: Krishnamraju Eraparaju @ Chelsio
Sponsored by: Chelsio Communications
Modified:
head/sys/dev/cxgbe/iw_cxgbe/mem.c
Modified: head/sys/dev/cxgbe/iw_cxgbe/mem.c
==============================================================================
--- head/sys/dev/cxgbe/iw_cxgbe/mem.c Wed Jan 30 02:39:08 2019
(r343568)
+++ head/sys/dev/cxgbe/iw_cxgbe/mem.c Wed Jan 30 05:39:47 2019
(r343569)
@@ -207,7 +207,7 @@ _c4iw_write_mem_dma(struct c4iw_rdev *rdev, u32 addr,
if (ret)
goto out;
addr += dmalen >> 5;
- data = (u64 *)data + dmalen;
+ data = (u8 *)data + dmalen;
daddr = daddr + dmalen;
}
if (remain)
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"