aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MAINTAINERS13
-rw-r--r--drivers/sbus/char/vfc_dev.c2
-rw-r--r--mm/oom_kill.c2
3 files changed, 9 insertions, 8 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index 4ed41394e492..1fd6d02a79b8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1963,11 +1963,6 @@ M: adaplas@gmail.com
1963L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only) 1963L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
1964S: Maintained 1964S: Maintained
1965 1965
1966INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1967P: Ingo Molnar
1968M: mingo@redhat.com
1969S: Maintained
1970
1971INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT 1966INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1972P: Jeff Garzik 1967P: Jeff Garzik
1973M: jgarzik@pobox.com 1968M: jgarzik@pobox.com
@@ -4269,9 +4264,15 @@ M: jacmet@sunsite.dk
4269L: linux-serial@vger.kernel.org 4264L: linux-serial@vger.kernel.org
4270S: Maintained 4265S: Maintained
4271 4266
4272X86 3-LEVEL PAGING (PAE) SUPPORT 4267X86 ARCHITECTURE (32-BIT AND 64-BIT)
4268P: Thomas Gleixner
4269M: tglx@linutronix.de
4273P: Ingo Molnar 4270P: Ingo Molnar
4274M: mingo@redhat.com 4271M: mingo@redhat.com
4272P: H. Peter Anvin
4273M: hpa@zytor.com
4274L: linux-kernel@vger.kernel.org
4275T: git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
4275S: Maintained 4276S: Maintained
4276 4277
4277YAM DRIVER FOR AX.25 4278YAM DRIVER FOR AX.25
diff --git a/drivers/sbus/char/vfc_dev.c b/drivers/sbus/char/vfc_dev.c
index e7a1642b2aa4..d4f8fcded51d 100644
--- a/drivers/sbus/char/vfc_dev.c
+++ b/drivers/sbus/char/vfc_dev.c
@@ -134,7 +134,7 @@ int init_vfc_hw(struct vfc_dev *dev)
134int init_vfc_devstruct(struct vfc_dev *dev, int instance) 134int init_vfc_devstruct(struct vfc_dev *dev, int instance)
135{ 135{
136 dev->instance=instance; 136 dev->instance=instance;
137 init_MUTEX(&dev->device_lock_sem); 137 mutex_init(&dev->device_lock_mtx);
138 dev->control_reg=0; 138 dev->control_reg=0;
139 dev->busy=0; 139 dev->busy=0;
140 return 0; 140 return 0;
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 824cade07827..91a081a82f55 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -496,7 +496,7 @@ retry:
496 panic("Out of memory and no killable processes...\n"); 496 panic("Out of memory and no killable processes...\n");
497 } 497 }
498 498
499 if (oom_kill_process(p, points, gfp_mask, order, 499 if (oom_kill_process(p, gfp_mask, order, points,
500 "Out of memory")) 500 "Out of memory"))
501 goto retry; 501 goto retry;
502 502