mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-12 09:58:36 +00:00
ioat(4): Compile on i386
Truncate BUS_SPACE_MAXADDR_40BIT to essentially BUS_SPACE_MAXADDR_32BIT on platforms with 32-bit bus_addr_t (i.e., i386). PR: 215034 Reported by: ngie@ Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
695349e306
commit
e2a65c0031
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=309526
@ -486,8 +486,9 @@ ioat3_attach(device_t device)
|
||||
ringsz = sizeof(struct ioat_dma_hw_descriptor) * num_descriptors;
|
||||
|
||||
error = bus_dma_tag_create(bus_get_dma_tag(ioat->device),
|
||||
2 * 1024 * 1024, 0x0, BUS_SPACE_MAXADDR_40BIT, BUS_SPACE_MAXADDR,
|
||||
NULL, NULL, ringsz, 1, ringsz, 0, NULL, NULL, &ioat->hw_desc_tag);
|
||||
2 * 1024 * 1024, 0x0, (bus_addr_t)BUS_SPACE_MAXADDR_40BIT,
|
||||
BUS_SPACE_MAXADDR, NULL, NULL, ringsz, 1, ringsz, 0, NULL, NULL,
|
||||
&ioat->hw_desc_tag);
|
||||
if (error != 0)
|
||||
return (error);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user