081930c498
Revision 1.3 of patch-ad worked around the problem, that only one writer is allowed to allow a partition through GEOM. The fix was not complete, leading to the file position not been incremented during reads and writes, thus not testing sequential performance, but performance of cached reads and writes, in general. This fix makes rawio report reasonable sequential performance again, but I'm still very suspicious with regard to randomized start positions working. The results do not show the expected variation of sequential read/write performance. I have not had time to look into this any deeper, though, and thus decidied to not delay the commit any further ...
27 lines
591 B
Makefile
27 lines
591 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: Rawio
|
|
# Date created: Sun Aug 08, 1999
|
|
# Whom: David O'Brien (obrien@NUXI.com)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rawio
|
|
PORTVERSION= 1.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= ftp://ftp.lemis.com/pub/ \
|
|
http://ftp.osuosl.org/pub/FreeBSD/distfiles/
|
|
|
|
MAINTAINER= grog@FreeBSD.org
|
|
COMMENT= Test performance of low-level storage devices
|
|
|
|
NO_WRKSUBDIR= yes
|
|
MAN1= rawio.1
|
|
PLIST_FILES= bin/rawio
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rawio ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/rawio.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|