mirror of https://github.com/torvalds/linux.git
s390/mm: Remove superfluous parameter
It seems it hasn't even been used before the last cleanup and was overlooked. Signed-off-by: Janosch Frank <frankja@linux.vnet.ibm.com> Message-Id: <1513169613-13509-12-git-send-email-frankja@linux.vnet.ibm.com> Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
This commit is contained in:
parent
a9f6c9a92f
commit
c0b4bd2191
|
|
@ -1998,7 +1998,7 @@ EXPORT_SYMBOL_GPL(gmap_shadow_page);
|
||||||
* Called with sg->parent->shadow_lock.
|
* Called with sg->parent->shadow_lock.
|
||||||
*/
|
*/
|
||||||
static void gmap_shadow_notify(struct gmap *sg, unsigned long vmaddr,
|
static void gmap_shadow_notify(struct gmap *sg, unsigned long vmaddr,
|
||||||
unsigned long gaddr, pte_t *pte)
|
unsigned long gaddr)
|
||||||
{
|
{
|
||||||
struct gmap_rmap *rmap, *rnext, *head;
|
struct gmap_rmap *rmap, *rnext, *head;
|
||||||
unsigned long start, end, bits, raddr;
|
unsigned long start, end, bits, raddr;
|
||||||
|
|
@ -2083,7 +2083,7 @@ void ptep_notify(struct mm_struct *mm, unsigned long vmaddr,
|
||||||
spin_lock(&gmap->shadow_lock);
|
spin_lock(&gmap->shadow_lock);
|
||||||
list_for_each_entry_safe(sg, next,
|
list_for_each_entry_safe(sg, next,
|
||||||
&gmap->children, list)
|
&gmap->children, list)
|
||||||
gmap_shadow_notify(sg, vmaddr, gaddr, pte);
|
gmap_shadow_notify(sg, vmaddr, gaddr);
|
||||||
spin_unlock(&gmap->shadow_lock);
|
spin_unlock(&gmap->shadow_lock);
|
||||||
}
|
}
|
||||||
if (bits & PGSTE_IN_BIT)
|
if (bits & PGSTE_IN_BIT)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue