diff options
author | ed <ed@FreeBSD.org> | 2009-04-06 13:09:02 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-04-06 13:09:02 +0000 |
commit | 5ea74be2e7e4721636c269d66c16b8b98a0ca1bf (patch) | |
tree | 314fcc241ecd75424a9e5c361ed64c630e09e920 | |
parent | 898389de484cdd317a5510b5930ddee0cb80dd4d (diff) | |
download | FreeBSD-src-5ea74be2e7e4721636c269d66c16b8b98a0ca1bf.zip FreeBSD-src-5ea74be2e7e4721636c269d66c16b8b98a0ca1bf.tar.gz |
Reduce the dcons polling frequency to 25 Hz.
It makes little sense to use 100 Hz polling in dcons. We cannot live
without polling, because that's just how dcons works. It polls the
buffer filled by the firewire hardware. 25 Hz is probably enough for
most use cases.
Discussed with: rwatson
Tested by: kan
-rw-r--r-- | sys/dev/dcons/dcons_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dcons/dcons_os.c b/sys/dev/dcons/dcons_os.c index 5bf40f9..49967eb 100644 --- a/sys/dev/dcons/dcons_os.c +++ b/sys/dev/dcons/dcons_os.c @@ -72,7 +72,7 @@ #ifndef DCONS_POLL_HZ -#define DCONS_POLL_HZ 100 +#define DCONS_POLL_HZ 25 #endif #ifndef DCONS_BUF_SIZE |