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
213 * write_guest_with_key - copy data from kernel space to guest space
217 * @data: source address in kernel space
221 * Copy @len bytes from @data (kernel space) to @ga (guest address).
222 * In order to copy data to guest space the PSW of the vcpu is inspected:
224 * If DAT is on data will be copied to the address space as specified by
225 * the address space bits of the PSW:
226 * Primary, secondary, home space or access register mode.
229 * if the to be copied data crosses page boundaries in guest address space.
244 * space.
248 * guest. No data has been copied to guest space.
251 * guest space (this is also true, if the to be copied data would cross
252 * one or more page boundaries in guest space).
256 * if data has been changed in guest space in case of an exception.
267 * write_guest - copy data from kernel space to guest space
271 * @data: source address in kernel space
287 * read_guest_with_key - copy data from guest space to kernel space
291 * @data: destination address in kernel space
295 * Copy @len bytes from @ga (guest address) to @data (kernel space).
298 * except that data will be copied from guest space to kernel space.
309 * read_guest - copy data from guest space to kernel space
313 * @data: destination address in kernel space
316 * Copy @len bytes from @ga (guest address) to @data (kernel space).
331 * read_guest_instr - copy instruction data from guest space to kernel space
334 * @data: destination address in kernel space
337 * Copy @len bytes from the given address (guest space) to @data (kernel
338 * space).
341 * instruction data will be read from primary space when in home-space or
342 * address-space mode.
355 * write_guest_abs - copy data from kernel space to guest space absolute
358 * @data: source address in kernel space
361 * Copy @len bytes from @data (kernel space) to @gpa (guest absolute address).
378 * read_guest_abs - copy data from guest space absolute to kernel space
381 * @data: destination address in kernel space
384 * Copy @len bytes from @gpa (guest absolute address) to @data (kernel space).
391 * If an error occurs data may have been copied partially to kernel space.
401 * write_guest_real - copy data from kernel space to guest space real
404 * @data: source address in kernel space
407 * Copy @len bytes from @data (kernel space) to @gra (guest real address).
425 * read_guest_real - copy data from guest space real to kernel space
428 * @data: destination address in kernel space
431 * Copy @len bytes from @gra (guest real address) to @data (kernel space).
439 * If an error occurs data may have been copied partially to kernel space.