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
201 * write_guest - copy data from kernel space to guest space
205 * @data: source address in kernel space
208 * Copy @len bytes from @data (kernel space) to @ga (guest address).
209 * In order to copy data to guest space the PSW of the vcpu is inspected:
211 * If DAT is on data will be copied to the address space as specified by
212 * the address space bits of the PSW:
213 * Primary, secondary, home space or access register mode.
216 * if the to be copied data crosses page boundaries in guest address space.
231 * space.
235 * guest. No data has been copied to guest space.
238 * guest space (this is also true, if the to be copied data would cross
239 * one or more page boundaries in guest space).
243 * if data has been changed in guest space in case of an exception.
253 * read_guest - copy data from guest space to kernel space
257 * @data: destination address in kernel space
260 * Copy @len bytes from @ga (guest address) to @data (kernel space).
263 * data will be copied from guest space to kernel space.
273 * read_guest_instr - copy instruction data from guest space to kernel space
276 * @data: destination address in kernel space
279 * Copy @len bytes from the given address (guest space) to @data (kernel
280 * space).
283 * instruction data will be read from primary space when in home-space or
284 * address-space mode.
294 * write_guest_abs - copy data from kernel space to guest space absolute
297 * @data: source address in kernel space
300 * Copy @len bytes from @data (kernel space) to @gpa (guest absolute address).
317 * read_guest_abs - copy data from guest space absolute to kernel space
320 * @data: destination address in kernel space
323 * Copy @len bytes from @gpa (guest absolute address) to @data (kernel space).
330 * If an error occurs data may have been copied partially to kernel space.
340 * write_guest_real - copy data from kernel space to guest space real
343 * @data: source address in kernel space
346 * Copy @len bytes from @data (kernel space) to @gra (guest real address).
363 * read_guest_real - copy data from guest space real to kernel space
366 * @data: destination address in kernel space
369 * Copy @len bytes from @gra (guest real address) to @data (kernel space).
376 * If an error occurs data may have been copied partially to kernel space.