pci/dmar: Fix link warning
* Yinghai Lu (yinghai(a)kernel.org) wrote: could make it to be __init to remove the linking section mismatch warning. Hey David, I just noticed this one is already in your tree, looks like the only commit in there that didn't get pushed, accidentally stuck perhaps? thanks, -chris -- To unsubscribe from this... 8 Apr 2010 16:18
[PATCH 02/13] mm: Revalidate anon_vma in page_lock_anon_vma()
There is nothing preventing the anon_vma from being detached while we are spinning to acquire the lock. Most (all?) current users end up calling something like vma_address(page, vma) on it, which has a fairly good chance of weeding out wonky vmas. However suppose the anon_vma got freed and re-used while we were ... 8 Apr 2010 16:18
cxgb4i: iscsi and pdu processing part
On 04/08/2010 07:14 AM, Rakesh Ranjan wrote: From: Rakesh Ranjan<rakesh(a)chelsio.com> Signed-off-by: Rakesh Ranjan<rakesh(a)chelsio.com> --- drivers/scsi/cxgb4i/cxgb4i_iscsi.c | 715 ++++++++++++++++++++++++++++++++++++ drivers/scsi/cxgb4i/cxgb4i_pdu.c | 475 ++++++++++++++++++++++++ driver... 8 Apr 2010 16:18
pci/dmar/sriov: use physfn to search drhd for VF
> +#ifdef CONFIG_PCI_IOV + if (dev->is_virtfn) + dev = dev->physfn; +#endif Seems we would prefer to avoid this ifdef... if we had a function like struct pci_dev *pci_physfn(struct pci_dev *virtfn) as an inline in <linux/pci.h> that just returns NULL if PCI_IOV is not enabled, then we could wri... 9 Apr 2010 12:16
[PATCH 4/6] pci/dmar/sriov: use physfn to search drhd for VF
When virtfn is used, we should use physfn to find correct drhd Signed-off-by: Yinghai Lu <yinghai(a)kernel.org> --- drivers/pci/dmar.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/pci/dmar.c b/drivers/pci/dmar.c index d2f66a6..550f0a9 100644 --- a/drivers/pci/dmar.c +++... 8 Apr 2010 15:11
[PATCH 1/6] pci/dmar: Don't complain that IOPAIC is not supported
INTR_REMAP handle that type, so if that is used, we should not complain that Signed-off-by: Yinghai Lu <yinghai(a)kernel.org> --- drivers/pci/dmar.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/drivers/pci/dmar.c b/drivers/pci/dmar.c index 33ead97..3bd013f 100644 --- a/driv... 8 Apr 2010 15:11
[PATCH 3/6] pci/dmar: remove the noisy print out about unmapping
it seems this one should be removed. because map page does not have this annonyed print out. Signed-off-by: Yinghai Lu <yinghai(a)kernel.org> --- drivers/pci/intel-iommu.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c index 83ac... 8 Apr 2010 15:11
slub: __kmalloc_node_track_caller should trace kmalloc_large_node case
On Thu, 8 Apr 2010, Xiaotian Feng wrote: commit 94b528d (kmemtrace: SLUB hooks for caller-tracking functions) missed tracing kmalloc_large_node in __kmalloc_node_track_caller. We should trace it same as __kmalloc_node. Signed-off-by: Xiaotian Feng <dfeng(a)redhat.com> Cc: Pekka Enberg <penberg(a)cs.hel... 8 Apr 2010 15:11
[PATCH 2/6] pci/dmar: Print out iommu seq_id
more info on system with more than one IOMMU Signed-off-by: Yinghai Lu <yinghai(a)kernel.org> --- drivers/pci/dmar.c | 3 ++- drivers/pci/intel-iommu.c | 9 ++++++--- drivers/pci/intr_remapping.c | 6 +++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/drivers/pci/dmar.... 8 Apr 2010 15:11
[PATCH 5/6] pci/dmar: Fix link warning
could make it to be __init to remove the linking section mismatch warning. Signed-off-by: Yinghai Lu <yinghai(a)kernel.org> --- drivers/pci/dmar.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/pci/dmar.c b/drivers/pci/dmar.c index 550f0a9..a9310ed 100644 --- a/drivers/pci/dm... 8 Apr 2010 15:11