diff options
author | Mike Frantzen <frantzen@cvs.openbsd.org> | 2001-09-15 20:40:47 +0000 |
---|---|---|
committer | Mike Frantzen <frantzen@cvs.openbsd.org> | 2001-09-15 20:40:47 +0000 |
commit | f252809cba0bb3295a7c736a41357418fdabe5f3 (patch) | |
tree | 19d790ff321ed71694c39160f978ef5600dfdb69 /sys/net | |
parent | 6246168fbb4199c1869ffbcf5f8c13a19be10684 (diff) |
Revert the sleep priority to something more sane
(the previous priority didn't help performance in tests on a hacked
up BPF and it weighed down the load average)
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/bpf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 5684cfab3d0..702bf43047a 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.c,v 1.28 2001/06/08 04:19:24 angelos Exp $ */ +/* $OpenBSD: bpf.c,v 1.29 2001/09/15 20:40:46 frantzen Exp $ */ /* $NetBSD: bpf.c,v 1.33 1997/02/21 23:59:35 thorpej Exp $ */ /* @@ -64,7 +64,7 @@ #define BPF_BUFSIZE 8192 /* 4096 too small for FDDI frames */ -#define PRINET 6 /* interruptible */ +#define PRINET 26 /* interruptible */ /* * The default read buffer size is patchable. |