patch-2.3.46 linux/kernel/printk.c
Next file: linux/mm/filemap.c
Previous file: linux/kernel/ksyms.c
Back to the patch index
Back to the overall index
- Lines: 70
- Date:
Mon Feb 14 15:31:14 2000
- Orig file:
v2.3.45/linux/kernel/printk.c
- Orig date:
Fri Sep 10 23:57:37 1999
diff -u --recursive --new-file v2.3.45/linux/kernel/printk.c linux/kernel/printk.c
@@ -318,14 +318,14 @@
unsigned long flags;
int len = strlen(s);
- spin_lock_irqsave(&console_lock,flags);
+ spin_lock_irqsave(&console_lock, flags);
c = console_drivers;
while(c) {
if ((c->flags & CON_ENABLED) && c->write)
c->write(c, s, len);
c = c->next;
}
- spin_unlock_irqrestore(&console_lock,flags);
+ spin_unlock_irqrestore(&console_lock, flags);
}
void unblank_console(void)
@@ -333,14 +333,14 @@
struct console *c;
unsigned long flags;
- spin_lock_irqsave(&console_lock,flags);
+ spin_lock_irqsave(&console_lock, flags);
c = console_drivers;
while(c) {
if ((c->flags & CON_ENABLED) && c->unblank)
c->unblank();
c = c->next;
}
- spin_unlock_irqrestore(&console_lock,flags);
+ spin_unlock_irqrestore(&console_lock, flags);
}
/*
@@ -402,7 +402,7 @@
* Put this console in the list - keep the
* preferred driver at the head of the list.
*/
- spin_lock_irqsave(&console_lock,flags);
+ spin_lock_irqsave(&console_lock, flags);
if ((console->flags & CON_CONSDEV) || console_drivers == NULL) {
console->next = console_drivers;
console_drivers = console;
@@ -445,7 +445,7 @@
j = 0;
}
done:
- spin_unlock_irqrestore(&console_lock,flags);
+ spin_unlock_irqrestore(&console_lock, flags);
}
@@ -455,7 +455,7 @@
unsigned long flags;
int res = 1;
- spin_lock_irqsave(&console_lock,flags);
+ spin_lock_irqsave(&console_lock, flags);
if (console_drivers == console) {
console_drivers=console->next;
res = 0;
@@ -471,7 +471,7 @@
}
}
- spin_unlock_irqrestore(&console_lock,flags);
+ spin_unlock_irqrestore(&console_lock, flags);
return res;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)