Lines Matching defs:max_msg
211 device_printf(dev, "Transport - max_msg:%d max_payld_sz:%lu reply_timo_ms:%d\n",
218 SYSCTL_ADD_INT(NULL, SYSCTL_CHILDREN(sysctl_trans), OID_AUTO, "max_msg",
219 CTLFLAG_RD, &sc->trs_desc.max_msg, 0, "SCMI Max number of inflight messages");
266 scmi_reqs_pool_allocate(device_t dev, const int max_msg, const int max_payld_sz)
274 for (int i = 0; i < max_msg; i++) {
308 if (OF_getencprop(node, "arm,max-msg", &td->max_msg, sizeof(td->max_msg)) == -1)
309 td->max_msg = SCMI_DEF_MAX_MSG;
330 trs->inflight_ht = hashinit(td->max_msg, M_DEVBUF, &trs->inflight_mask);
333 scmi_reqs_pool_allocate(sc->dev, td->max_msg, td->max_payld_sz);
340 scmi_reqs_pool_allocate(sc->dev, td->max_msg, td->max_payld_sz);