linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg KH <gregkh@suse.de>
To: linux-kernel@vger.kernel.org, stable@kernel.org
Cc: Justin Forbes <jmforbes@linuxtx.org>,
	Zwane Mwaikambo <zwane@arm.linux.org.uk>,
	"Theodore Ts'o" <tytso@mit.edu>,
	Randy Dunlap <rdunlap@xenotime.net>,
	Dave Jones <davej@redhat.com>,
	Chuck Wolber <chuckw@quantumlinux.com>,
	Chris Wedgwood <reviews@ml.cw.f00f.org>,
	Michael Krufky <mkrufky@linuxtv.org>,
	Chuck Ebbert <cebbert@redhat.com>,
	Domenico Andreoli <cavokz@gmail.com>, Willy Tarreau <w@1wt.eu>,
	Rodrigo Rubira Branco <rbranco@la.checkpoint.com>,
	Jake Edge <jake@lwn.net>, Eugene Teo <eteo@redhat.com>,
	torvalds@linux-foundation.org, akpm@linux-foundation.org,
	alan@lxorguk.ukuu.org.uk, Tejun Heo <tj@kernel.org>,
	Ingo Molnar <mingo@elte.hu>
Subject: [patch 102/114] x86: fix math_emu register frame access
Date: Fri, 13 Mar 2009 18:11:19 -0700	[thread overview]
Message-ID: <20090314011046.519991983@mini.kroah.org> (raw)
In-Reply-To: <20090314011649.GA26170@kroah.com>

