diff options
author | Dominik Dingel <dingel@linux.vnet.ibm.com> | 2014-03-19 10:18:49 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2014-03-21 09:57:58 +0100 |
commit | aaeff84a2dfa224611fc9fee89cb20277469c454 (patch) | |
tree | f4847e2dd0318fe8ce8c9f017c0d7fad619fab4a /arch/s390/mm/pgtable.c | |
parent | c7c5be73ccc05da9899b313b9fa0042aae56502f (diff) | |
download | op-kernel-dev-aaeff84a2dfa224611fc9fee89cb20277469c454.zip op-kernel-dev-aaeff84a2dfa224611fc9fee89cb20277469c454.tar.gz |
s390/mm: remove unnecessary parameter from gmap_do_ipte_notify
Signed-off-by: Dominik Dingel <dingel@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/mm/pgtable.c')
-rw-r--r-- | arch/s390/mm/pgtable.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/s390/mm/pgtable.c b/arch/s390/mm/pgtable.c index 27a1b93..796c932 100644 --- a/arch/s390/mm/pgtable.c +++ b/arch/s390/mm/pgtable.c @@ -802,13 +802,12 @@ EXPORT_SYMBOL_GPL(gmap_ipte_notify); /** * gmap_do_ipte_notify - call all invalidation callbacks for a specific pte. * @mm: pointer to the process mm_struct - * @addr: virtual address in the process address space * @pte: pointer to the page table entry * * This function is assumed to be called with the page table lock held * for the pte to notify. */ -void gmap_do_ipte_notify(struct mm_struct *mm, unsigned long addr, pte_t *pte) +void gmap_do_ipte_notify(struct mm_struct *mm, pte_t *pte) { unsigned long segment_offset; struct gmap_notifier *nb; |