Lines Matching defs:retbuf
102 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
104 rc = plpar_hcall(H_ENTER, retbuf, flags, hpte_group, hpte_v, hpte_r);
106 *slot = retbuf[0];
116 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
118 rc = plpar_hcall(H_REMOVE, retbuf, flags, ptex, avpn);
120 *old_pteh_ret = retbuf[0];
121 *old_ptel_ret = retbuf[1];
132 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
134 rc = plpar_hcall_raw(H_REMOVE, retbuf, flags, ptex, avpn);
136 *old_pteh_ret = retbuf[0];
137 *old_ptel_ret = retbuf[1];
146 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
148 rc = plpar_hcall(H_READ, retbuf, flags, ptex);
150 *old_pteh_ret = retbuf[0];
151 *old_ptel_ret = retbuf[1];
161 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
163 rc = plpar_hcall_raw(H_READ, retbuf, flags, ptex);
165 *old_pteh_ret = retbuf[0];
166 *old_ptel_ret = retbuf[1];
179 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
181 rc = plpar_hcall9(H_READ, retbuf, flags | H_READ_4, ptex);
183 memcpy(ptes, retbuf, 8*sizeof(unsigned long));
197 unsigned long retbuf[PLPAR_HCALL9_BUFSIZE];
199 rc = plpar_hcall9_raw(H_READ, retbuf, flags | H_READ_4, ptex);
201 memcpy(ptes, retbuf, 8*sizeof(unsigned long));
228 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
230 rc = plpar_hcall(H_GET_TCE, retbuf, liobn, ioba);
232 *tce_ret = retbuf[0];
334 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
337 rc = plpar_hcall(H_GET_CPU_CHARACTERISTICS, retbuf);
339 p->character = retbuf[0];
340 p->behaviour = retbuf[1];