[-- Attachment #1: x86-fix-math_emu-register-frame-access.patch --]
[-- Type: text/plain, Size: 9936 bytes --]

2.6.28-stable review patch.  If anyone has any objections, please let us know.

------------------

From: Tejun Heo <tj@kernel.org>

commit d315760ffa261c15ff92699ac6f514112543d7ca upstream.

do_device_not_available() is the handler for #NM and it declares that
it takes a unsigned long and calls math_emu(), which takes a long
argument and surprisingly expects the stack frame starting at the zero
argument would match struct math_emu_info, which isn't true regardless
of configuration in the current code.

This patch makes do_device_not_available() take struct pt_regs like
other exception handlers and initialize struct math_emu_info with
pointer to it and pass pointer to the math_emu_info to math_emulate()
like normal C functions do.  This way, unless gcc makes a copy of
struct pt_regs in do_device_not_available(), the register frame is
correctly accessed regardless of kernel configuration or compiler
used.

This doesn't fix all math_emu problems but it at least gets it
somewhat working.

Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

---
 arch/x86/include/asm/math_emu.h |    4 +-
 arch/x86/include/asm/traps.h    |    4 +-
 arch/x86/kernel/traps.c         |   15 +++++----
 arch/x86/math-emu/fpu_entry.c   |    4 +-
 arch/x86/math-emu/fpu_proto.h   |    2 -
 arch/x86/math-emu/fpu_system.h  |   16 +++------
 arch/x86/math-emu/get_address.c |   66 ++++++++++++++++++++--------------------
 7 files changed, 55 insertions(+), 56 deletions(-)

--- a/arch/x86/include/asm/math_emu.h
+++ b/arch/x86/include/asm/math_emu.h
@@ -11,8 +11,8 @@
 struct math_emu_info {
 	long ___orig_eip;
 	union {
-		struct pt_regs regs;
-		struct kernel_vm86_regs vm86;
+		struct pt_regs *regs;
+		struct kernel_vm86_regs *vm86;
 	};
 };
 #endif /* _ASM_X86_MATH_EMU_H */
--- a/arch/x86/include/asm/traps.h
+++ b/arch/x86/include/asm/traps.h
@@ -41,7 +41,7 @@ dotraplinkage void do_int3(struct pt_reg
 dotraplinkage void do_overflow(struct pt_regs *, long);
 dotraplinkage void do_bounds(struct pt_regs *, long);
 dotraplinkage void do_invalid_op(struct pt_regs *, long);
-dotraplinkage void do_device_not_available(struct pt_regs *, long);
+dotraplinkage void do_device_not_available(struct pt_regs);
 dotraplinkage void do_coprocessor_segment_overrun(struct pt_regs *, long);
 dotraplinkage void do_invalid_TSS(struct pt_regs *, long);
 dotraplinkage void do_segment_not_present(struct pt_regs *, long);
@@ -74,8 +74,8 @@ extern int kstack_depth_to_print;
 
 #ifdef CONFIG_X86_32
 void math_error(void __user *);
+void math_emulate(struct math_emu_info *);
 unsigned long patch_espfix_desc(unsigned long, unsigned long);
-asmlinkage void math_emulate(long);
 #endif
 
 #endif /* _ASM_X86_TRAPS_H */
--- a/arch/x86/kernel/traps.c
+++ b/arch/x86/kernel/traps.c
@@ -912,7 +912,7 @@ asmlinkage void math_state_restore(void)
 EXPORT_SYMBOL_GPL(math_state_restore);
 
 #ifndef CONFIG_MATH_EMULATION
-asmlinkage void math_emulate(long arg)
+void math_emulate(struct math_emu_info *info)
 {
 	printk(KERN_EMERG
 		"math-emulation not enabled and no coprocessor found.\n");
@@ -922,16 +922,19 @@ asmlinkage void math_emulate(long arg)
 }
 #endif /* CONFIG_MATH_EMULATION */
 
-dotraplinkage void __kprobes
-do_device_not_available(struct pt_regs *regs, long error)
+dotraplinkage void __kprobes do_device_not_available(struct pt_regs regs)
 {
 #ifdef CONFIG_X86_32
 	if (read_cr0() & X86_CR0_EM) {
-		conditional_sti(regs);
-		math_emulate(0);
+		struct math_emu_info info = { };
+
+		conditional_sti(&regs);
+
+		info.regs = &regs;
+		math_emulate(&info);
 	} else {
 		math_state_restore(); /* interrupts still off */
-		conditional_sti(regs);
+		conditional_sti(&regs);
 	}
 #else
 	math_state_restore();
--- a/arch/x86/math-emu/fpu_entry.c
+++ b/arch/x86/math-emu/fpu_entry.c
@@ -131,7 +131,7 @@ u_char emulating = 0;
 static int valid_prefix(u_char *Byte, u_char __user ** fpu_eip,
 			overrides * override);
 
-asmlinkage void math_emulate(long arg)
+void math_emulate(struct math_emu_info *info)
 {
 	u_char FPU_modrm, byte1;
 	unsigned short code;
@@ -161,7 +161,7 @@ asmlinkage void math_emulate(long arg)
 	RE_ENTRANT_CHECK_ON;
 #endif /* RE_ENTRANT_CHECKING */
 
-	SETUP_DATA_AREA(arg);
+	FPU_info = info;
 
 	FPU_ORIG_EIP = FPU_EIP;
 
--- a/arch/x86/math-emu/fpu_proto.h
+++ b/arch/x86/math-emu/fpu_proto.h
@@ -51,7 +51,7 @@ extern void ffreep(void);
 extern void fst_i_(void);
 extern void fstp_i(void);
 /* fpu_entry.c */
-asmlinkage extern void math_emulate(long arg);
+extern void math_emulate(struct math_emu_info *info);
 extern void math_abort(struct math_emu_info *info, unsigned int signal);
 /* fpu_etc.c */
 extern void FPU_etc(void);
--- a/arch/x86/math-emu/fpu_system.h
+++ b/arch/x86/math-emu/fpu_system.h
@@ -16,10 +16,6 @@
 #include <linux/kernel.h>
 #include <linux/mm.h>
 
-/* This sets the pointer FPU_info to point to the argument part
-   of the stack frame of math_emulate() */
-#define SETUP_DATA_AREA(arg)	FPU_info = (struct math_emu_info *) &arg
-
 /* s is always from a cpu register, and the cpu does bounds checking
  * during register load --> no further bounds checks needed */
 #define LDT_DESCRIPTOR(s)	(((struct desc_struct *)current->mm->context.ldt)[(s) >> 3])
@@ -38,12 +34,12 @@
 #define I387			(current->thread.xstate)
 #define FPU_info		(I387->soft.info)
 
-#define FPU_CS			(*(unsigned short *) &(FPU_info->regs.cs))
-#define FPU_SS			(*(unsigned short *) &(FPU_info->regs.ss))
-#define FPU_DS			(*(unsigned short *) &(FPU_info->regs.ds))
-#define FPU_EAX			(FPU_info->regs.ax)
-#define FPU_EFLAGS		(FPU_info->regs.flags)
-#define FPU_EIP			(FPU_info->regs.ip)
+#define FPU_CS			(*(unsigned short *) &(FPU_info->regs->cs))
+#define FPU_SS			(*(unsigned short *) &(FPU_info->regs->ss))
+#define FPU_DS			(*(unsigned short *) &(FPU_info->regs->ds))
+#define FPU_EAX			(FPU_info->regs->ax)
+#define FPU_EFLAGS		(FPU_info->regs->flags)
+#define FPU_EIP			(FPU_info->regs->ip)
 #define FPU_ORIG_EIP		(FPU_info->___orig_eip)
 
 #define FPU_lookahead           (I387->soft.lookahead)
--- a/arch/x86/math-emu/get_address.c
+++ b/arch/x86/math-emu/get_address.c
@@ -29,43 +29,43 @@
 #define FPU_WRITE_BIT 0x10
 
 static int reg_offset[] = {
-	offsetof(struct math_emu_info, regs.ax),
-	offsetof(struct math_emu_info, regs.cx),
-	offsetof(struct math_emu_info, regs.dx),
-	offsetof(struct math_emu_info, regs.bx),
-	offsetof(struct math_emu_info, regs.sp),
-	offsetof(struct math_emu_info, regs.bp),
-	offsetof(struct math_emu_info, regs.si),
-	offsetof(struct math_emu_info, regs.di)
+	offsetof(struct pt_regs, ax),
+	offsetof(struct pt_regs, cx),
+	offsetof(struct pt_regs, dx),
+	offsetof(struct pt_regs, bx),
+	offsetof(struct pt_regs, sp),
+	offsetof(struct pt_regs, bp),
+	offsetof(struct pt_regs, si),
+	offsetof(struct pt_regs, di)
 };
 
-#define REG_(x) (*(long *)(reg_offset[(x)]+(u_char *) FPU_info))
+#define REG_(x) (*(long *)(reg_offset[(x)] + (u_char *)FPU_info->regs))
 
 static int reg_offset_vm86[] = {
-	offsetof(struct math_emu_info, regs.cs),
-	offsetof(struct math_emu_info, vm86.ds),
-	offsetof(struct math_emu_info, vm86.es),
-	offsetof(struct math_emu_info, vm86.fs),
-	offsetof(struct math_emu_info, vm86.gs),
-	offsetof(struct math_emu_info, regs.ss),
-	offsetof(struct math_emu_info, vm86.ds)
+	offsetof(struct pt_regs, cs),
+	offsetof(struct kernel_vm86_regs, ds),
+	offsetof(struct kernel_vm86_regs, es),
+	offsetof(struct kernel_vm86_regs, fs),
+	offsetof(struct kernel_vm86_regs, gs),
+	offsetof(struct pt_regs, ss),
+	offsetof(struct kernel_vm86_regs, ds)
 };
 
 #define VM86_REG_(x) (*(unsigned short *) \
-		      (reg_offset_vm86[((unsigned)x)]+(u_char *) FPU_info))
+		(reg_offset_vm86[((unsigned)x)] + (u_char *)FPU_info->regs))
 
 static int reg_offset_pm[] = {
-	offsetof(struct math_emu_info, regs.cs),
-	offsetof(struct math_emu_info, regs.ds),
-	offsetof(struct math_emu_info, regs.es),
-	offsetof(struct math_emu_info, regs.fs),
-	offsetof(struct math_emu_info, regs.ds), /* dummy, not saved on stack */
-	offsetof(struct math_emu_info, regs.ss),
-	offsetof(struct math_emu_info, regs.ds)
+	offsetof(struct pt_regs, cs),
+	offsetof(struct pt_regs, ds),
+	offsetof(struct pt_regs, es),
+	offsetof(struct pt_regs, fs),
+	offsetof(struct pt_regs, ds),	/* dummy, not saved on stack */
+	offsetof(struct pt_regs, ss),
+	offsetof(struct pt_regs, ds)
 };
 
 #define PM_REG_(x) (*(unsigned short *) \
-		      (reg_offset_pm[((unsigned)x)]+(u_char *) FPU_info))
+		(reg_offset_pm[((unsigned)x)] + (u_char *)FPU_info->regs))
 
 /* Decode the SIB byte. This function assumes mod != 0 */
 static int sib(int mod, unsigned long *fpu_eip)
