Lines Matching full:space

109  * Copies a simple value from kernel space to a guest vcpu's lowcore.
132 * write_guest_lc - copy data from kernel space to guest vcpu's lowcore
135 * @data: source address in kernel space
138 * Copy data from kernel space to guest vcpu's lowcore. The entire range must
158 * read_guest_lc - copy data from guest vcpu's lowcore to kernel space
161 * @data: destination address in kernel space
164 * Copy data from guest vcpu's lowcore to kernel space. The entire range must
210 * write_guest_with_key - copy data from kernel space to guest space
214 * @data: source address in kernel space
218 * Copy @len bytes from @data (kernel space) to @ga (guest address).
219 * In order to copy data to guest space the PSW of the vcpu is inspected:
221 * If DAT is on data will be copied to the address space as specified by
222 * the address space bits of the PSW:
223 * Primary, secondary, home space or access register mode.
226 * if the to be copied data crosses page boundaries in guest address space.
241 * space.
245 * guest. No data has been copied to guest space.
248 * guest space (this is also true, if the to be copied data would cross
249 * one or more page boundaries in guest space).
253 * if data has been changed in guest space in case of an exception.
264 * write_guest - copy data from kernel space to guest space
268 * @data: source address in kernel space
284 * read_guest_with_key - copy data from guest space to kernel space
288 * @data: destination address in kernel space
292 * Copy @len bytes from @ga (guest address) to @data (kernel space).
295 * except that data will be copied from guest space to kernel space.
306 * read_guest - copy data from guest space to kernel space
310 * @data: destination address in kernel space
313 * Copy @len bytes from @ga (guest address) to @data (kernel space).
328 * read_guest_instr - copy instruction data from guest space to kernel space
331 * @data: destination address in kernel space
334 * Copy @len bytes from the given address (guest space) to @data (kernel
335 * space).
338 * instruction data will be read from primary space when in home-space or
339 * address-space mode.
352 * write_guest_abs - copy data from kernel space to guest space absolute
355 * @data: source address in kernel space
358 * Copy @len bytes from @data (kernel space) to @gpa (guest absolute address).
375 * read_guest_abs - copy data from guest space absolute to kernel space
378 * @data: destination address in kernel space
381 * Copy @len bytes from @gpa (guest absolute address) to @data (kernel space).
388 * If an error occurs data may have been copied partially to kernel space.
398 * write_guest_real - copy data from kernel space to guest space real
401 * @data: source address in kernel space
404 * Copy @len bytes from @data (kernel space) to @gra (guest real address).
421 * read_guest_real - copy data from guest space real to kernel space
424 * @data: destination address in kernel space
427 * Copy @len bytes from @gra (guest real address) to @data (kernel space).
434 * If an error occurs data may have been copied partially to kernel space.