diff options
| author | Seigo Tanimura <tanimura@FreeBSD.org> | 2003-11-09 09:17:26 +0000 |
|---|---|---|
| committer | Seigo Tanimura <tanimura@FreeBSD.org> | 2003-11-09 09:17:26 +0000 |
| commit | 512824f8f7748f7bb54ef900bc8e68a95a3d0f4d (patch) | |
| tree | 19de3ca43ba82c3cf15a4a6c7fba917e0f7e416b /sys/dev/snp | |
| parent | 2e55d247a6d6610c98412798ff06d682f2ee91c6 (diff) | |
Notes
Diffstat (limited to 'sys/dev/snp')
| -rw-r--r-- | sys/dev/snp/snp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/snp/snp.c b/sys/dev/snp/snp.c index d08ff3f50714..4c4115d3ff53 100644 --- a/sys/dev/snp/snp.c +++ b/sys/dev/snp/snp.c @@ -370,7 +370,7 @@ snp_in(snp, buf, n) snp->snp_flags &= ~SNOOP_RWAIT; wakeup(snp); } - selwakeup(&snp->snp_sel); + selwakeuppri(&snp->snp_sel, PZERO + 1); return (n); } @@ -444,7 +444,7 @@ snp_detach(snp) snp->snp_target = NODEV; detach_notty: - selwakeup(&snp->snp_sel); + selwakeuppri(&snp->snp_sel, PZERO + 1); if ((snp->snp_flags & SNOOP_OPEN) == 0) free(snp, M_SNP); |
