mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
- Make the maxsize parameter of the data buffer DMA tag match maxio, which
was missed in r209599. Reported and tested by: Michael Moll - Declare mpt_dma_buf_alloc() static just like mpt_dma_buf_free(), both are used in mpt.c only. Reviewed by: ken MFC after: r209599
This commit is contained in:
parent
9886a800fc
commit
cac33e16cf
2 changed files with 5 additions and 4 deletions
|
|
@ -128,6 +128,7 @@ static void mpt_send_event_ack(struct mpt_softc *mpt, request_t *ack_req,
|
|||
static int mpt_send_event_request(struct mpt_softc *mpt, int onoff);
|
||||
static int mpt_soft_reset(struct mpt_softc *mpt);
|
||||
static void mpt_hard_reset(struct mpt_softc *mpt);
|
||||
static int mpt_dma_buf_alloc(struct mpt_softc *mpt);
|
||||
static void mpt_dma_buf_free(struct mpt_softc *mpt);
|
||||
static int mpt_configure_ioc(struct mpt_softc *mpt, int, int);
|
||||
static int mpt_enable_ioc(struct mpt_softc *mpt, int);
|
||||
|
|
@ -2475,7 +2476,7 @@ mpt_download_fw(struct mpt_softc *mpt)
|
|||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
mpt_dma_buf_alloc(struct mpt_softc *mpt)
|
||||
{
|
||||
struct mpt_map_info mi;
|
||||
|
|
@ -2486,8 +2487,9 @@ mpt_dma_buf_alloc(struct mpt_softc *mpt)
|
|||
/* Create a child tag for data buffers */
|
||||
if (mpt_dma_tag_create(mpt, mpt->parent_dmat, 1,
|
||||
0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
|
||||
NULL, NULL, MAXBSIZE, mpt->max_cam_seg_cnt,
|
||||
BUS_SPACE_MAXSIZE_32BIT, 0, &mpt->buffer_dmat) != 0) {
|
||||
NULL, NULL, (mpt->max_cam_seg_cnt - 1) * PAGE_SIZE,
|
||||
mpt->max_cam_seg_cnt, BUS_SPACE_MAXSIZE_32BIT, 0,
|
||||
&mpt->buffer_dmat) != 0) {
|
||||
mpt_prt(mpt, "cannot create a dma tag for data buffers\n");
|
||||
return (1);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1279,7 +1279,6 @@ void mpt_check_doorbell(struct mpt_softc *mpt);
|
|||
void mpt_dump_reply_frame(struct mpt_softc *mpt,
|
||||
MSG_DEFAULT_REPLY *reply_frame);
|
||||
|
||||
int mpt_dma_buf_alloc(struct mpt_softc *mpt);
|
||||
void mpt_set_config_regs(struct mpt_softc *);
|
||||
int mpt_issue_cfg_req(struct mpt_softc */*mpt*/, request_t */*req*/,
|
||||
cfgparms_t *params,
|
||||
|
|
|
|||
Loading…
Reference in a new issue