From 99655b25dcc4c535689b8708bb155a1324044d38 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 20 Sep 2015 15:19:51 +0200 Subject: [PATCH 152/257] Prevent inlining of vm_pageout_scan() to allow fbt tracing Obtained from: ElectroBSD --- sys/vm/vm_pageout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index ed9d439af87f..a3f8774c9160 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -849,7 +849,7 @@ unlock_mp: * Returns true if pass was zero or enough pages were freed by the inactive * queue scan to meet the target. */ -static bool +static bool __noinline vm_pageout_scan(struct vm_domain *vmd, int pass) { vm_page_t m, next; -- 2.11.0