From 4a12d8397faa8f6c41a393601cc30def80c62dfb Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Wed, 2 Jul 2003 08:08:32 +0000 Subject: [PATCH] Change idle state sleep identifier to "-" for nfsd. --- sys/nfsserver/nfs_syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/nfsserver/nfs_syscalls.c b/sys/nfsserver/nfs_syscalls.c index 9603c341e0c..87880897d84 100644 --- a/sys/nfsserver/nfs_syscalls.c +++ b/sys/nfsserver/nfs_syscalls.c @@ -316,7 +316,7 @@ nfssvc_nfsd(struct thread *td) nfsd->nfsd_flag |= NFSD_WAITING; nfsd_waiting++; error = tsleep(nfsd, PSOCK | PCATCH, - "nfsd", 0); + "-", 0); nfsd_waiting--; if (error) goto done;