From owner-cvs-all Sun Sep 10 6:52:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5C4D37B43C; Sun, 10 Sep 2000 06:52:19 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA06290; Sun, 10 Sep 2000 06:52:19 -0700 (PDT) (envelope-from markm@FreeBSD.org) Message-Id: <200009101352.GAA06290@freefall.freebsd.org> From: Mark Murray Date: Sun, 10 Sep 2000 06:52:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files src/sys/sys random.h src/sys/dev/randomdev hash.c hash.h harvest.c randomdev.c yarrow.c yarrow.h src/sys/modules/randomdev Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG markm 2000/09/10 06:52:19 PDT Modified files: sys/conf files sys/sys random.h sys/dev/randomdev harvest.c randomdev.c yarrow.c yarrow.h sys/modules/randomdev Makefile Added files: sys/dev/randomdev hash.c hash.h Log: Large upgrade to the entropy device; mainly inspired by feedback from many folk. o The reseed process is now a kthread. With SMPng, kthreads are pre-emptive, so the annoying jerkiness of the mouse is gone. o The data structures are protected by mutexes now, not splfoo()/splx(). o The cryptographic routines are broken out into their own subroutines. this facilitates review, and possible replacement if that is ever found necessary. Thanks to: kris, green, peter, jasone, grog, jhb Forgotten to thank: You know who you are; no offense intended. Revision Changes Path 1.406 +2 -1 src/sys/conf/files 1.26 +2 -2 src/sys/sys/random.h 1.5 +20 -1 src/sys/dev/randomdev/harvest.c 1.11 +19 -7 src/sys/dev/randomdev/randomdev.c 1.15 +287 -165 src/sys/dev/randomdev/yarrow.c 1.6 +4 -11 src/sys/dev/randomdev/yarrow.h 1.4 +3 -3 src/sys/modules/randomdev/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message