During each suspend and resume cycle a mysterious message is added to the logs: CPU 1 offline: Remove Rx thread Some grepping of the tree revealed this message is printed by bnx2i. Add a prefix to this message to make it clear that it is printed by bnx2i. That should also make it obvious it is the mirror of the bnx2i: CPU 1 online: Create Rx thread message. Signed-off-by: Paul Bolle <pebolle@xxxxxxxxxx> --- 0) Untested! 1) I only noticed this because I've been looking at the log messages generated by suspend and resume (for some iwlegacy and i915 issues) and because Fedora 16 enables bnx2i by default. 2) This triggers a checkpatch warning: WARNING: Prefer pr_info(... to printk(KERN_INFO, ... So I added Joe to the Cc's to suggest a way to make all printks in this file end up with a "bnx2i:" prefix (or whatever prefix is preferred). drivers/scsi/bnx2i/bnx2i_init.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/bnx2i/bnx2i_init.c b/drivers/scsi/bnx2i/bnx2i_init.c index 8b68167..b75864b 100644 --- a/drivers/scsi/bnx2i/bnx2i_init.c +++ b/drivers/scsi/bnx2i/bnx2i_init.c @@ -456,7 +456,8 @@ static int bnx2i_cpu_callback(struct notifier_block *nfb, break; case CPU_DEAD: case CPU_DEAD_FROZEN: - printk(KERN_INFO "CPU %x offline: Remove Rx thread\n", cpu); + printk(KERN_INFO "bnx2i: CPU %x offline: Remove Rx thread\n", + cpu); bnx2i_percpu_thread_destroy(cpu); break; default: -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html