From: Miao Xie <miaox@cn.fujitsu.com>
To: Paul Menage <menage@google.com>
Cc: Ingo Molnar <mingo@elte.hu>,
Andrew Morton <akpm@linux-foundation.org>,
Linux-Kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] cpuset: fix allocating page cache/slab object on the unallowed node when memory spread is set
Date: Tue, 03 Feb 2009 11:05:17 +0800 [thread overview]
Message-ID: <4987B46D.2070500@cn.fujitsu.com> (raw)
In-Reply-To: <6599ad830901210241y1fe96d93x462e23d9883e7ab5@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2970 bytes --]
on 2009-1-21 18:41 Paul Menage wrote:
> On Wed, Jan 21, 2009 at 12:06 AM, Miao Xie <miaox@cn.fujitsu.com> wrote:
>> The task still allocated the page caches on old node after modifying its
>> cpuset's mems when 'memory_spread_page' was set, it is caused by the old
>> mem_allowed_list of the task, the current kernel doesn't updates it unless some
>> function invokes cpuset_update_task_memory_state(), it is too late sometimes.
>
> Can you give a more concrete example of how the current code can break?
I'm sorry for replying late.
A test program which reproduces the problem on current kernel is attached.
This program just repeats reading the file "DATAFILE" after receiving SIGUSR1
and exits after receiving SIGINT.
Test Task
sigsuspend();
while(!end) {
read DATAFILE;
sigsuspend();
}
Steps to reproduce:
# mkdir /dev/cpuset
# mount -t cpuset xxx /dev/cpuset
# mkdir /dev/cpuset/0
# echo 0 > /dev/cpuset/0/cpus
# echo 1-2 > /dev/cpuset/0/mems
# echo 1 > /dev/cpuset/0/memory_spread_page
# dd if=/dev/zero of=DATAFILE bs=4096 count=20480 <- create a 80M file
# ./mem-hog &
# tst_pid=$!
# cat /proc/$tst_pid/status
...
Mems_allowed: 00000000,00000007
Mems_allowed_list: 0-2
...
# echo $tst_pid > /dev/cpuset/0/tasks
# echo 3 > /proc/sys/vm/drop_caches
# find /sys/devices/system/node/ -name "meminfo" -exec cat {} + | grep "FilePages"
Node 0 FilePages: 15488 kB
Node 1 FilePages: 0 kB
Node 2 FilePages: 0 kB
# cat /proc/$tst_pid/status
...
Mems_allowed: 00000000,00000007 <- old memory list
Mems_allowed_list: 0-2
...
# kill -s sigusr1 $tst_pid
...wait a moment...
# find /sys/devices/system/node/ -name "meminfo" -exec cat {} + | grep "FilePages"
Node 0 FilePages: 97548 kB
Node 1 FilePages: 0 kB
Node 2 FilePages: 0 kB
# cat /proc/$tst_pid/status
...
Mems_allowed: 00000000,00000007 <- old memory list
Mems_allowed_list: 0-2
...
>> We must update the mem_allowed_list of the tasks in time.
>
> This is a fairly fundamental change to the way that mems_allowed is
> handled - it dates back to fairly early in cpusets' history.
I found Mr. Paul Jackson had discussed it with somebody:
http://lkml.org/lkml/2004/8/11/211
According to what Mr. Paul Jackson said, my patch has a serious bug.
Maybe we fix this bug just by choosing a good callsite for
cpuset_update_task_memory_state().
Thanks!
Miao
>> - * The task_struct fields mems_allowed and mems_generation may only
>> - * be accessed in the context of that task, so require no locks.
>> + * The task_struct fields mems_allowed may only be accessed in the context
>> + * of that task, so require no locks.
>
> This comment is no longer true, since mems_allowed is now being
> updated by other processes.
>
> What's to stop a task reading current->mems_allowed and racing with an
> update from update_tasks_nodemask() ? Or else, why can that not lead
> to badness?
>
> Paul
>
>
>
[-- Attachment #2: mem-hog.c --]
[-- Type: text/x-csrc, Size: 1352 bytes --]
/* gcc mem-hog.c -g -o mem-hog -Wall -Wextra */
#include <stdio.h>
#include <unistd.h>
#include <err.h>
#include <signal.h>
#include <fcntl.h>
#define UNUSED __attribute__ ((unused))
#define BUFFER_SIZE 1024
volatile int end;
void sighandler1(UNUSED int signo)
{
}
void sigint(UNUSED int signo)
{
end = 1;
}
int page_cache_hog(void)
{
int fd = -1;
char buff[BUFFER_SIZE];
char path[BUFFER_SIZE];
int ret = 0;
sprintf(path, "%s", "DATAFILE");
fd = open(path, O_RDONLY);
if (fd == -1) {
warn("open %s failed", path);
return -1;
}
while ((ret = read(fd, buff, sizeof(buff))) > 0);
if (ret == -1)
warn("read %s failed", path);
close(fd);
return ret;
}
int mem_hog(void)
{
sigset_t sigset;
int ret = 0;
if (sigemptyset(&sigset) < 0)
err(1, "sigemptyset()");
sigsuspend(&sigset);
while (!end) {
ret = page_cache_hog();
sigsuspend(&sigset);
}
return ret;
}
int main(UNUSED int argc, UNUSED char *argv[])
{
struct sigaction sa1, sa2;
sa1.sa_handler = sighandler1;
if (sigemptyset(&sa1.sa_mask) < 0)
err(1, "sigemptyset()");
sa1.sa_flags = 0;
if (sigaction(SIGUSR1, &sa1, NULL) < 0)
err(1, "sigaction()");
sa2.sa_handler = sigint;
if (sigemptyset(&sa2.sa_mask) < 0)
err(1, "sigemptyset()");
sa2.sa_flags = 0;
if (sigaction(SIGINT, &sa2, NULL) < 0)
err(1, "sigaction()");
return mem_hog();
}
next prev parent reply other threads:[~2009-02-03 3:07 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-21 8:06 [PATCH] cpuset: fix allocating page cache/slab object on the unallowed node when memory spread is set Miao Xie
2009-01-21 8:30 ` Nick Piggin
2009-01-21 10:41 ` Paul Menage
2009-02-03 3:05 ` Miao Xie [this message]
2009-01-27 22:42 ` Andrew Morton
2009-01-28 16:38 ` Christoph Lameter
2009-02-03 3:25 ` Miao Xie
2009-02-03 22:16 ` Andrew Morton
2009-02-03 22:49 ` Paul Menage
2009-02-04 9:31 ` Miao Xie
2009-02-06 19:19 ` Paul Menage
2009-02-09 4:02 ` Nick Piggin
2009-02-10 11:37 ` Paul Menage
2009-02-12 0:54 ` Nick Piggin
2009-02-12 1:19 ` Paul Menage
2009-02-12 1:55 ` Nick Piggin
2009-02-12 1:58 ` Paul Menage
2009-02-12 8:23 ` Miao Xie
2009-02-12 21:53 ` Paul Menage
2009-02-12 8:27 ` Miao Xie
2009-02-12 10:40 ` Nick Piggin
2009-02-12 5:57 ` Miao Xie
2009-02-12 11:06 ` Paul Jackson
2009-02-04 9:03 ` Miao Xie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4987B46D.2070500@cn.fujitsu.com \
--to=miaox@cn.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=menage@google.com \
--cc=mingo@elte.hu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox