aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/uma.h
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2015-05-09 20:08:36 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2015-05-09 20:08:36 +0000
commit44ec2b63c50ae6d0b2765d5cbdbffb0beb276ad4 (patch)
tree076f93ba33455e8fa9706dc599764746cfac5937 /sys/vm/uma.h
parent4bc8ff08029571c916ed5e025717b05dcf9c82f4 (diff)
downloadsrc-44ec2b63c50ae6d0b2765d5cbdbffb0beb276ad4.tar.gz
src-44ec2b63c50ae6d0b2765d5cbdbffb0beb276ad4.zip
The vmem callback to reclaim kmem arena address space on low or
fragmented conditions currently just wakes up the pagedaemon. The kmem arena is significantly smaller then the total available physical memory, which means that there are loads where kmem arena space could be exhausted, while there is a lot of pages available still. The woken up pagedaemon sees vm_pages_needed != 0, verifies the condition vm_paging_needed() which is false, clears the pass and returns back to sleep, not calling neither uma_reclaim() nor lowmem handler. To handle low kmem arena conditions, create additional pagedaemon thread which calls uma_reclaim() directly. The thread sleeps on the dedicated channel and kmem_reclaim() wakes the thread in addition to the pagedaemon. Reported and tested by: pho Sponsored by: The FreeBSD Foundation MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=282690
Diffstat (limited to 'sys/vm/uma.h')
-rw-r--r--sys/vm/uma.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/vm/uma.h b/sys/vm/uma.h
index df6cc5c7a118..d3e0658aef15 100644
--- a/sys/vm/uma.h
+++ b/sys/vm/uma.h
@@ -690,4 +690,7 @@ struct uma_percpu_stat {
uint64_t _ups_reserved[5]; /* Reserved. */
};
+void uma_reclaim_wakeup(void);
+void uma_reclaim_worker(void *);
+
#endif /* _VM_UMA_H_ */