summaryrefslogtreecommitdiffstats
path: root/sys/vm/swap_pager.c
diff options
context:
space:
mode:
authorjh <jh@FreeBSD.org>2012-11-20 12:32:18 +0000
committerjh <jh@FreeBSD.org>2012-11-20 12:32:18 +0000
commit25dd09b99661e08017f7e5059f2aaa0a95cb0e65 (patch)
treed75016205cbfeb373d0f3a16c6943a09f85df034 /sys/vm/swap_pager.c
parent7df2814837ae2585cc6b0a8006fd6b2ff6c4bdcc (diff)
downloadFreeBSD-src-25dd09b99661e08017f7e5059f2aaa0a95cb0e65.zip
FreeBSD-src-25dd09b99661e08017f7e5059f2aaa0a95cb0e65.tar.gz
- Don't pass geom and provider names as format strings.
- Add __printflike() attributes. - Remove an extra argument for the g_new_geomf() call in swapongeom_ev(). Reviewed by: pjd
Diffstat (limited to 'sys/vm/swap_pager.c')
-rw-r--r--sys/vm/swap_pager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c
index 9aa7802..44bff25 100644
--- a/sys/vm/swap_pager.c
+++ b/sys/vm/swap_pager.c
@@ -2612,7 +2612,7 @@ swapongeom_ev(void *arg, int flags)
}
mtx_unlock(&sw_dev_mtx);
if (gp == NULL)
- gp = g_new_geomf(&g_swap_class, "swap", NULL);
+ gp = g_new_geomf(&g_swap_class, "swap");
cp = g_new_consumer(gp);
g_attach(cp, pp);
/*
OpenPOWER on IntegriCloud