cxgbe(4): Stop checking for failures from malloc(M_WAITOK).

PR:		240545
Submitted by:	Andrew Reiter <arr@watson.org>
Reviewed by:	np
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D25767
This commit is contained in:
Mark Johnston 2020-07-27 19:05:53 +00:00
parent 153f46edf4
commit 5822a14c43

View File

@ -10003,10 +10003,6 @@ load_fw(struct adapter *sc, struct t4_data *fw)
}
fw_data = malloc(fw->len, M_CXGBE, M_WAITOK);
if (fw_data == NULL) {
rc = ENOMEM;
goto done;
}
rc = copyin(fw->data, fw_data, fw->len);
if (rc == 0)
@ -10035,10 +10031,6 @@ load_cfg(struct adapter *sc, struct t4_data *cfg)
}
cfg_data = malloc(cfg->len, M_CXGBE, M_WAITOK);
if (cfg_data == NULL) {
rc = ENOMEM;
goto done;
}
rc = copyin(cfg->data, cfg_data, cfg->len);
if (rc == 0)
@ -10084,10 +10076,6 @@ load_boot(struct adapter *sc, struct t4_bootrom *br)
}
br_data = malloc(br->len, M_CXGBE, M_WAITOK);
if (br_data == NULL) {
rc = ENOMEM;
goto done;
}
rc = copyin(br->data, br_data, br->len);
if (rc == 0)
@ -10116,10 +10104,6 @@ load_bootcfg(struct adapter *sc, struct t4_data *bc)
}
bc_data = malloc(bc->len, M_CXGBE, M_WAITOK);
if (bc_data == NULL) {
rc = ENOMEM;
goto done;
}
rc = copyin(bc->data, bc_data, bc->len);
if (rc == 0)