The following changes since commit 79074e7c8c01a355be5b6d3a84df101100f93a66: Fix for crash with more than ~500 jobs (2012-04-18 20:39:48 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Fix man page type Tao Ma (1): fio: Add to cgroup if parameter "cgroup" is enabled. backend.c | 2 +- fio.1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/backend.c b/backend.c index f4bc553..e1dc0ac 100644 --- a/backend.c +++ b/backend.c @@ -1055,7 +1055,7 @@ static void *thread_main(void *data) } } - if (td->o.cgroup_weight && cgroup_setup(td, cgroup_list, &cgroup_mnt)) + if (td->o.cgroup && cgroup_setup(td, cgroup_list, &cgroup_mnt)) goto err; errno = 0; diff --git a/fio.1 b/fio.1 index 969c4a1..352c2ca 100644 --- a/fio.1 +++ b/fio.1 @@ -204,7 +204,7 @@ Mixed random reads and writes. .P For mixed I/O, the default split is 50/50. For certain types of io the result may still be skewed a bit, since the speed may be different. It is possible to -specify a number of IO's to do before getting a new offset, this is one by +specify a number of IO's to do before getting a new offset, this is done by appending a `:\fI<nr>\fR to the end of the string given. For a random read, it would look like \fBrw=randread:8\fR for passing in an offset modifier with a value of 8. If the postfix is used with a sequential IO pattern, then the value -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html