linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
@ 2013-04-15 12:48 Libin
  2013-04-15 12:48 ` [PATCH 2/6] PCI: " Libin
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Libin @ 2013-04-15 12:48 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton
  Cc: Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.

Signed-off-by: Libin <huawei.libin@huawei.com>
---
 mm/memory.c | 2 +-
 mm/mmap.c   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/memory.c b/mm/memory.c
index 13cbc42..8b8ae1c 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2866,7 +2866,7 @@ static inline void unmap_mapping_range_tree(struct rb_root *root,
 			details->first_index, details->last_index) {
 
 		vba = vma->vm_pgoff;
-		vea = vba + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) - 1;
+		vea = vba + vma_pages(vma) - 1;
 		/* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
 		zba = details->first_index;
 		if (zba < vba)
diff --git a/mm/mmap.c b/mm/mmap.c
index 0db0de1..118bfcb 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -919,7 +919,7 @@ can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
 	if (is_mergeable_vma(vma, file, vm_flags) &&
 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
 		pgoff_t vm_pglen;
-		vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+		vm_pglen = vma_pages(vma);
 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
 			return 1;
 	}
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/6] PCI: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
@ 2013-04-15 12:48 ` Libin
  2013-04-15 18:09   ` Bjorn Helgaas
  2013-04-15 12:48 ` [PATCH 3/6] ncpfs: " Libin
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Libin @ 2013-04-15 12:48 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton
  Cc: Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.

Signed-off-by: Libin <huawei.libin@huawei.com>
---
 drivers/pci/pci-sysfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
index 9c6e9bb..5b4a9d9 100644
--- a/drivers/pci/pci-sysfs.c
+++ b/drivers/pci/pci-sysfs.c
@@ -897,7 +897,7 @@ int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma,
 
 	if (pci_resource_len(pdev, resno) == 0)
 		return 0;
-	nr = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+	nr = vma_pages(vma);
 	start = vma->vm_pgoff;
 	size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1;
 	pci_start = (mmap_api == PCI_MMAP_PROCFS) ?
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 3/6] ncpfs: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
  2013-04-15 12:48 ` [PATCH 2/6] PCI: " Libin
@ 2013-04-15 12:48 ` Libin
  2013-04-15 12:48 ` [PATCH 4/6] char: " Libin
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Libin @ 2013-04-15 12:48 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton
  Cc: Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.

Signed-off-by: Libin <huawei.libin@huawei.com>
---
 fs/ncpfs/mmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ncpfs/mmap.c b/fs/ncpfs/mmap.c
index ee24df5..3c5dd55 100644
--- a/fs/ncpfs/mmap.c
+++ b/fs/ncpfs/mmap.c
@@ -117,7 +117,7 @@ int ncp_mmap(struct file *file, struct vm_area_struct *vma)
 		return -EINVAL;
 	/* we do not support files bigger than 4GB... We eventually 
 	   supports just 4GB... */
-	if (((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff 
+	if (vma_pages(vma) + vma->vm_pgoff
 	   > (1U << (32 - PAGE_SHIFT)))
 		return -EFBIG;
 
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 4/6] char: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
  2013-04-15 12:48 ` [PATCH 2/6] PCI: " Libin
  2013-04-15 12:48 ` [PATCH 3/6] ncpfs: " Libin
@ 2013-04-15 12:48 ` Libin
  2013-04-16  0:44   ` Xie XiuQi
  2013-04-17  7:01   ` David Rientjes
  2013-04-15 12:48 ` [PATCH 5/6] drm: " Libin
                   ` (2 subsequent siblings)
  5 siblings, 2 replies; 10+ messages in thread
From: Libin @ 2013-04-15 12:48 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton
  Cc: Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.

Signed-off-by: Libin <huawei.libin@huawei.com>
---
 drivers/char/mspec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/mspec.c b/drivers/char/mspec.c
index e1f60f9..ed0703f 100644
--- a/drivers/char/mspec.c
+++ b/drivers/char/mspec.c
@@ -168,7 +168,7 @@ mspec_close(struct vm_area_struct *vma)
 	if (!atomic_dec_and_test(&vdata->refcnt))
 		return;
 
-	last_index = (vdata->vm_end - vdata->vm_start) >> PAGE_SHIFT;
+	last_index = vma_pages(vdata);
 	for (index = 0; index < last_index; index++) {
 		if (vdata->maddr[index] == 0)
 			continue;
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 5/6] drm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
                   ` (2 preceding siblings ...)
  2013-04-15 12:48 ` [PATCH 4/6] char: " Libin
