Fix 32bit gcc builds after r342625.

MFC after:	1 week
Sponsored by:	Mellanox Technologies
This commit is contained in:
kib 2018-12-30 16:39:26 +00:00
parent d57c248b7d
commit 67253db60f

View File

@ -540,7 +540,7 @@ linux_cdev_pager_populate(vm_object_t vm_obj, vm_pindex_t pidx, int fault_type,
struct vm_fault vmf;
/* fill out VM fault structure */
vmf.virtual_address = (void *)IDX_TO_OFF(pidx);
vmf.virtual_address = (void *)(uintptr_t)IDX_TO_OFF(pidx);
vmf.flags = (fault_type & VM_PROT_WRITE) ? FAULT_FLAG_WRITE : 0;
vmf.pgoff = 0;
vmf.page = NULL;