diff options
-rw-r--r-- | MAINTAINERS | 13 | ||||
-rw-r--r-- | drivers/sbus/char/vfc_dev.c | 2 | ||||
-rw-r--r-- | mm/oom_kill.c | 2 |
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 | |||
1963 | L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only) | 1963 | L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only) |
1964 | S: Maintained | 1964 | S: Maintained |
1965 | 1965 | ||
1966 | INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT | ||
1967 | P: Ingo Molnar | ||
1968 | M: mingo@redhat.com | ||
1969 | S: Maintained | ||
1970 | |||
1971 | INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT | 1966 | INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT |
1972 | P: Jeff Garzik | 1967 | P: Jeff Garzik |
1973 | M: jgarzik@pobox.com | 1968 | M: jgarzik@pobox.com |
@@ -4269,9 +4264,15 @@ M: jacmet@sunsite.dk | |||
4269 | L: linux-serial@vger.kernel.org | 4264 | L: linux-serial@vger.kernel.org |
4270 | S: Maintained | 4265 | S: Maintained |
4271 | 4266 | ||
4272 | X86 3-LEVEL PAGING (PAE) SUPPORT | 4267 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
4268 | P: Thomas Gleixner | ||
4269 | M: tglx@linutronix.de | ||
4273 | P: Ingo Molnar | 4270 | P: Ingo Molnar |
4274 | M: mingo@redhat.com | 4271 | M: mingo@redhat.com |
4272 | P: H. Peter Anvin | ||
4273 | M: hpa@zytor.com | ||
4274 | L: linux-kernel@vger.kernel.org | ||
4275 | T: git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git | ||
4275 | S: Maintained | 4276 | S: Maintained |
4276 | 4277 | ||
4277 | YAM DRIVER FOR AX.25 | 4278 | YAM 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) | |||
134 | int init_vfc_devstruct(struct vfc_dev *dev, int instance) | 134 | int 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 | ||