Lines Matching defs:retbuf
117 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
119 rc = plpar_hcall9(H_GET_PPP, retbuf);
121 ppp_data->entitlement = retbuf[0];
122 ppp_data->unallocated_entitlement = retbuf[1];
124 ppp_data->group_num = (retbuf[2] >> 2 * 8) & 0xffff;
125 ppp_data->pool_num = retbuf[2] & 0xffff;
127 ppp_data->capped = (retbuf[3] >> 6 * 8) & 0x01;
128 ppp_data->weight = (retbuf[3] >> 5 * 8) & 0xff;
129 ppp_data->unallocated_weight = (retbuf[3] >> 4 * 8) & 0xff;
130 ppp_data->active_procs_in_pool = (retbuf[3] >> 2 * 8) & 0xffff;
131 ppp_data->active_system_procs = retbuf[3] & 0xffff;
133 ppp_data->phys_platform_procs = retbuf[4] >> 6 * 8;
134 ppp_data->max_proc_cap_avail = (retbuf[4] >> 3 * 8) & 0xffffff;
135 ppp_data->entitled_proc_cap_avail = retbuf[4] & 0xffffff;
177 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
179 rc = plpar_hcall(H_PIC, retbuf);
181 *pool_idle_time = retbuf[0];
182 *num_procs = retbuf[1];
490 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
493 plpar_hcall(H_GET_EM_PARMS, retbuf) == H_SUCCESS)
494 seq_printf(m, "power_mode_data=%016lx\n", retbuf[0]);