@@ -346,34 +346,34 @@ void __user *FPU_get_address_16(u_char F
 	}
 	switch (rm) {
 	case 0:
-		address += FPU_info->regs.bx + FPU_info->regs.si;
+		address += FPU_info->regs->bx + FPU_info->regs->si;
 		break;
 	case 1:
-		address += FPU_info->regs.bx + FPU_info->regs.di;
+		address += FPU_info->regs->bx + FPU_info->regs->di;
 		break;
 	case 2:
-		address += FPU_info->regs.bp + FPU_info->regs.si;
+		address += FPU_info->regs->bp + FPU_info->regs->si;
 		if (addr_modes.override.segment == PREFIX_DEFAULT)
 			addr_modes.override.segment = PREFIX_SS_;
 		break;
 	case 3:
-		address += FPU_info->regs.bp + FPU_info->regs.di;
+		address += FPU_info->regs->bp + FPU_info->regs->di;
 		if (addr_modes.override.segment == PREFIX_DEFAULT)
 			addr_modes.override.segment = PREFIX_SS_;
 		break;
 	case 4:
-		address += FPU_info->regs.si;
+		address += FPU_info->regs->si;
 		break;
 	case 5:
-		address += FPU_info->regs.di;
+		address += FPU_info->regs->di;
 		break;
 	case 6:
-		address += FPU_info->regs.bp;
+		address += FPU_info->regs->bp;
 		if (addr_modes.override.segment == PREFIX_DEFAULT)
 			addr_modes.override.segment = PREFIX_SS_;
 		break;
 	case 7:
-		address += FPU_info->regs.bx;
+		address += FPU_info->regs->bx;
 		break;
 	}
 



  parent reply	other threads:[~2009-03-14  1:58 UTC|newest]

