aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_alq.c
diff options
context:
space:
mode:
authorJeff Roberson <jeff@FreeBSD.org>2002-09-26 07:38:56 +0000
committerJeff Roberson <jeff@FreeBSD.org>2002-09-26 07:38:56 +0000
commita414302f9000565999257f368687e523ec95adf2 (patch)
treefaa523d022b785f2fe6a5e81cdf91927ca3d68e5 /sys/kern/kern_alq.c
parent9c0d6e4c6dd10b82eb22849ea38af58716c98250 (diff)
downloadsrc-a414302f9000565999257f368687e523ec95adf2.tar.gz
src-a414302f9000565999257f368687e523ec95adf2.zip
- Export the alq daemon thread pointer.
- Don't log ktr events from the alq daemon.
Notes
Notes: svn path=/head/; revision=103995
Diffstat (limited to 'sys/kern/kern_alq.c')
-rw-r--r--sys/kern/kern_alq.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/kern/kern_alq.c b/sys/kern/kern_alq.c
index ab0c7a0cca19..7ddacc811b15 100644
--- a/sys/kern/kern_alq.c
+++ b/sys/kern/kern_alq.c
@@ -74,8 +74,9 @@ static MALLOC_DEFINE(M_ALD, "ALD", "ALD");
static struct mtx ald_mtx;
static LIST_HEAD(, alq) ald_queues;
static LIST_HEAD(, alq) ald_active;
-static struct proc *ald_thread;
static int ald_shutingdown = 0;
+struct thread *ald_thread;
+static struct proc *ald_proc;
#define ALD_LOCK() mtx_lock(&ald_mtx)
#define ALD_UNLOCK() mtx_unlock(&ald_mtx)
@@ -170,6 +171,8 @@ ald_daemon(void)
mtx_lock(&Giant);
+ ald_thread = FIRST_THREAD_IN_PROC(ald_proc);
+
EVENTHANDLER_REGISTER(shutdown_pre_sync, ald_shutdown, NULL,
SHUTDOWN_PRI_FIRST);
@@ -224,7 +227,7 @@ alq_shutdown(struct alq *alq)
}
ALQ_UNLOCK(alq);
- vn_close(alq->aq_vp, FREAD|FWRITE, alq->aq_cred,
+ vn_close(alq->aq_vp, FWRITE, alq->aq_cred,
curthread);
crfree(alq->aq_cred);
}
@@ -310,7 +313,7 @@ alq_doio(struct alq *alq)
static struct kproc_desc ald_kp = {
"ALQ Daemon",
ald_daemon,
- &ald_thread
+ &ald_proc
};
SYSINIT(aldthread, SI_SUB_KTHREAD_IDLE, SI_ORDER_ANY, kproc_start, &ald_kp)
@@ -339,7 +342,7 @@ alq_open(struct alq **alqp, const char *file, int size, int count)
td = curthread;
NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, file, td);
- flags = FREAD | FWRITE | O_NOFOLLOW | O_CREAT;
+ flags = FWRITE | O_NOFOLLOW | O_CREAT;
error = vn_open(&nd, &flags, 0);
if (error)