From: Luis R. Rodriguez Date: Wed, 13 Jan 2010 17:50:36 +0000 (-0800) Subject: Add module load print to know where we backported from X-Git-Tag: next-20100113~5 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=33719df7ae4e1e6f03164d2365a74025c061d7a1;p=~emulex%2Ffor-vlad%2Fcompat.git Add module load print to know where we backported from For stable kernels this will be more important. I'll soon start a branch based on new kernel releases so if anyone wants to base their code only up to a specific point release they can use that. Signed-off-by: Luis R. Rodriguez --- diff --git a/compat/main.c b/compat/main.c index 76e571a..1570f6f 100644 --- a/compat/main.c +++ b/compat/main.c @@ -8,6 +8,8 @@ static int __init compat_init(void) { /* pm-qos for kernels <= 2.6.24, this is a no-op on newer kernels */ compat_pm_qos_power_init(); + printk(KERN_INFO "Generic kernel compatibility enabled based on " + "linux-next next-20100112\n"); return 0; }