Skip to content

Commit 2e82752

Browse files
committed
s390/mm: fix kernel doc comments
Signed-off-by: Heiko Carstens <[email protected]>
1 parent a052096 commit 2e82752

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

arch/s390/mm/gmap.c

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
/**
2929
* gmap_alloc - allocate and initialize a guest address space
30-
* @mm: pointer to the parent mm_struct
3130
* @limit: maximum address of the gmap address space
3231
*
3332
* Returns a guest address space structure.
@@ -504,7 +503,7 @@ EXPORT_SYMBOL_GPL(gmap_translate);
504503

505504
/**
506505
* gmap_unlink - disconnect a page table from the gmap shadow tables
507-
* @gmap: pointer to guest mapping meta data structure
506+
* @mm: pointer to the parent mm_struct
508507
* @table: pointer to the host page table
509508
* @vmaddr: vm address associated with the host page table
510509
*/
@@ -527,7 +526,7 @@ static void gmap_pmdp_xchg(struct gmap *gmap, pmd_t *old, pmd_t new,
527526
unsigned long gaddr);
528527

529528
/**
530-
* gmap_link - set up shadow page tables to connect a host to a guest address
529+
* __gmap_link - set up shadow page tables to connect a host to a guest address
531530
* @gmap: pointer to guest mapping meta data structure
532531
* @gaddr: guest address
533532
* @vmaddr: vm address
@@ -1971,7 +1970,7 @@ int gmap_shadow_sgt(struct gmap *sg, unsigned long saddr, unsigned long sgt,
19711970
EXPORT_SYMBOL_GPL(gmap_shadow_sgt);
19721971

19731972
/**
1974-
* gmap_shadow_lookup_pgtable - find a shadow page table
1973+
* gmap_shadow_pgt_lookup - find a shadow page table
19751974
* @sg: pointer to the shadow guest address space structure
19761975
* @saddr: the address in the shadow aguest address space
19771976
* @pgt: parent gmap address of the page table to get shadowed
@@ -2165,7 +2164,7 @@ int gmap_shadow_page(struct gmap *sg, unsigned long saddr, pte_t pte)
21652164
}
21662165
EXPORT_SYMBOL_GPL(gmap_shadow_page);
21672166

2168-
/**
2167+
/*
21692168
* gmap_shadow_notify - handle notifications for shadow gmap
21702169
*
21712170
* Called with sg->parent->shadow_lock.
@@ -2225,7 +2224,7 @@ static void gmap_shadow_notify(struct gmap *sg, unsigned long vmaddr,
22252224
/**
22262225
* ptep_notify - call all invalidation callbacks for a specific pte.
22272226
* @mm: pointer to the process mm_struct
2228-
* @addr: virtual address in the process address space
2227+
* @vmaddr: virtual address in the process address space
22292228
* @pte: pointer to the page table entry
22302229
* @bits: bits from the pgste that caused the notify call
22312230
*

arch/s390/mm/pgtable.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ int set_guest_storage_key(struct mm_struct *mm, unsigned long addr,
834834
}
835835
EXPORT_SYMBOL(set_guest_storage_key);
836836

837-
/**
837+
/*
838838
* Conditionally set a guest storage key (handling csske).
839839
* oldkey will be updated when either mr or mc is set and a pointer is given.
840840
*
@@ -867,7 +867,7 @@ int cond_set_guest_storage_key(struct mm_struct *mm, unsigned long addr,
867867
}
868868
EXPORT_SYMBOL(cond_set_guest_storage_key);
869869

870-
/**
870+
/*
871871
* Reset a guest reference bit (rrbe), returning the reference and changed bit.
872872
*
873873
* Returns < 0 in case of error, otherwise the cc to be reported to the guest.

0 commit comments

Comments
 (0)