Lines Matching defs:retbuf
116 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
118 rc = plpar_hcall9(H_GET_PPP, retbuf);
120 ppp_data->entitlement = retbuf[0];
121 ppp_data->unallocated_entitlement = retbuf[1];
123 ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
124 ppp_data->pool_num = retbuf[2] & 0xffff;
126 ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01;
127 ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff;
128 ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff;
129 ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff;
130 ppp_data->active_system_procs = retbuf[3] & 0xffff;
132 ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8;
133 ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff;
134 ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff;
176 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
178 rc = plpar_hcall(H_PIC, retbuf);
180 *pool_idle_time = retbuf[0];
181 *num_procs = retbuf[1];
460 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
463 plpar_hcall(H_GET_EM_PARMS, retbuf) == H_SUCCESS)
464 seq_printf(m, "power_mode_data=%016lx\n", retbuf[0]);