Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5c55841d16dbf7c759fa6fb2ecc5e615b86d17db
Commit:     5c55841d16dbf7c759fa6fb2ecc5e615b86d17db
Parent:     7ea08093e0ccbad030188ded3cb082d8b8094d35
Author:     Glauber de Oliveira Costa <[EMAIL PROTECTED]>
AuthorDate: Thu Jan 17 22:32:50 2008 -0200
Committer:  Rusty Russell <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 22:50:03 2008 +1100

    lguest: remove pv_info dependency
    
    Currently, lguest module can't be compiled without the PARAVIRT flag being
    on. This is a fake dependency, since the module itself shouldn't need any
    paravirt override. Reason for that is the reference to pv_info structure
    in initial loading tests.
    
    This patch removes it in favour of a more generic error message.
    
    Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]>
    Signed-off-by: Rusty Russell <[EMAIL PROTECTED]>
---
 drivers/lguest/core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c
index cb4c670..f10abc8 100644
--- a/drivers/lguest/core.c
+++ b/drivers/lguest/core.c
@@ -253,7 +253,7 @@ static int __init init(void)
 
        /* Lguest can't run under Xen, VMI or itself.  It does Tricky Stuff. */
        if (paravirt_enabled()) {
-               printk("lguest is afraid of %s\n", pv_info.name);
+               printk("lguest is afraid of being a guest\n");
                return -EPERM;
        }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to