The following changes since commit 471bb52b2e75413d18e8def5bb7d301aab7541e9: Fix memory leak on tmp_buf (2016-11-14 00:05:37 +0000) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to effe99e4b18eb5c345629d7bbaae1879a2594b20: posixaio: fix bad type passed to memset (2016-11-15 10:42:58 -0700) ---------------------------------------------------------------- Jens Axboe (1): posixaio: fix bad type passed to memset engines/posixaio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/engines/posixaio.c b/engines/posixaio.c index e5411b7..bddb1ec 100644 --- a/engines/posixaio.c +++ b/engines/posixaio.c @@ -109,7 +109,7 @@ static int fio_posixaio_getevents(struct thread_data *td, unsigned int min, r = 0; restart: - memset(suspend_list, 0, sizeof(*suspend_list)); + memset(suspend_list, 0, sizeof(suspend_list)); suspend_entries = 0; io_u_qiter(&td->io_u_all, io_u, i) { int err; -- 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