Lines Matching full:space
81 * Copies a simple value from kernel space to a guest vcpu's lowcore.
104 * write_guest_lc - copy data from kernel space to guest vcpu's lowcore
107 * @data: source address in kernel space
110 * Copy data from kernel space to guest vcpu's lowcore. The entire range must
130 * read_guest_lc - copy data from guest vcpu's lowcore to kernel space
133 * @data: destination address in kernel space
136 * Copy data from guest vcpu's lowcore to kernel space. The entire range must
173 * write_guest - copy data from kernel space to guest space
177 * @data: source address in kernel space
180 * Copy @len bytes from @data (kernel space) to @ga (guest address).
181 * In order to copy data to guest space the PSW of the vcpu is inspected:
183 * If DAT is on data will be copied to the address space as specified by
184 * the address space bits of the PSW:
185 * Primary, secondary, home space or access register mode.
188 * if the to be copied data crosses page boundaries in guest address space.
203 * space.
207 * guest. No data has been copied to guest space.
210 * guest space (this is also true, if the to be copied data would cross
211 * one or more page boundaries in guest space).
215 * if data has been changed in guest space in case of an exception.
225 * read_guest - copy data from guest space to kernel space
229 * @data: destination address in kernel space
232 * Copy @len bytes from @ga (guest address) to @data (kernel space).
235 * data will be copied from guest space to kernel space.
245 * read_guest_instr - copy instruction data from guest space to kernel space
248 * @data: destination address in kernel space
251 * Copy @len bytes from the given address (guest space) to @data (kernel
252 * space).
255 * instruction data will be read from primary space when in home-space or
256 * address-space mode.
266 * write_guest_abs - copy data from kernel space to guest space absolute
269 * @data: source address in kernel space
272 * Copy @len bytes from @data (kernel space) to @gpa (guest absolute address).
289 * read_guest_abs - copy data from guest space absolute to kernel space
292 * @data: destination address in kernel space
295 * Copy @len bytes from @gpa (guest absolute address) to @data (kernel space).
302 * If an error occurs data may have been copied partially to kernel space.
312 * write_guest_real - copy data from kernel space to guest space real
315 * @data: source address in kernel space
318 * Copy @len bytes from @data (kernel space) to @gra (guest real address).
335 * read_guest_real - copy data from guest space real to kernel space
338 * @data: destination address in kernel space
341 * Copy @len bytes from @gra (guest real address) to @data (kernel space).
348 * If an error occurs data may have been copied partially to kernel space.