Lines Matching defs:retbuf
99 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
101 rc = plpar_hcall(H_ENTER, retbuf, flags, hpte_group, hpte_v, hpte_r);
103 *slot = retbuf[0];
113 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
115 rc = plpar_hcall(H_REMOVE, retbuf, flags, ptex, avpn);
117 *old_pteh_ret = retbuf[0];
118 *old_ptel_ret = retbuf[1];
129 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
131 rc = plpar_hcall_raw(H_REMOVE, retbuf, flags, ptex, avpn);
133 *old_pteh_ret = retbuf[0];
134 *old_ptel_ret = retbuf[1];
143 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
145 rc = plpar_hcall(H_READ, retbuf, flags, ptex);
147 *old_pteh_ret = retbuf[0];
148 *old_ptel_ret = retbuf[1];
158 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
160 rc = plpar_hcall_raw(H_READ, retbuf, flags, ptex);
162 *old_pteh_ret = retbuf[0];
163 *old_ptel_ret = retbuf[1];
176 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
178 rc = plpar_hcall9(H_READ, retbuf, flags | H_READ_4, ptex);
180 memcpy(ptes, retbuf, 8*sizeof(unsigned long));
194 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
196 rc = plpar_hcall9_raw(H_READ, retbuf, flags | H_READ_4, ptex);
198 memcpy(ptes, retbuf, 8*sizeof(unsigned long));
225 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
227 rc = plpar_hcall(H_GET_TCE, retbuf, liobn, ioba);
229 *tce_ret = retbuf[0];
331 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
334 rc = plpar_hcall(H_GET_CPU_CHARACTERISTICS, retbuf);
336 p->character = retbuf[0];
337 p->behaviour = retbuf[1];