|
|
|
|
|
|
|
|
|
|
xen-users
[Xen-users] Process blocked errors
Hi, I also had the same exact problem, with same exact config (stock Squeeze kernel). See http://www.mailinglistarchive.com/html/xen-users@xxxxxxxxxxxxxxxxxxx/2011-01/msg00595.html I have tried to build the latest driver for my RAID controler, but it didnt help.
In the end, the solution for me was to use a more recent Linux kernel from opensuse 11.4. So I have kept my Debien distro but I am "borrowing" the kernel from Suse. It works very well now. I have tried many many things without success.
Here is my "procedure" to install the Suse kernel with Debian :
apt-get --yes install alien wget http://download.opensuse.org/distribution/11.4/repo/oss/suse/x86_64/kernel-xen-2.6.37.1-1.2.2.x86_64.rpm
alien -i kernel-xen-2.6.37.1-1.2.2.x86_64.rpm echo CONFIG_XEN_DOM0=y >> /boot/config-2.6.37.1-1.2-xen && rm -f /boot/vmlinux-2.6.37.1-1.2-xen.gz update-initramfs -c -t -k 2.6.37.1-1.2-xen -b /boot
update-grub
Then you have to slightly edit /etc/init.d/xend to load the kernel modules, it should look like :
modules_setup() { modprobe evtchn 2>/dev/null || true modprobe blktap 2>/dev/null || true
modprobe blkbk 2>/dev/null || true modprobe xenblk 2>/dev/null || true modprobe netbk 2>/dev/null || true modprobe gntdev 2>/dev/null || true modprobe usbbk 2>/dev/null || true
}
Hope it helps, Jordan
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|