Module Name: src Committed By: pooka Date: Thu Apr 30 17:43:07 UTC 2009
Modified Files: src/sys/rump/librump/rumpvfs: rumpblk.c Log Message: remove outdated comment To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/sys/rump/librump/rumpvfs/rumpblk.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/librump/rumpvfs/rumpblk.c diff -u src/sys/rump/librump/rumpvfs/rumpblk.c:1.22 src/sys/rump/librump/rumpvfs/rumpblk.c:1.23 --- src/sys/rump/librump/rumpvfs/rumpblk.c:1.22 Thu Apr 30 17:41:41 2009 +++ src/sys/rump/librump/rumpvfs/rumpblk.c Thu Apr 30 17:43:07 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: rumpblk.c,v 1.22 2009/04/30 17:41:41 pooka Exp $ */ +/* $NetBSD: rumpblk.c,v 1.23 2009/04/30 17:43:07 pooka Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -43,7 +43,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rumpblk.c,v 1.22 2009/04/30 17:41:41 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rumpblk.c,v 1.23 2009/04/30 17:43:07 pooka Exp $"); #include <sys/param.h> #include <sys/buf.h> @@ -262,7 +262,7 @@ &error) == 0) { randstate = strtoul(buf, NULL, 10); } else { - randstate = arc4random(); /* XXX: not enough entropy */ + randstate = arc4random(); } printf("rumpblk: FAULT INJECTION ACTIVE! fail %d/%d. " "seed %u\n", blkfail, BLKFAIL_MAX, randstate);