blktrace: disallow -o when using multiple devices
authorAlan D. Brunelle <alan.brunelle@hp.com>
Thu, 16 Sep 2010 13:26:22 +0000 (09:26 -0400)
committerAlan D. Brunelle <alan.brunelle@hp.com>
Thu, 16 Sep 2010 13:26:22 +0000 (09:26 -0400)
commitce2151ebdca6f2741dbd903aa3845c56adcba8f4
tree4c69b8f9136a8d709d535aff93567b876e5e59b7
parentfb7f86674a516ddff0d60bfab3bd284a4812075f
blktrace: disallow -o when using multiple devices

Document that "-o" does not work when specyfing multiple devices to
blktrace, also: enforce this by stopping blktrace when one tries do
do this.

The technical reason why "-o" doesn't work with multiple devices is
because we use multiple threads of execution - one per device/CPU pair -
and each of them opens a file named "<prefix>.blktrace.<cpu>". With the
"-o" all of the "<prefix>" values are the same - so multiple threads
open the same file and try to do output. Not good. Without the "-o"
we get unique files named: "<device>.blktrace.<cpu>"  - as the tuple
(<device>,<cpu>) is unique.

Signed-off-by: Alan D. Brunelle <Alan.Brunelle@hp.com>
blktrace.c
doc/blktrace.8
doc/blktrace.tex