mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
dpaa: uma_zcreate() does not fail
No functional change intended. MFC after: 1 week (cherry picked from commit 964064937ea04519bd400668dc1ce38848d50901)
This commit is contained in:
parent
2bdfc29889
commit
4ee7b8e1ef
1 changed files with 0 additions and 4 deletions
|
|
@ -116,8 +116,6 @@ dtsec_rm_fi_pool_init(struct dtsec_softc *sc)
|
|||
sc->sc_fi_zone = uma_zcreate(sc->sc_fi_zname,
|
||||
sizeof(struct dtsec_rm_frame_info), NULL, NULL, NULL, NULL,
|
||||
UMA_ALIGN_PTR, 0);
|
||||
if (sc->sc_fi_zone == NULL)
|
||||
return (EIO);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
|
@ -313,8 +311,6 @@ dtsec_rm_pool_rx_init(struct dtsec_softc *sc)
|
|||
|
||||
sc->sc_rx_zone = uma_zcreate(sc->sc_rx_zname, FM_PORT_BUFFER_SIZE, NULL,
|
||||
NULL, NULL, NULL, FM_PORT_BUFFER_SIZE - 1, 0);
|
||||
if (sc->sc_rx_zone == NULL)
|
||||
return (EIO);
|
||||
|
||||
sc->sc_rx_pool = bman_pool_create(&sc->sc_rx_bpid, FM_PORT_BUFFER_SIZE,
|
||||
0, 0, DTSEC_RM_POOL_RX_MAX_SIZE, dtsec_rm_pool_rx_get_buffer,
|
||||
|
|
|
|||
Loading…
Reference in a new issue