[PATCH 4/7] x86: pat.c consolidate error/debug messages in reserve_memtype
.... and move last debug message out of locked section. Signed-off-by: Andreas Herrmann <andreas.herrmann3(a)amd.com> --- arch/x86/mm/pat.c | 51 +++++++++++---------------------------------------- 1 files changed, 11 insertions(+), 40 deletions(-) diff --git a/arch/x86/mm/pat.c b/arch/x86/mm/pat.c index c... 20 Jun 2008 16:22
[PATCH 1/1] CPM1: Don't send break on TX_STOP, don't interrupt RX/TX when adjusting termios parameters
From: Nye Liu <nyet(a)mrv.com> Before setting STOP_TX, set _brkcr to 0 so the SMC does not send a break character. The driver appears to properly re-initialize _brkcr when the SMC is restarted. Do not interrupt RX/TX when the termios is being adjusted; it results in corrupted characters appearing on the line. ... 20 Jun 2008 16:22
[PATCH 6/7] x86: pat.c introduce function to check for conflicts with existing memtypes
.... to strip down loop body in reserve_memtype. Signed-off-by: Andreas Herrmann <andreas.herrmann3(a)amd.com> --- arch/x86/mm/pat.c | 96 ++++++++++++++++++---------------------------------- 1 files changed, 33 insertions(+), 63 deletions(-) diff --git a/arch/x86/mm/pat.c b/arch/x86/mm/pat.c index 49dcd96... 20 Jun 2008 16:22
[PATCH 7/7] x86: pat.c final cleanup of loop body in reserve_memtype
Signed-off-by: Andreas Herrmann <andreas.herrmann3(a)amd.com> --- arch/x86/mm/pat.c | 30 +++++++++++------------------- 1 files changed, 11 insertions(+), 19 deletions(-) diff --git a/arch/x86/mm/pat.c b/arch/x86/mm/pat.c index 281ac64..a885a10 100644 --- a/arch/x86/mm/pat.c +++ b/arch/x86/mm/pat.c @@ -28... 20 Jun 2008 16:22
[PATCH 0/7] x86: pat.c: reserve_memtype strip down
This patch set will (first of all) cleanup reserve_memtype a little bit to make it easier to read and maintain. (... and hopefully it doesn't break anything.;-) Overall diffstat is arch/x86/mm/ioremap.c | 2 arch/x86/mm/pat.c | 263 ++++++++++++++++--------------------------------- include/asm-x... 20 Jun 2008 16:22
Limit E820 map when a user-defined memory map is specified
On Fri, Jun 20, 2008 at 05:57:00PM +0200, Bernhard Walle wrote: This patch brings back limiting of the E820 map when a user-defined E820 map is specified. While the behaviour of i386 (32 bit) was to limit the E820 map (and /proc/iomem), the behaviour of x86-64 (64 bit) was not to limit. That patch li... 20 Jun 2008 16:22
Problems with rt2x00 USB interface on powerpc (fwd)
Hi, Ivo. Thank you for your reply. On Jun 20 2008, Ivo van Doorn wrote: Hi, Did you receive my earlier message (attached here for reference)? I'm willing to experiment with the driver a little bit and I hope that the information that I have provided so far is helpful to chase the reason wh... 20 Jun 2008 16:22
x86_64: Fold pda into per cpu area
Jeremy Fitzhardinge <jeremy(a)goop.org> writes: Christoph Lameter wrote: On Fri, 20 Jun 2008, Jeremy Fitzhardinge wrote: The loader setup for the percpu section changes with zero basing. Maybe that has bad side effects How does it work? The symbols in the percpu segment are 0-base... 14 Jul 2008 10:35
[PATCH 1/7] x86: introduce macro to check whether an address range is in the ISA range
Signed-off-by: Andreas Herrmann <andreas.herrmann3(a)amd.com> --- arch/x86/mm/ioremap.c | 2 +- arch/x86/mm/pat.c | 5 ++--- include/asm-x86/e820.h | 1 + 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 7452eb3..6d9960d 100644 -... 20 Jun 2008 16:22
network socket receive splice size
I am using the splice syscall in kernel 2.6.25.4 with network socket receive to splice incoming and outgoing TCP sockets. I perform something like the following: #define SPLICE_SIZE (12*1024) int fd[2]; ret = pipe(fd); ret = splice(src, NULL, fd[1], NULL, SPLICE_SIZE, SPLICE_F_MORE | SPLICE_F_MOVE); ... 20 Jun 2008 16:22