Lines Matching refs:me_cl
326 struct mei_me_client *me_cl; in mei_hbm_me_cl_add() local
331 me_cl = kzalloc(sizeof(struct mei_me_client), GFP_KERNEL); in mei_hbm_me_cl_add()
332 if (!me_cl) in mei_hbm_me_cl_add()
335 mei_me_cl_init(me_cl); in mei_hbm_me_cl_add()
337 me_cl->props = res->client_properties; in mei_hbm_me_cl_add()
338 me_cl->client_id = res->me_addr; in mei_hbm_me_cl_add()
339 me_cl->mei_flow_ctrl_creds = 0; in mei_hbm_me_cl_add()
341 mei_me_cl_add(dev, me_cl); in mei_hbm_me_cl_add()
477 struct mei_me_client *me_cl; in mei_hbm_add_single_flow_creds() local
480 me_cl = mei_me_cl_by_id(dev, flow->me_addr); in mei_hbm_add_single_flow_creds()
481 if (!me_cl) { in mei_hbm_add_single_flow_creds()
487 if (WARN_ON(me_cl->props.single_recv_buf == 0)) { in mei_hbm_add_single_flow_creds()
492 me_cl->mei_flow_ctrl_creds++; in mei_hbm_add_single_flow_creds()
494 flow->me_addr, me_cl->mei_flow_ctrl_creds); in mei_hbm_add_single_flow_creds()
498 mei_me_cl_put(me_cl); in mei_hbm_add_single_flow_creds()