Commit 98c70baa authored by Laurent Dufour's avatar Laurent Dufour Committed by Linus Torvalds

mm: remove useless vma parameter to offset_il_node

While reading the code I found that offset_il_node() has a vm_area_struct
pointer parameter which is unused.

Link: http://lkml.kernel.org/r/1502899755-23146-1-git-send-email-ldufour@linux.vnet.ibm.comSigned-off-by: default avatarLaurent Dufour <ldufour@linux.vnet.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent de540a97
...@@ -1745,8 +1745,7 @@ unsigned int mempolicy_slab_node(void) ...@@ -1745,8 +1745,7 @@ unsigned int mempolicy_slab_node(void)
* node in pol->v.nodes (starting from n=0), wrapping around if n exceeds the * node in pol->v.nodes (starting from n=0), wrapping around if n exceeds the
* number of present nodes. * number of present nodes.
*/ */
static unsigned offset_il_node(struct mempolicy *pol, static unsigned offset_il_node(struct mempolicy *pol, unsigned long n)
struct vm_area_struct *vma, unsigned long n)
{ {
unsigned nnodes = nodes_weight(pol->v.nodes); unsigned nnodes = nodes_weight(pol->v.nodes);
unsigned target; unsigned target;
...@@ -1779,7 +1778,7 @@ static inline unsigned interleave_nid(struct mempolicy *pol, ...@@ -1779,7 +1778,7 @@ static inline unsigned interleave_nid(struct mempolicy *pol,
BUG_ON(shift < PAGE_SHIFT); BUG_ON(shift < PAGE_SHIFT);
off = vma->vm_pgoff >> (shift - PAGE_SHIFT); off = vma->vm_pgoff >> (shift - PAGE_SHIFT);
off += (addr - vma->vm_start) >> shift; off += (addr - vma->vm_start) >> shift;
return offset_il_node(pol, vma, off); return offset_il_node(pol, off);
} else } else
return interleave_nodes(pol); return interleave_nodes(pol);
} }
...@@ -2247,7 +2246,7 @@ int mpol_misplaced(struct page *page, struct vm_area_struct *vma, unsigned long ...@@ -2247,7 +2246,7 @@ int mpol_misplaced(struct page *page, struct vm_area_struct *vma, unsigned long
pgoff = vma->vm_pgoff; pgoff = vma->vm_pgoff;
pgoff += (addr - vma->vm_start) >> PAGE_SHIFT; pgoff += (addr - vma->vm_start) >> PAGE_SHIFT;
polnid = offset_il_node(pol, vma, pgoff); polnid = offset_il_node(pol, pgoff);
break; break;
case MPOL_PREFERRED: case MPOL_PREFERRED:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment