login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
April
»
13
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e820 map
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Yinghai
Subject:
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e820 map
Date: Tuesday, April 13, 2010 - 2:08 pm
On 04/13/2010 02:02 PM, Bjorn Helgaas wrote:
quoted text
> On Mon, 2010-04-12 at 15:32 -0700, Yinghai wrote: >> Update e820 at first, and later put them resource tree. >> >> -V2: reserved that early, no PCI BAR can use it, force them to get new one >> >> Signed-off-by: Yinghai Lu <yinghai@kernel.org> >> Cc: Guenter Roeck <guenter.roeck@ericsson.com> >> Cc: Andy Isaacson <adi@hexapodia.org> >> Tested-by: Andy Isaacson <adi@hexapodia.org> >> Cc: Bjorn Helgaas <bjorn.helgaas@hp.com> >> Acked-by: H. Peter Anvin <hpa@zytor.com> >> >> --- >> arch/x86/include/asm/setup.h | 1 - >> arch/x86/kernel/head32.c | 1 - >> arch/x86/kernel/setup.c | 19 +------------------ >> 3 files changed, 1 insertion(+), 20 deletions(-) >> >> Index: linux-2.6/arch/x86/include/asm/setup.h >> =================================================================== >> --- linux-2.6.orig/arch/x86/include/asm/setup.h >> +++ linux-2.6/arch/x86/include/asm/setup.h >> @@ -44,7 +44,6 @@ static inline void visws_early_detect(vo >> extern unsigned long saved_video_mode; >> >> extern void reserve_standard_io_resources(void); >> -extern void i386_reserve_resources(void); >> extern void setup_default_timer_irq(void); >> >> #ifdef CONFIG_X86_MRST >> Index: linux-2.6/arch/x86/kernel/head32.c >> =================================================================== >> --- linux-2.6.orig/arch/x86/kernel/head32.c >> +++ linux-2.6/arch/x86/kernel/head32.c >> @@ -22,7 +22,6 @@ static void __init i386_default_early_se >> { >> /* Initilize 32bit specific setup functions */ >> x86_init.resources.probe_roms = probe_roms; >> - x86_init.resources.reserve_resources = i386_reserve_resources; >> x86_init.mpparse.setup_ioapic_ids = setup_ioapic_ids_from_mpc; >> >> reserve_ebda_region(); > > I like the fact that this makes x86_64 and x86_32 handle the legacy VGA > framebuffer the same way. > > What about arch/x86/kernel/probe_roms_32.c? That deals with expansion > ROMs in the 0xc0000-0xfffff range, including the VGA ROM. We only build > it for x86_32; is that correct, or should it be unified, too?
looks that file could be dropped. We already put 0xa0000 - 0x100000 to reserved region.
quoted text
> >> Index: linux-2.6/arch/x86/kernel/setup.c >> =================================================================== >> --- linux-2.6.orig/arch/x86/kernel/setup.c >> +++ linux-2.6/arch/x86/kernel/setup.c >> @@ -693,7 +693,7 @@ static void __init trim_bios_range(void) >> * area (640->1Mb) as ram even though it is not. >> * take them out. >> */ >> - e820_remove_range(BIOS_BEGIN, BIOS_END - BIOS_BEGIN, E820_RAM, 1); >> + e820_add_region(BIOS_BEGIN, BIOS_END - BIOS_BEGIN, E820_RESERVED); > > Let me see if I understand this. On Andy's machine, the e820 map > doesn't mention the 0xa0000-0xf0000 range at all: > > BIOS-e820: 0000000000000000 - 000000000009ec00 (usable) > BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) > > e820_reserve_resources() inserts resources for some e820 entries (those > that start before 0x100000 or are not E820_RESERVED). Andy's machine > didn't supply any e820 entries that cover 0xa0000-0xf0000, so we didn't > insert any resources there, and PCI assumed that range was available. > > This patch adds the [0xa0000-0x100000] range as E820_RESERVED. Since > that starts below 0x100000, e820_reserve_resources() will insert a > corresponding resource marked as BUSY. > > Then the second patch prevents PCI from using that BUSY region to > allocate resources to devices. > > Is my understanding correct?
yes.
quoted text
> > I don't feel like I know enough about x86 architecture to ack this > patch, but I don't object to it.
Thanks Yinghai --
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH] x86: Reserve legacy VGA MMIO area for x86_64 as we ...
, Bjorn Helgaas
, (Wed Apr 7, 2:06 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Wed Apr 7, 3:45 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Bjorn Helgaas
, (Wed Apr 7, 4:05 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Wed Apr 7, 4:22 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Wed Apr 7, 4:43 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Wed Apr 7, 5:19 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Bjorn Helgaas
, (Wed Apr 7, 8:24 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Wed Apr 7, 9:42 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Wed Apr 7, 10:00 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Bjorn Helgaas
, (Thu Apr 8, 6:04 am)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Thu Apr 8, 2:40 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Bjorn Helgaas
, (Fri Apr 9, 9:04 am)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 9:44 am)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Fri Apr 9, 10:22 am)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 11:23 am)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Guenter Roeck
, (Fri Apr 9, 11:55 am)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Fri Apr 9, 12:55 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 1:11 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Guenter Roeck
, (Fri Apr 9, 1:31 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 1:44 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Guenter Roeck
, (Fri Apr 9, 2:01 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Fri Apr 9, 3:21 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai Lu
, (Fri Apr 9, 3:27 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Fri Apr 9, 3:35 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 3:42 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Alan Cox
, (Fri Apr 9, 3:42 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 3:44 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Alan Cox
, (Fri Apr 9, 3:51 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Alan Cox
, (Fri Apr 9, 3:54 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Fri Apr 9, 3:54 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 3:55 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, H. Peter Anvin
, (Fri Apr 9, 3:55 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Fri Apr 9, 4:01 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Fri Apr 9, 5:00 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Fri Apr 9, 6:10 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Fri Apr 9, 6:43 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Fri Apr 9, 6:48 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Fri Apr 9, 6:57 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Fri Apr 9, 7:46 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Mon Apr 12, 11:54 am)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Yinghai
, (Mon Apr 12, 12:34 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Mon Apr 12, 12:48 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, yinghai.lu@oracle.com
, (Mon Apr 12, 12:55 pm)
Re: [PATCH] x86: Reserve legacy VGA MMIO area for x86_64 a ...
, Andy Isaacson
, (Mon Apr 12, 1:02 pm)
[PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e820 map
, Yinghai
, (Mon Apr 12, 3:32 pm)
[PATCH -v2 2/2] x86,pci, acpi: Inherent BUSY flag when set ...
, Yinghai
, (Mon Apr 12, 3:33 pm)
Re: [PATCH -v2 2/2] x86,pci, acpi: Inherent BUSY flag when ...
, Jesse Barnes
, (Mon Apr 12, 3:44 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Bjorn Helgaas
, (Tue Apr 13, 2:02 pm)
Re: [PATCH -v2 2/2] x86,pci, acpi: Inherent BUSY flag when ...
, Bjorn Helgaas
, (Tue Apr 13, 2:02 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 2:08 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Tue Apr 13, 2:09 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 2:11 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Tue Apr 13, 2:18 pm)
[PATCH -v3 1/3] x86: Reserve [0xa0000, 0x100000] in e820 map
, Yinghai
, (Tue Apr 13, 2:22 pm)
[PATCH -v3 2/3] x86,pci, acpi: host bridge windows inherit ...
, Yinghai
, (Tue Apr 13, 2:23 pm)
[PATCH -v3 3/3] pci: don't allocate from a BUSY bus resource
, Yinghai
, (Tue Apr 13, 2:24 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 2:42 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Tue Apr 13, 2:58 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 3:29 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 3:39 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Tue Apr 13, 3:41 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 3:58 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Tue Apr 13, 4:02 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Tue Apr 13, 4:03 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 4:03 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Tue Apr 13, 4:07 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 4:09 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Tue Apr 13, 5:57 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Bjorn Helgaas
, (Wed Apr 14, 9:55 am)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai Lu
, (Wed Apr 14, 10:21 am)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Andy Isaacson
, (Wed Apr 14, 12:25 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Wed Apr 14, 12:27 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Andy Isaacson
, (Wed Apr 14, 12:43 pm)
Re: [PATCH -v2 1/2] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Yinghai
, (Wed Apr 14, 12:49 pm)
[PATCH -v4 1/3] x86: Reserve [0xa0000, 0x100000] in e820 map
, Yinghai
, (Tue Apr 20, 10:33 pm)
[PATCH 2/3] x86, resource: Add reserve_region_with_split_c ...
, Yinghai
, (Tue Apr 20, 10:34 pm)
[PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, Yinghai
, (Tue Apr 20, 10:35 pm)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, Bjorn Helgaas
, (Wed Apr 21, 8:21 am)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, Yinghai Lu
, (Wed Apr 21, 9:45 am)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, Bjorn Helgaas
, (Wed Apr 21, 9:59 am)
Re: [PATCH -v4 1/3] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Andy Isaacson
, (Wed Apr 21, 12:31 pm)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, H. Peter Anvin
, (Wed Apr 21, 3:33 pm)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, Bjorn Helgaas
, (Wed Apr 21, 4:04 pm)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, H. Peter Anvin
, (Wed Apr 21, 4:10 pm)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, Yinghai
, (Wed Apr 21, 4:43 pm)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, H. Peter Anvin
, (Wed Apr 21, 5:02 pm)
Re: [PATCH 3/3] x86,pci,acpi: Handle invalid _CRS
, Yinghai
, (Wed Apr 21, 5:06 pm)
[PATCH] x86/PCI: never allocate PCI MMIO resources below B ...
, Bjorn Helgaas
, (Fri Apr 23, 4:05 pm)
Re: [PATCH -v3 1/3] x86: Reserve [0xa0000, 0x100000] in e8 ...
, H. Peter Anvin
, (Fri Apr 23, 4:30 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, H. Peter Anvin
, (Fri Apr 23, 4:44 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Yinghai Lu
, (Fri Apr 23, 5:36 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, R. Andrew Bailey
, (Mon Apr 26, 5:50 am)
Re: [PATCH -v3 1/3] x86: Reserve [0xa0000, 0x100000] in e8 ...
, Jesse Barnes
, (Mon Apr 26, 8:35 am)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Bjorn Helgaas
, (Mon Apr 26, 8:40 am)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Andy Isaacson
, (Mon Apr 26, 11:34 am)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Jesse Barnes
, (Mon Apr 26, 12:31 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Bjorn Helgaas
, (Mon Apr 26, 1:27 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Jesse Barnes
, (Mon Apr 26, 1:37 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Yinghai
, (Mon Apr 26, 2:07 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, H. Peter Anvin
, (Mon Apr 26, 2:12 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, H. Peter Anvin
, (Mon Apr 26, 2:19 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Jesse Barnes
, (Mon Apr 26, 2:25 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, H. Peter Anvin
, (Mon Apr 26, 2:44 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, jacob pan
, (Mon Apr 26, 2:44 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Jesse Barnes
, (Mon Apr 26, 2:53 pm)
Re: [PATCH] x86/PCI: never allocate PCI MMIO resources bel ...
, Yinghai Lu
, (Mon Apr 26, 2:59 pm)
[PATCH -v5] reserve a0000 - 0x10000
, Yinghai
, (Mon Apr 26, 3:04 pm)
[PATCH -v5 1/3] x86: Reserve [0xa0000, 0x100000] in e820 map
, Yinghai
, (Mon Apr 26, 3:04 pm)
[PATCH -v5 2/3] x86: Remove probe_roms for 32bit
, Yinghai
, (Mon Apr 26, 3:04 pm)
[PATCH -v5 3/3] x86, resource: Add reserve_region_with_spl ...
, Yinghai
, (Mon Apr 26, 3:04 pm)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Ingo Molnar
Re: [patch] e1000=y && e1000e=m regression fix
Greg Kroah-Hartman
[PATCH 20/36] Driver core: Call device_pm_add() after bus_add_device() in device_a...
Eli Cohen
Re: LRO num of frags limit
Boaz Harrosh
how to use KBUILD_EXTRA_SYMBOLS
Pekka Enberg
Re: [PATCH] include/linux/slab.h: new KFREE() macro.
git
:
Bill Lear
cpio command not found
Jing Xue
Re: git rm --cached
Fredrik Kuivinen
Re: fatal: unable to create '.git/index': File exists
Michael S. Tsirkin
git-kill: rewrite history removing a commit
Johannes Sixt
Re: How to pull remote branch with specified commit id?
linux-netdev
:
Johann Baudy
Packet mmap: TX RING and zero copy
Stephen Hemminger
Re: NAPI, rx_no_buffer_count, e1000, r8169 and other actors
Jamie Lokier
Re: POHMELFS high performance network filesystem. Transactions, failover, performa...
Balazs Scheidler
Re: [PATCH 5/9] tproxy: allow non-local binds of IPv6 sockets if IP_TRANSPARENT is...
Paulius Zaleckas
Re: [RFC] Patch to option HSO driver to the kernel
openbsd-misc
:
Bryan Irvine
Re: DVD burn error: No space left on device
Netmaffia.hu
Tini Lányok AKCIÓBAN OTTHON
Siju George
This is what Linus Torvalds calls openBSD crowd
elitdostlar
Seks partneri arayan bayanlar bu adreste - 8878xs706x6438
Skylar Hawk
Re: asus eee 1201n - acpitz0 critical temperature 255C (5282K), shutting down
git-commits-head
:
Linux Kernel Mailing List
Linux 2.6.34-rc4
Linux Kernel Mailing List
x86 boot: only pick up additional EFI memmap if add_efi_memmap flag
Linux Kernel Mailing List
powerpc/fsl_msi: enable msi allocation in all banks
Linux Kernel Mailing List
[ALSA] hda-codec - Add support for VIA VT1708B HD audio codec
Linux Kernel Mailing List
ARM: dma-mapping: remove dmac_clean_range and dmac_inv_range
Colocation donated by:
Syndicate