i am running a linux guest on top of qemu -enable-kvm. I am trying to create a back channel between linux and qemu using a known physical memory location. In order to use a memory address that the kernel will never allocate to anybody, i have started the guest using 1024M physical ram. In guest, i am trying to access the 2GB th byte (2*1024*1024*1024). On recompiling the kernel, i am not able to boot in the new kernel again.
my code is as follows ..
/** in context_switch() function of kernel/sched.c */
#define PID_ADDR ((int *)((unsigned long)2 * (unsigned long)1024 * (unsigned long)1024 * (unsigned long)1024))
int* pid_addr = phys_to_virt(PID_ADDR);
*pid_addr = next->pid //next is the task-struct ptr of the next process that is going to run.
can explain me how does kvm use the physical memory allocated to the guest ??