@ 2013-04-15 12:48 ` Libin
  2013-04-15 12:48 ` [PATCH 6/6] uio: " Libin
  2013-04-18  7:58 ` [PATCH 1/6] mm: " Michel Lespinasse
  5 siblings, 0 replies; 10+ messages in thread
From: Libin @ 2013-04-15 12:48 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton
  Cc: Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.

Signed-off-by: Libin <huawei.libin@huawei.com>
---
 drivers/gpu/drm/ttm/ttm_bo_vm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c b/drivers/gpu/drm/ttm/ttm_bo_vm.c
index 74705f3..3df9f16 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
@@ -147,7 +147,7 @@ static int ttm_bo_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
 
 	page_offset = ((address - vma->vm_start) >> PAGE_SHIFT) +
 	    bo->vm_node->start - vma->vm_pgoff;
-	page_last = ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) +
+	page_last = vma_pages(vma) +
 	    bo->vm_node->start - vma->vm_pgoff;
 
 	if (unlikely(page_offset >= bo->num_pages)) {
@@ -258,7 +258,7 @@ int ttm_bo_mmap(struct file *filp, struct vm_area_struct *vma,
 
 	read_lock(&bdev->vm_lock);
 	bo = ttm_bo_vm_lookup_rb(bdev, vma->vm_pgoff,
-				 (vma->vm_end - vma->vm_start) >> PAGE_SHIFT);
+				 vma_pages(vma));
 	if (likely(bo != NULL) && !kref_get_unless_zero(&bo->kref))
 		bo = NULL;
 	read_unlock(&bdev->vm_lock);
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 6/6] uio: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
                   ` (3 preceding siblings ...)
  2013-04-15 12:48 ` [PATCH 5/6] drm: " Libin
@ 2013-04-15 12:48 ` Libin
  2013-04-18  7:58 ` [PATCH 1/6] mm: " Michel Lespinasse
  5 siblings, 0 replies; 10+ messages in thread
From: Libin @ 2013-04-15 12:48 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton
  Cc: Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.

Signed-off-by: Libin <huawei.libin@huawei.com>
---
 drivers/uio/uio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c
index c8b9262..ba5447f 100644
--- a/drivers/uio/uio.c
+++ b/drivers/uio/uio.c
@@ -676,7 +676,7 @@ static int uio_mmap(struct file *filep, struct vm_area_struct *vma)
 	if (mi < 0)
 		return -EINVAL;
 
-	requested_pages = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+	requested_pages = vma_pages(vma);
 	actual_pages = ((idev->info->mem[mi].addr & ~PAGE_MASK)
 			+ idev->info->mem[mi].size + PAGE_SIZE -1) >> PAGE_SHIFT;
 	if (requested_pages > actual_pages)
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/6] PCI: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 ` [PATCH 2/6] PCI: " Libin
@ 2013-04-15 18:09   ` Bjorn Helgaas
  0 siblings, 0 replies; 10+ messages in thread
From: Bjorn Helgaas @ 2013-04-15 18:09 UTC (permalink / raw)
  To: Libin
  Cc: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Hans J. Koch,
	Petr Vandrovec, Andrew Morton, Konstantin Khlebnikov,
	Thomas Hellstrom, Dave Airlie, Nadia Yvette Chambers,
	Jiri Kosina, Al Viro, Mel Gorman, Hugh Dickins, Rik van Riel,
	David Rientjes, Michel Lespinasse, linux-kernel,
	DRI mailing list, linux-pci, linux-mm, Hanjun Guo, Yijing Wang

On Mon, Apr 15, 2013 at 6:48 AM, Libin <huawei.libin@huawei.com> wrote:
> (*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
> as a inline funcion vma_pages() in linux/mm.h, so using it.
>
> Signed-off-by: Libin <huawei.libin@huawei.com>

Applied to my pci/misc branch for v3.10, thanks!

Bjorn

> ---
>  drivers/pci/pci-sysfs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
> index 9c6e9bb..5b4a9d9 100644
> --- a/drivers/pci/pci-sysfs.c
> +++ b/drivers/pci/pci-sysfs.c
> @@ -897,7 +897,7 @@ int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vma,
>
>         if (pci_resource_len(pdev, resno) == 0)
>                 return 0;
> -       nr = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
> +       nr = vma_pages(vma);
>         start = vma->vm_pgoff;
>         size = ((pci_resource_len(pdev, resno) - 1) >> PAGE_SHIFT) + 1;
>         pci_start = (mmap_api == PCI_MMAP_PROCFS) ?
> --
> 1.8.2.1
>
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 4/6] char: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 ` [PATCH 4/6] char: " Libin
@ 2013-04-16  0:44   ` Xie XiuQi
  2013-04-17  7:01   ` David Rientjes
  1 sibling, 0 replies; 10+ messages in thread
From: Xie XiuQi @ 2013-04-16  0:44 UTC (permalink / raw)
  To: Libin
  Cc: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton,
	Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