Thread overview: 117+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20090314010937.416083662@mini.kroah.org>
2009-03-14  1:16 ` [patch 000/114] 2.6.28.8-stable review Greg KH
2009-03-14  1:09   ` [patch 001/114] net: amend the fix for SO_BSDCOMPAT gsopt infoleak Greg KH
2009-03-14  1:09   ` [patch 002/114] net: Kill skb_truesize_check(), it only catches false-positives Greg KH
2009-03-14  1:09   ` [patch 003/114] sparc64: Fix crashes in jbusmc_print_dimm() Greg KH
2009-03-14  1:09   ` [patch 004/114] sparc64: Fix DAX handling via userspace access from kernel Greg KH
2009-03-14  1:09   ` [patch 005/114] vfs: separate FMODE_PREAD/FMODE_PWRITE into separate flags Greg KH
2009-03-14  1:09   ` [patch 006/114] seq_file: properly cope with pread Greg KH
2009-03-14  1:09   ` [patch 007/114] vt: Declare PIO_CMAP/GIO_CMAP as compatbile ioctls Greg KH
2009-03-14  1:09   ` [patch 008/114] timerfd: add flags check Greg KH
2009-03-14  1:09   ` [patch 009/114] aoe: ignore vendor extension AoE responses Greg KH
2009-03-14  1:09   ` [patch 010/114] mm: clean up for early_pfn_to_nid() Greg KH
2009-03-14  1:09   ` [patch 011/114] mm: fix memmap init for handling memory hole Greg KH
2009-03-14  1:09   ` [patch 012/114] [CIFS] Fix oops in cifs_strfromUCS_le mounting to servers which do not specify their OS Greg KH
2009-03-14  1:09   ` [patch 013/114] mm: fix lazy vmap purging (use-after-free error) Greg KH
2009-03-14  1:09   ` [patch 014/114] mm: vmap fix overflow Greg KH
2009-03-14  1:09   ` [patch 015/114] PCI quirk: enable MSI on 8132 Greg KH
2009-03-14  1:09   ` [patch 016/114] SCSI: hptiop: Add new PCI device ID Greg KH
2009-03-14  1:09   ` [patch 017/114] JFFS2: fix mount crash caused by removed nodes Greg KH
2009-03-14  1:09   ` [patch 018/114] SCSI: sd: revive sd_index_lock Greg KH
2009-03-14  1:09   ` [patch 019/114] USB: usb_get_string should check the descriptor type Greg KH
2009-03-14  1:09   ` [patch 020/114] USB: usb-storage: add IGNORE_RESIDUE flag for Genesys Logic adapters Greg KH
2009-03-14  1:09   ` [patch 021/114] USB: cdc-acm: add usb id for motomagx phones Greg KH
2009-03-14  1:09   ` [patch 022/114] rtl8187: New USB IDs for RTL8187L Greg KH
2009-03-14  1:10   ` [patch 023/114] WATCHDOG: ks8695_wdt.c: CLOCK_TICK_RATE undeclared Greg KH
2009-03-14  1:10   ` [patch 024/114] WATCHDOG: rc32434_wdt: fix watchdog driver Greg KH
2009-03-14  1:10   ` [patch 025/114] WATCHDOG: rc32434_wdt: fix sections Greg KH
2009-03-14  1:10   ` [patch 026/114] RDMA/nes: Dont allow userspace QPs to use STag zero Greg KH
2009-03-14  1:10   ` [patch 027/114] USB: option: add BenQ 3g modem information Greg KH
2009-03-14  1:10   ` [patch 028/114] USB: EHCI: slow down ITD reuse Greg KH
2009-03-14  1:10   ` [patch 029/114] md: avoid races when stopping resync Greg KH
2009-03-14  1:10   ` [patch 030/114] md/raid10: Dont call bitmap_cond_end_sync when we are doing recovery Greg KH
2009-03-14  1:10   ` [patch 031/114] md/raid10: Dont skip more than 1 bitmap-chunk at a time during recovery Greg KH
2009-03-14  1:10   ` [patch 032/114] sound: virtuoso: revert "do not overwrite EEPROM on Xonar D2/D2X" Greg KH
2009-03-14  1:10   ` [patch 033/114] ALSA: usb-audio - Fix non-continuous rate detection Greg KH
2009-03-14  1:10   ` [patch 034/114] ALSA: usb-audio - Workaround for misdetected sample rate with CM6207 Greg KH
2009-03-14  1:10   ` [patch 035/114] sound: usb-audio: fix uninitialized variable with M-Audio MIDI interfaces Greg KH
2009-03-14  1:10   ` [patch 036/114] ALSA: fix excessive background noise introduced by OSS emulation rate shrink Greg KH
2009-03-14  1:10   ` [patch 037/114] ALSA: hda - Fix digital mic on dell-m4-1 and dell-m4-3 Greg KH
2009-03-14  1:10   ` [patch 038/114] ALSA: hda - add another MacBook Pro 3,1 SSID Greg KH
2009-03-14  1:10   ` [patch 039/114] ALSA: aw2: do not grab every saa7146 based device Greg KH
2009-03-14  1:10   ` [patch 040/114] acer-wmi: fix regression in backlight detection Greg KH
2009-03-14  1:10   ` [patch 041/114] vmalloc: call flush_cache_vunmap() from unmap_kernel_range() Greg KH
2009-03-14  1:10   ` [patch 042/114] Fix fixpoint divide exception in acct_update_integrals Greg KH
2009-03-14  1:10   ` [patch 043/114] 8250: fix boot hang with serial console when using with Serial Over Lan port Greg KH
2009-03-14  1:10   ` [patch 044/114] x86, vmi: TSC going backwards check in vmi clocksource Greg KH
2009-03-14  1:10   ` [patch 045/114] HID: fix bus endianity in file2alias Greg KH
2009-03-14  1:10   ` [patch 046/114] inotify: fix GFP_KERNEL related deadlock Greg KH
2009-03-14  1:10   ` [patch 047/114] sdhci: fix led naming Greg KH
2009-03-14  1:10   ` [patch 048/114] x86: oprofile: dont set counter width from cpuid on Core2 Greg KH
2009-03-14  1:10   ` [patch 049/114] x86: add Dell XPS710 reboot quirk Greg KH
2009-03-14  1:10   ` [patch 050/114] intel-agp: fix a panic with 1M of shared memory, no GTT entries Greg KH
2009-03-14  1:10   ` [patch 051/114] mtd_dataflash: fix probing of AT45DB321C chips Greg KH
2009-03-14  1:10   ` [patch 052/114] proc: fix kflags to uflags copying in /proc/kpageflags Greg KH
2009-03-14  1:10   ` [patch 053/114] fs: new inode i_state corruption fix Greg KH
2009-03-14  1:10   ` [patch 054/114] PCIe: portdrv: call pci_disable_device during remove Greg KH
2009-03-14  1:10   ` [patch 055/114] PCI: Enable PCIe AER only after checking firmware support Greg KH
2009-03-14  1:10   ` [patch 056/114] jsm: additional device support Greg KH
2009-03-14  1:10   ` [patch 057/114] libata: Dont trust current capacity values in identify words 57-58 Greg KH
2009-03-14  1:10   ` [patch 058/114] libata: make sure port is thawed when skipping resets Greg KH
2009-03-14  1:10   ` [patch 059/114] mmc: fix data timeout for SEND_EXT_CSD Greg KH
2009-03-14  1:10   ` [patch 060/114] s3cmci: Fix hangup in do_pio_write() Greg KH
2009-03-14  1:10   ` [patch 061/114] mmc: s3cmci: fix s3c2410_dma_config() arguments Greg KH
2009-03-14  1:10   ` [patch 062/114] MMC: fix bug - SDHC card capacity not correct Greg KH
2009-03-14  1:10   ` [patch 063/114] mmc_test: fix basic read test Greg KH
2009-03-14  1:10   ` [patch 064/114] x86: tone down mtrr_trim_uncached_memory() warning Greg KH
2009-03-14  1:10   ` [patch 065/114] x86-64: fix int $0x80 -ENOSYS return Greg KH
2009-03-14  1:10   ` [patch 066/114] selinux: Fix a panic in selinux_netlbl_inode_permission() Greg KH
2009-03-14  1:10   ` [patch 067/114] selinux: Fix the NetLabel glue code for setsockopt() Greg KH
2009-03-14  1:10   ` [patch 068/114] hpilo: new pci device Greg KH
2009-03-14  1:10   ` [patch 069/114] PCI: dont enable too many HT MSI mappings Greg KH
2009-03-14  7:53     ` Prakash Punnoor
2009-03-17  0:28       ` Greg KH
2009-03-14  1:10   ` [patch 070/114] x86-64: seccomp: fix 32/64 syscall hole Greg KH
2009-03-14  1:10   ` [patch 071/114] x86-64: syscall-audit: " Greg KH
2009-03-14  1:10   ` [patch 072/114] xen: disable interrupts early, as start_kernel expects Greg KH
2009-03-14  1:10   ` [patch 073/114] xen/blkfront: use blk_rq_map_sg to generate ring entries Greg KH
2009-03-14  1:10   ` [patch 074/114] asix: new device ids Greg KH
2009-03-14  1:10   ` [patch 075/114] cdc_ether: add usb id for Ericsson F3507g Greg KH
2009-03-14  1:10   ` [patch 076/114] zaurus: add usb id for motomagx phones Greg KH
2009-03-14  1:10   ` [patch 077/114] fore200: fix oops on failed firmware load Greg KH
2009-03-14  1:10   ` [patch 078/114] PCI: Add PCI quirk to disable L0s ASPM state for 82575 and 82598 Greg KH
2009-03-14  1:10   ` [patch 079/114] copy_process: fix CLONE_PARENT && parent_exec_id interaction Greg KH
2009-03-14  1:10   ` [patch 080/114] proc: fix PG_locked reporting in /proc/kpageflags Greg KH
2009-03-14  1:10   ` [patch 081/114] powerpc: Fix load/store float double alignment handler Greg KH
2009-03-14  1:10   ` [patch 082/114] sdhci: Add quirk for controllers with no end-of-busy IRQ Greg KH
2009-03-14  1:11   ` [patch 083/114] sdhci: Add NO_BUSY_IRQ quirk for Marvell CAFE host chip Greg KH
2009-03-14  1:11   ` [patch 084/114] pipe_rdwr_fasync: fix the error handling to prevent the leak/crash Greg KH
2009-03-14  1:11   ` [patch 085/114] DVB: s5h1409: Perform s5h1409 soft reset after tuning Greg KH
2009-03-14  1:11   ` [patch 086/114] V4L: tda8290: fix TDA8290 + TDA18271 initialization Greg KH
2009-03-14  1:11   ` [patch 087/114] V4L: saa7127: fix broken S-Video with saa7129 Greg KH
2009-03-14  1:11   ` [patch 088/114] V4L: ivtv: fix decoder crash regression Greg KH
2009-03-14  1:11   ` [patch 089/114] jbd2: Fix return value of jbd2_journal_start_commit() Greg KH
2009-03-14  1:11   ` [patch 090/114] Revert "ext4: wait on all pending commits in ext4_sync_fs()" Greg KH
2009-03-14  1:11   ` [patch 091/114] jbd2: Avoid possible NULL dereference in jbd2_journal_begin_ordered_truncate() Greg KH
2009-03-14  1:11   ` [patch 092/114] ext4: Fix to read empty directory blocks correctly in 64k Greg KH
2009-03-14  1:11   ` [patch 093/114] ext4: Fix lockdep warning Greg KH
2009-03-14  1:11   ` [patch 094/114] ext4: Initialize preallocation list_heads properly Greg KH
2009-03-14  1:11   ` [patch 095/114] ext4: Implement range_cyclic in ext4_da_writepages instead of write_cache_pages Greg KH
2009-03-14  1:11   ` [patch 096/114] ext4: Fix NULL dereference in ext4_ext_migrate()s error handling Greg KH
2009-03-14  1:11   ` [patch 097/114] ext4: Add fallback for find_group_flex Greg KH
2009-03-14  1:11   ` [patch 098/114] ext4: Fix deadlock in ext4_write_begin() and ext4_da_write_begin() Greg KH
2009-03-14  1:11   ` [patch 099/114] x86/paravirt: make arch_flush_lazy_mmu/cpu disable preemption Greg KH
2009-03-14  1:11   ` [patch 100/114] x86, hpet: fix for LS21 + HPET = boot hang Greg KH
2009-03-14  1:11   ` [patch 101/114] x86: math_emu info cleanup Greg KH
2009-03-14  1:11   ` Greg KH [this message]
2009-03-14  1:11   ` [patch 103/114] ide-iops: fix odd-length ATAPI PIO transfers Greg KH
2009-03-14  1:11   ` [patch 104/114] HID: move tmff and zpff devices from ignore_list to blacklist Greg KH
2009-03-14  1:11   ` [patch 105/114] ARM: Add i2c_board_info for RiscPC PCF8583 Greg KH
2009-03-14  1:11   ` [patch 106/114] i2c: Timeouts reach -1 Greg KH
2009-03-14  1:11   ` [patch 107/114] i2c: Fix misplaced parentheses Greg KH
2009-03-14  1:11   ` [patch 108/114] ACPI: fix broken usage of name.ascii Greg KH
2009-03-14  1:11   ` [patch 109/114] ACPI: fix broken usage of acpi_ut_get_node_name() Greg KH
2009-03-14  1:11   ` [patch 110/114] crypto: api - Fix algorithm test race that broke aead initialisation Greg KH
2009-03-14  1:11   ` [patch 111/114] hwmon: (f71882fg) Hide misleading error message Greg KH
2009-03-14  1:11   ` [patch 112/114] drm/i915: Add missing userland definitions for gem init/execbuffer Greg KH
2009-03-14  1:11   ` [patch 113/114] MIPS: compat: Implement is_compat_task Greg KH
2009-03-14  1:11   ` [patch 114/114] hwmon: (it87) Properly decode -128 degrees C temperature Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090314011046.519991983@mini.kroah.org \
    --to=gregkh@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=cavokz@gmail.com \
    --cc=cebbert@redhat.com \
    --cc=chuckw@quantumlinux.com \
    --cc=davej@redhat.com \
    --cc=eteo@redhat.com \
    --cc=jake@lwn.net \
    --cc=jmforbes@linuxtx.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=mkrufky@linuxtv.org \
    --cc=rbranco@la.checkpoint.com \
    --cc=rdunlap@xenotime.net \
    --cc=reviews@ml.cw.f00f.org \
    --cc=stable@kernel.org \
    --cc=tj@kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=tytso@mit.edu \
    --cc=w@1wt.eu \
    --cc=zwane@arm.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).