[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150908171433.GA14573@redhat.com>
Date: Tue, 8 Sep 2015 19:14:33 +0200
From: Oleg Nesterov <oleg@...hat.com>
To: Al Viro <viro@...iv.linux.org.uk>,
Eric Dumazet <eric.dumazet@...il.com>,
Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Ingo Molnar <mingo@...nel.org>,
Maciej Żenczykowski <maze@...gle.com>,
Peter Zijlstra <peterz@...radead.org>,
Thomas Gleixner <tglx@...utronix.de>,
linux-kernel@...r.kernel.org
Subject: [PATCH 0/3] task_work: restore fifo ordering guarantee
OK, nobody replied, I will spam you again. Modulo some cosmetic changes
this is the same patch, now with the changelog and I tried to test it.
Eric, Al, Linus, I will appreciate any comment. I still disagree with
the recent c82199061009 "task_work: remove fifo ordering guarantee".
I am not very sure about 2/3, so it comes as a separate change.
I used this trivial test-case
#include <stdio.h>
#include <unistd.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <fcntl.h>
#include <assert.h>
int main(int argc, const char *argv[])
{
int nfork = atoi(argv[1]);
int nopen = atoi(argv[2]);
while (nfork--) {
if (fork()) {
wait(NULL);
continue;
}
while (nopen--)
assert(open("/dev/null", O_RDONLY) >= 0);
break;
}
return 0;
}
to test the performance, and I see the same numbers with or without this
series. Well, actually the numbers look a little bit better when I do
"time ./o 10 1000000", but most probably this is just a noise.
Please review.
Oleg.
fs/file_table.c | 46 +++++++++++++++++++++++++++++++++++++++-------
include/linux/fs.h | 5 ++++-
kernel/task_work.c | 12 ++++++++++--
3 files changed, 53 insertions(+), 10 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists