From 4a30ae1037080a8e049f160de0ea0d183d02815c Mon Sep 17 00:00:00 2001 From: yamt Date: Wed, 7 May 2008 08:48:11 +0000 Subject: [PATCH] tprof_start: fix workqueue's IPL. --- sys/dev/tprof/tprof.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/tprof/tprof.c b/sys/dev/tprof/tprof.c index 998e713cb387..73d338c8039b 100644 --- a/sys/dev/tprof/tprof.c +++ b/sys/dev/tprof/tprof.c @@ -1,4 +1,4 @@ -/* $NetBSD: tprof.c,v 1.1 2008/01/01 21:28:37 yamt Exp $ */ +/* $NetBSD: tprof.c,v 1.2 2008/05/07 08:48:11 yamt Exp $ */ /*- * Copyright (c)2008 YAMAMOTO Takashi, @@ -27,7 +27,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: tprof.c,v 1.1 2008/01/01 21:28:37 yamt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tprof.c,v 1.2 2008/05/07 08:48:11 yamt Exp $"); #include #include @@ -239,7 +239,7 @@ tprof_start(const struct tprof_param *param) tprof_samples_per_buf = MIN(freq * 2, TPROF_MAX_SAMPLES_PER_BUF); error = workqueue_create(&tprof_wq, "tprofmv", tprof_worker, NULL, - PRI_NONE, PRI_SOFTCLOCK, WQ_MPSAFE | WQ_PERCPU); + PRI_NONE, IPL_SOFTCLOCK, WQ_MPSAFE | WQ_PERCPU); if (error != 0) { goto done; }