瀏覽代碼

lguest: Allow running under paravirt-enabled KVM.

We actually can run under KVM, as it doesn't paravirtualize anything we
need to use; reduce the check to checking we are the normal ringlevel.

Reported-by: Stefanos Geraggelos <sgerag@cslab.ece.ntua.gr>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au># HG changeset patch
Rusty Russell 13 年之前
父節點
當前提交
b56e3215d4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/lguest/core.c

+ 1 - 1
drivers/lguest/core.c

@@ -313,7 +313,7 @@ static int __init init(void)
 	int err;
 	int err;
 
 
 	/* Lguest can't run under Xen, VMI or itself.  It does Tricky Stuff. */
 	/* Lguest can't run under Xen, VMI or itself.  It does Tricky Stuff. */
-	if (paravirt_enabled()) {
+	if (get_kernel_rpl() != 0) {
 		printk("lguest is afraid of being a guest\n");
 		printk("lguest is afraid of being a guest\n");
 		return -EPERM;
 		return -EPERM;
 	}
 	}