From 46c2aa6125b1116e493a10eb497344f9df808eec Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 8 Jul 2008 00:31:34 -0400 Subject: [PATCH] Remove debugging output from use_module (it isn't printed in the kernel). Signed-off-by: Tim Abbott --- kmodsrc/ksplice.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/kmodsrc/ksplice.c b/kmodsrc/ksplice.c index 4ecf714..0b545e3 100644 --- a/kmodsrc/ksplice.c +++ b/kmodsrc/ksplice.c @@ -862,10 +862,8 @@ int use_module(struct module *a, struct module *b) if (strong_try_module_get(b) < 0) return 0; - ksplice_debug(4, "Allocating new usage for %s.\n", a->name); use = kmalloc(sizeof(*use), GFP_ATOMIC); if (!use) { - printk("%s: out of memory adding dependencies\n", a->name); module_put(b); return 0; } -- 2.11.4.GIT