Whamcloud - gitweb
Revert "b=22965 enable lockless truncate"
[fs/lustre-release.git] / lustre-iokit / lustre-iokit.spec.in
1 # lustre-iokit.spec
2 %define name @PACKAGE@
3 %define version @VERSION@
4 %define release @RELEASE@
5
6 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
7 Name: %{name}
8 Version: %{version}
9 Release: %{release}
10 License: GPL
11 Group: Applications/System
12 Source: %{name}-%{version}.tar.gz
13 URL: http://www.sun.com/software/products/lustre/index.xml
14 BuildRoot: /var/tmp/%{name}-%{version}-root
15 Provides: %{name} = %{version}
16 BuildArch: noarch
17 Requires: python > 2.2, sg3_utils
18
19 %description
20 This package includes five tools:
21 sgpdd-survey:
22 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility. 
23
24 obdfilter-survey 
25 This survey can be run in 3 modes to test disk I/O including the filesystem,
26 network I/O, and disk I/O via the network.  The script does sequential I/O 
27 with varying numbers of threads and objects (files) by using lctl::test_brw 
28 to drive the echo_client connected to local or remote obdfilter instances, 
29 or remote obdecho instances.
30
31 ost-survey 
32 This survey tests the client-to-disk performance of individual OSTs, and 
33 ranks then for comparison.
34
35 stats-collect
36 This script will collect IO stats on a defined set of nodes. 
37
38 ior-survey:
39 A script to run the IOR benchmark. The latest version can be downloaded from http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
40
41 %prep
42 %setup -qn %{name}-%{version}
43
44 %build
45 rm -fr $RPM_BUILD_ROOT
46 ./configure --prefix=/usr
47 make
48
49 %install
50 make install DESTDIR=$RPM_BUILD_ROOT
51
52 %files
53 /usr/bin/ior-survey
54 /usr/bin/parse-ior
55 /usr/bin/libecho
56 /usr/bin/obdfilter-survey
57 /usr/bin/plot-obdfilter
58 /usr/bin/plot-ost
59 /usr/bin/ost-survey
60 /usr/bin/sgpdd-survey
61 /usr/bin/plot-sgpdd
62 /usr/bin/lstats.sh
63 /usr/bin/gather_stats_everywhere.sh
64 /usr/bin/config.sh
65 %doc obdfilter-survey/README.obdfilter-survey
66 %doc ior-survey/README.ior-survey
67 %doc ost-survey/README.ost-survey
68 %doc sgpdd-survey/README.sgpdd-survey
69 %doc stats-collect/README.lstats.sh
70
71
72 %changelog
73 * Tue Jul 24 2007 Cliff White
74 - Added stats-collect
75 * Mon Apr 9 2007 Cliff White
76 - Merged with existing, changed to .in format.
77 * Thu Oct 4 2006  Kalpak Shah
78 - Created the spec file.