mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
memcg: add mem_cgroup_uncharge_folios()
Almost identical to mem_cgroup_uncharge_list(), except it takes a folio_batch instead of a list_head. Link: https://lkml.kernel.org/r/20240227174254.710559-6-willy@infradead.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Ryan Roberts <ryan.roberts@arm.com> Cc: David Hildenbrand <david@redhat.com> Cc: Mel Gorman <mgorman@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
6871cc5742
commit
4882c80975
@ -721,10 +721,16 @@ static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
|
||||
__mem_cgroup_uncharge_list(page_list);
|
||||
}
|
||||
|
||||
void __mem_cgroup_uncharge_folios(struct folio_batch *folios);
|
||||
static inline void mem_cgroup_uncharge_folios(struct folio_batch *folios)
|
||||
{
|
||||
if (mem_cgroup_disabled())
|
||||
return;
|
||||
__mem_cgroup_uncharge_folios(folios);
|
||||
}
|
||||
|
||||
void mem_cgroup_cancel_charge(struct mem_cgroup *memcg, unsigned int nr_pages);
|
||||
|
||||
void mem_cgroup_replace_folio(struct folio *old, struct folio *new);
|
||||
|
||||
void mem_cgroup_migrate(struct folio *old, struct folio *new);
|
||||
|
||||
/**
|
||||
@ -1299,6 +1305,10 @@ static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void mem_cgroup_uncharge_folios(struct folio_batch *folios)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void mem_cgroup_cancel_charge(struct mem_cgroup *memcg,
|
||||
unsigned int nr_pages)
|
||||
{
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include <linux/shmem_fs.h>
|
||||
#include <linux/hugetlb.h>
|
||||
#include <linux/pagemap.h>
|
||||
#include <linux/pagevec.h>
|
||||
#include <linux/vm_event_item.h>
|
||||
#include <linux/smp.h>
|
||||
#include <linux/page-flags.h>
|
||||
@ -7531,6 +7532,18 @@ void __mem_cgroup_uncharge_list(struct list_head *page_list)
|
||||
uncharge_batch(&ug);
|
||||
}
|
||||
|
||||
void __mem_cgroup_uncharge_folios(struct folio_batch *folios)
|
||||
{
|
||||
struct uncharge_gather ug;
|
||||
unsigned int i;
|
||||
|
||||
uncharge_gather_clear(&ug);
|
||||
for (i = 0; i < folios->nr; i++)
|
||||
uncharge_folio(folios->folios[i], &ug);
|
||||
if (ug.memcg)
|
||||
uncharge_batch(&ug);
|
||||
}
|
||||
|
||||
/**
|
||||
* mem_cgroup_replace_folio - Charge a folio's replacement.
|
||||
* @old: Currently circulating folio.
|
||||
|
Loading…
Reference in New Issue
Block a user