diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-07-24 00:27:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-24 13:47:15 -0400 |
commit | 42b7772812d15b86543a23b82bd6070eef9a08b1 (patch) | |
tree | 10665ee01fe82ce17c68a6278d044531b1ed64c0 /include/linux/mm.h | |
parent | a352894d07059649398c4769dc8b645e1a1dad88 (diff) |
mm: remove double indirection on tlb parameter to free_pgd_range() & Co
The double indirection here is not needed anywhere and hence (at least)
confusing.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: Hugh Dickins <hugh@veritas.com>
Cc: Nick Piggin <npiggin@suse.de>
Cc: Christoph Lameter <cl@linux-foundation.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: "David S. Miller" <davem@davemloft.net>
Acked-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r-- | include/linux/mm.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 5c7f8f64f70e..f8071097302a 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -769,10 +769,8 @@ struct mm_walk { | |||
769 | 769 | ||
770 | int walk_page_range(unsigned long addr, unsigned long end, | 770 | int walk_page_range(unsigned long addr, unsigned long end, |
771 | struct mm_walk *walk); | 771 | struct mm_walk *walk); |
772 | void free_pgd_range(struct mmu_gather **tlb, unsigned long addr, | 772 | void free_pgd_range(struct mmu_gather *tlb, unsigned long addr, |
773 | unsigned long end, unsigned long floor, unsigned long ceiling); | 773 | unsigned long end, unsigned long floor, unsigned long ceiling); |
774 | void free_pgtables(struct mmu_gather **tlb, struct vm_area_struct *start_vma, | ||
775 | unsigned long floor, unsigned long ceiling); | ||
776 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, | 774 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, |
777 | struct vm_area_struct *vma); | 775 | struct vm_area_struct *vma); |
778 | void unmap_mapping_range(struct address_space *mapping, | 776 | void unmap_mapping_range(struct address_space *mapping, |