On 2013/4/15 20:48, Libin wrote:
> (*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
> as a inline funcion vma_pages() in linux/mm.h, so using it.
> 
> Signed-off-by: Libin <huawei.libin@huawei.com>
> ---
>  drivers/char/mspec.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/char/mspec.c b/drivers/char/mspec.c
> index e1f60f9..ed0703f 100644
> --- a/drivers/char/mspec.c
> +++ b/drivers/char/mspec.c
> @@ -168,7 +168,7 @@ mspec_close(struct vm_area_struct *vma)
>  	if (!atomic_dec_and_test(&vdata->refcnt))
>  		return;
>  
> -	last_index = (vdata->vm_end - vdata->vm_start) >> PAGE_SHIFT;
> +	last_index = vma_pages(vdata);
>  	for (index = 0; index < last_index; index++) {
>  		if (vdata->maddr[index] == 0)
>  			continue;
> 

This function mspec_mmap also need modification...
And you can change int to unsigned long.

static int
mspec_mmap(struct file *file, struct vm_area_struct *vma,
					enum mspec_page_type type)
{
	struct vma_data *vdata;
	int pages, vdata_size, flags = 0;

	if (vma->vm_pgoff != 0)
		return -EINVAL;

	if ((vma->vm_flags & VM_SHARED) == 0)
		return -EINVAL;

	if ((vma->vm_flags & VM_WRITE) == 0)
		return -EPERM;

	pages = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
	vdata_size = sizeof(struct vma_data) + pages * sizeof(long);
	if (vdata_size <= PAGE_SIZE)
		vdata = kzalloc(vdata_size, GFP_KERNEL);
	else {
		vdata = vzalloc(vdata_size);
		flags = VMD_VMALLOCED;
	}
	if (!vdata)
		return -ENOMEM;



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 4/6] char: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 ` [PATCH 4/6] char: " Libin
  2013-04-16  0:44   ` Xie XiuQi
@ 2013-04-17  7:01   ` David Rientjes
  1 sibling, 0 replies; 10+ messages in thread
From: David Rientjes @ 2013-04-17  7:01 UTC (permalink / raw)
  To: Libin
  Cc: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton,
	Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, Michel Lespinasse, linux-kernel,
	dri-devel, linux-pci, linux-mm, guohanjun, wangyijing

On Mon, 15 Apr 2013, Libin wrote:

> diff --git a/drivers/char/mspec.c b/drivers/char/mspec.c
> index e1f60f9..ed0703f 100644
> --- a/drivers/char/mspec.c
> +++ b/drivers/char/mspec.c
> @@ -168,7 +168,7 @@ mspec_close(struct vm_area_struct *vma)
>  	if (!atomic_dec_and_test(&vdata->refcnt))
>  		return;
>  
> -	last_index = (vdata->vm_end - vdata->vm_start) >> PAGE_SHIFT;
> +	last_index = vma_pages(vdata);
>  	for (index = 0; index < last_index; index++) {
>  		if (vdata->maddr[index] == 0)
>  			continue;

vdata is of type struct vma_data * and vma_pages() takes a formal of type 
struct vm_area_struct *, so these are incompatible.  Hopefully you tested 
the other changes and simply lack an ia64 cross compiler for this one, 
because it will emit a warning.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
  2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
                   ` (4 preceding siblings ...)
  2013-04-15 12:48 ` [PATCH 6/6] uio: " Libin
@ 2013-04-18  7:58 ` Michel Lespinasse
  5 siblings, 0 replies; 10+ messages in thread
From: Michel Lespinasse @ 2013-04-18  7:58 UTC (permalink / raw)
  To: Libin
  Cc: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton,
	Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, linux-kernel,
	dri-devel, linux-pci, linux-mm, guohanjun, wangyijing

On Mon, Apr 15, 2013 at 5:48 AM, Libin <huawei.libin@huawei.com> wrote:
> (*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
> as a inline funcion vma_pages() in linux/mm.h, so using it.
>
> Signed-off-by: Libin <huawei.libin@huawei.com>

Looks good to me.

Reviewed-by: Michel Lespinasse <walken@google.com>

-- 
Michel "Walken" Lespinasse
A program is never fully debugged until the last user dies.

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-04-18  7:58 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
2013-04-15 12:48 ` [PATCH 2/6] PCI: " Libin
2013-04-15 18:09   ` Bjorn Helgaas
2013-04-15 12:48 ` [PATCH 3/6] ncpfs: " Libin
2013-04-15 12:48 ` [PATCH 4/6] char: " Libin
2013-04-16  0:44   ` Xie XiuQi
2013-04-17  7:01   ` David Rientjes
2013-04-15 12:48 ` [PATCH 5/6] drm: " Libin
2013-04-15 12:48 ` [PATCH 6/6] uio: " Libin
2013-04-18  7:58 ` [PATCH 1/6] mm: " Michel Lespinasse

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).