Commit 527eb453 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

sched/psi: export psi_memstall_{enter,leave}

To properly account for all refaults from file system logic, file systems
need to call psi_memstall_enter directly, so export it.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Acked-by: default avatarJohannes Weiner <hannes@cmpxchg.org>
Link: https://lore.kernel.org/r/20220915094200.139713-3-hch@lst.deSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 17604240
...@@ -921,6 +921,7 @@ void psi_memstall_enter(unsigned long *flags) ...@@ -921,6 +921,7 @@ void psi_memstall_enter(unsigned long *flags)
rq_unlock_irq(rq, &rf); rq_unlock_irq(rq, &rf);
} }
EXPORT_SYMBOL_GPL(psi_memstall_enter);
/** /**
* psi_memstall_leave - mark the end of an memory stall section * psi_memstall_leave - mark the end of an memory stall section
...@@ -950,6 +951,7 @@ void psi_memstall_leave(unsigned long *flags) ...@@ -950,6 +951,7 @@ void psi_memstall_leave(unsigned long *flags)
rq_unlock_irq(rq, &rf); rq_unlock_irq(rq, &rf);
} }
EXPORT_SYMBOL_GPL(psi_memstall_leave);
#ifdef CONFIG_CGROUPS #ifdef CONFIG_CGROUPS
int psi_cgroup_alloc(struct cgroup *cgroup) int psi_cgroup_alloc(struct cgroup *cgroup)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment