All of lore.kernel.org
 help / color / mirror / Atom feed
* [KJ] [PATCH] printk : kernel/softirq.c
@ 2005-10-07  5:46 Milind A Choudhary(Patni)
  2005-10-07  9:56 ` Christophe Lucas
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Milind A Choudhary(Patni) @ 2005-10-07  5:46 UTC (permalink / raw)
  To: kernel-janitors

[-- Attachment #1: Type: text/plain, Size: 2132 bytes --]

Description:
printk() calls should include appropriate KERN_* constant.

Signed-off-by: Milind A Choudhary <milind.choudhary@patni.com>

The patch
Index: linux-2.6.14-rc3/kernel/softirq.c
===================================================================
--- linux-2.6.14-rc3.orig/kernel/softirq.c	2005-10-06 15:30:37.000000000 +0530
+++ linux-2.6.14-rc3/kernel/softirq.c	2005-10-06 18:59:24.000000000 +0530
@@ -328,7 +328,7 @@ EXPORT_SYMBOL(tasklet_init);
 void tasklet_kill(struct tasklet_struct *t)
 {
 	if (in_interrupt())
-		printk("Attempt to kill tasklet from interrupt\n");
+		printk(KERN_ERR "Attempt to kill tasklet from interrupt\n");
 
 	while (test_and_set_bit(TASKLET_STATE_SCHED, &t->state)) {
 		do
@@ -458,7 +458,7 @@ static int __devinit cpu_callback(struct
 		BUG_ON(per_cpu(tasklet_hi_vec, hotcpu).list);
 		p = kthread_create(ksoftirqd, hcpu, "ksoftirqd/%d", hotcpu);
 		if (IS_ERR(p)) {
-			printk("ksoftirqd for %i failed\n", hotcpu);
+			printk(KERN_ERR "ksoftirqd for %i failed\n", hotcpu);
 			return NOTIFY_BAD;
 		}
 		kthread_bind(p, hotcpu);

===================================================================
apologies for the disclaimer...I'll fix it soon..
how do I come to know whether my patches are being accepted?
kindly let me know..

Thanks & Regards
Milind A Choudhary 
http://www.patni.com
World-Wide Partnerships. World-Class Solutions.
_____________________________________________________________________

This e-mail message may contain proprietary, confidential or legally
privileged information for the sole use of the person or entity to
whom this message was originally addressed. Any review, e-transmission
dissemination or other use of or taking of any action in reliance upon
this information by persons or entities other than the intended
recipient is prohibited. If you have received this e-mail in error
kindly delete  this e-mail from your records. If it appears that this
mail has been forwarded to you without proper authority, please notify
us immediately at netadmin@patni.com and delete this mail. 
_____________________________________________________________________

[-- Attachment #2: kernel_softirq_printk.patch --]
[-- Type: application/octet-stream, Size: 837 bytes --]

--- linux-2.6.14-rc3.orig/kernel/softirq.c	2005-10-06 15:30:37.000000000 +0530
+++ linux-2.6.14-rc3/kernel/softirq.c	2005-10-06 18:59:24.000000000 +0530
@@ -328,7 +328,7 @@ EXPORT_SYMBOL(tasklet_init);
 void tasklet_kill(struct tasklet_struct *t)
 {
 	if (in_interrupt())
-		printk("Attempt to kill tasklet from interrupt\n");
+		printk(KERN_ERR "Attempt to kill tasklet from interrupt\n");
 
 	while (test_and_set_bit(TASKLET_STATE_SCHED, &t->state)) {
 		do
@@ -458,7 +458,7 @@ static int __devinit cpu_callback(struct
 		BUG_ON(per_cpu(tasklet_hi_vec, hotcpu).list);
 		p = kthread_create(ksoftirqd, hcpu, "ksoftirqd/%d", hotcpu);
 		if (IS_ERR(p)) {
-			printk("ksoftirqd for %i failed\n", hotcpu);
+			printk(KERN_ERR "ksoftirqd for %i failed\n", hotcpu);
 			return NOTIFY_BAD;
 		}
 		kthread_bind(p, hotcpu);

[-- Attachment #3: Type: text/plain, Size: 168 bytes --]

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-10-09 13:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-07  5:46 [KJ] [PATCH] printk : kernel/softirq.c Milind A Choudhary(Patni)
2005-10-07  9:56 ` Christophe Lucas
2005-10-07 10:53 ` Milind A Choudhary(Patni)
2005-10-07 10:54 ` Christophe Lucas
2005-10-09 13:22 ` Arthur Othieno

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.