Skip to content

Commit 853f62a

Browse files
Matthew Wilcox (Oracle)akpm00
authored andcommitted
mm: fix get_mctgt_type() kernel-doc
Convert the return values to an ReST list and tidy up the wording while I'm touching it. [akpm@linux-foundation.org: changes suggested by Randy] [willy@infradead.org: another change suggested by Randy] Link: https://lkml.kernel.org/r/ZOUZtZizeQG7PcsM@casper.infradead.org Link: https://lkml.kernel.org/r/20230818200630.2719595-3-willy@infradead.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Acked-by: Mike Rapoport (IBM) <rppt@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent 19134bc commit 853f62a

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

mm/memcontrol.c

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5850,25 +5850,20 @@ static int mem_cgroup_move_account(struct page *page,
58505850
* @ptent: the pte to be checked
58515851
* @target: the pointer the target page or swap ent will be stored(can be NULL)
58525852
*
5853-
* Returns
5854-
* 0(MC_TARGET_NONE): if the pte is not a target for move charge.
5855-
* 1(MC_TARGET_PAGE): if the page corresponding to this pte is a target for
5856-
* move charge. if @target is not NULL, the page is stored in target->page
5857-
* with extra refcnt got(Callers should handle it).
5858-
* 2(MC_TARGET_SWAP): if the swap entry corresponding to this pte is a
5859-
* target for charge migration. if @target is not NULL, the entry is stored
5860-
* in target->ent.
5861-
* 3(MC_TARGET_DEVICE): like MC_TARGET_PAGE but page is device memory and
5862-
* thus not on the lru.
5863-
* For now we such page is charge like a regular page would be as for all
5864-
* intent and purposes it is just special memory taking the place of a
5865-
* regular page.
5866-
*
5867-
* See Documentations/vm/hmm.txt and include/linux/hmm.h
5868-
*
5869-
* Called with pte lock held.
5853+
* Context: Called with pte lock held.
5854+
* Return:
5855+
* * MC_TARGET_NONE - If the pte is not a target for move charge.
5856+
* * MC_TARGET_PAGE - If the page corresponding to this pte is a target for
5857+
* move charge. If @target is not NULL, the page is stored in target->page
5858+
* with extra refcnt taken (Caller should release it).
5859+
* * MC_TARGET_SWAP - If the swap entry corresponding to this pte is a
5860+
* target for charge migration. If @target is not NULL, the entry is
5861+
* stored in target->ent.
5862+
* * MC_TARGET_DEVICE - Like MC_TARGET_PAGE but page is device memory and
5863+
* thus not on the lru. For now such page is charged like a regular page
5864+
* would be as it is just special memory taking the place of a regular page.
5865+
* See Documentations/vm/hmm.txt and include/linux/hmm.h
58705866
*/
5871-
58725867
static enum mc_target_type get_mctgt_type(struct vm_area_struct *vma,
58735868
unsigned long addr, pte_t ptent, union mc_target *target)
58745869
{

0 commit comments

Comments
 (0)