mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add change that allows PAE to work.
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
This commit is contained in:
parent
48b8c0de5a
commit
a96c0ef246
1 changed files with 2 additions and 1 deletions
|
|
@ -512,7 +512,8 @@ mpt_start(union ccb *ccb)
|
|||
* physical buffer.
|
||||
*/
|
||||
struct bus_dma_segment seg;
|
||||
seg.ds_addr = (bus_addr_t)csio->data_ptr;
|
||||
seg.ds_addr =
|
||||
(bus_addr_t)(vm_offset_t)csio->data_ptr;
|
||||
seg.ds_len = csio->dxfer_len;
|
||||
mpt_execute_req(req, &seg, 1, 0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue