* [PATCH/RFC] Add MM_DEAD flag to struct mm_struct
@ 2007-07-27 2:00 Benjamin Herrenschmidt
2007-07-27 6:41 ` Benjamin Herrenschmidt
2007-07-27 7:13 ` [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #2 Benjamin Herrenschmidt
0 siblings, 2 replies; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2007-07-27 2:00 UTC (permalink / raw)
To: linux-mm; +Cc: Linux Kernel list
Some architectures like sparc can do useful optimizations when knowing
that an entire MM is being destroyed. At the moment, they rely on
fullmm in the mmu_gather structure. However, that doesn't always work
out very well with some of the changes we are doing. Among other things,
the TLB flushing on sparc64 is done using per-CPU tracking data, making
the batch not per-CPU will break that link.
So instead, we add a new flag to struct mm_struct that indicates that
the mm is going away, for those archs to use. It also allows to use it
in situations (such as PTE ops) where the batch isn't accessible (or
there is no batch)
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
Index: linux-work/include/linux/sched.h
===================================================================
--- linux-work.orig/include/linux/sched.h 2007-07-27 11:09:16.000000000 +1000
+++ linux-work/include/linux/sched.h 2007-07-27 11:09:22.000000000 +1000
@@ -353,6 +353,7 @@ extern int get_dumpable(struct mm_struct
#define MMF_DUMPABLE 0 /* core dump is permitted */
#define MMF_DUMP_SECURELY 1 /* core file is readable only by root */
#define MMF_DUMPABLE_BITS 2
+#define MMF_DEAD 3 /* mm is being destroyed */
/* coredump filter bits */
#define MMF_DUMP_ANON_PRIVATE 2
Index: linux-work/mm/mmap.c
===================================================================
--- linux-work.orig/mm/mmap.c 2007-07-27 11:09:52.000000000 +1000
+++ linux-work/mm/mmap.c 2007-07-27 11:10:05.000000000 +1000
@@ -1991,6 +1991,9 @@ void exit_mmap(struct mm_struct *mm)
unsigned long nr_accounted = 0;
unsigned long end;
+ /* Mark the MM as dead */
+ __set_bit(MMF_DEAD, &mm->flags);
+
/* mm's last user has gone, and its about to be pulled down */
arch_exit_mmap(mm);
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH/RFC] Add MM_DEAD flag to struct mm_struct
2007-07-27 2:00 [PATCH/RFC] Add MM_DEAD flag to struct mm_struct Benjamin Herrenschmidt
@ 2007-07-27 6:41 ` Benjamin Herrenschmidt
2007-07-27 7:13 ` [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #2 Benjamin Herrenschmidt
1 sibling, 0 replies; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2007-07-27 6:41 UTC (permalink / raw)
To: linux-mm; +Cc: Linux Kernel list
On Fri, 2007-07-27 at 12:01 +1000, Benjamin Herrenschmidt wrote:
> Some architectures like sparc can do useful optimizations when knowing
> that an entire MM is being destroyed. At the moment, they rely on
> fullmm in the mmu_gather structure. However, that doesn't always work
> out very well with some of the changes we are doing. Among other things,
> the TLB flushing on sparc64 is done using per-CPU tracking data, making
> the batch not per-CPU will break that link.
>
> So instead, we add a new flag to struct mm_struct that indicates that
> the mm is going away, for those archs to use. It also allows to use it
> in situations (such as PTE ops) where the batch isn't accessible (or
> there is no batch)
And the patch forgets to clear it in mm_init ... will send a new one
later.
Cheers,
Ben.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #2
2007-07-27 2:00 [PATCH/RFC] Add MM_DEAD flag to struct mm_struct Benjamin Herrenschmidt
2007-07-27 6:41 ` Benjamin Herrenschmidt
@ 2007-07-27 7:13 ` Benjamin Herrenschmidt
2007-07-27 8:09 ` [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #3 Benjamin Herrenschmidt
1 sibling, 1 reply; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2007-07-27 7:13 UTC (permalink / raw)
To: linux-mm; +Cc: Linux Kernel list, David S. Miller
Some architectures like sparc can do useful optimizations when knowing
that an entire MM is being destroyed. At the moment, they rely on
fullmm in the mmu_gather structure. However, that doesn't always work
out very well with some of the changes we are doing. Among other things,
the TLB flushing on sparc64 is done using per-CPU tracking data, making
the batch not per-CPU will break that link.
So instead, we add a new flag to struct mm_struct that indicates that
the mm is going away, for those archs to use. It also allows to use it
in situations (such as PTE ops) where the batch isn't accessible (or
there is no batch)
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
And here's a version that clears it too...
Index: linux-work/include/linux/sched.h
===================================================================
--- linux-work.orig/include/linux/sched.h 2007-07-27 11:09:16.000000000 +1000
+++ linux-work/include/linux/sched.h 2007-07-27 11:09:22.000000000 +1000
@@ -353,6 +353,7 @@ extern int get_dumpable(struct mm_struct
#define MMF_DUMPABLE 0 /* core dump is permitted */
#define MMF_DUMP_SECURELY 1 /* core file is readable only by root */
#define MMF_DUMPABLE_BITS 2
+#define MMF_DEAD 3 /* mm is being destroyed */
/* coredump filter bits */
#define MMF_DUMP_ANON_PRIVATE 2
Index: linux-work/mm/mmap.c
===================================================================
--- linux-work.orig/mm/mmap.c 2007-07-27 11:09:52.000000000 +1000
+++ linux-work/mm/mmap.c 2007-07-27 11:10:05.000000000 +1000
@@ -1991,6 +1991,9 @@ void exit_mmap(struct mm_struct *mm)
unsigned long nr_accounted = 0;
unsigned long end;
+ /* Mark the MM as dead */
+ __set_bit(MMF_DEAD, &mm->flags);
+
/* mm's last user has gone, and its about to be pulled down */
arch_exit_mmap(mm);
Index: linux-work/kernel/fork.c
===================================================================
--- linux-work.orig/kernel/fork.c 2007-07-27 16:12:30.000000000 +1000
+++ linux-work/kernel/fork.c 2007-07-27 16:12:52.000000000 +1000
@@ -336,6 +336,7 @@ static struct mm_struct * mm_init(struct
INIT_LIST_HEAD(&mm->mmlist);
mm->flags = (current->mm) ? current->mm->flags
: MMF_DUMP_FILTER_DEFAULT;
+ __clear_bit(MMF_DEAD, &mm->flags);
mm->core_waiters = 0;
mm->nr_ptes = 0;
set_mm_counter(mm, file_rss, 0);
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #3
2007-07-27 7:13 ` [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #2 Benjamin Herrenschmidt
@ 2007-07-27 8:09 ` Benjamin Herrenschmidt
0 siblings, 0 replies; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2007-07-27 8:09 UTC (permalink / raw)
To: linux-mm; +Cc: Linux Kernel list, David S. Miller
Some architectures like sparc can do useful optimizations when knowing
that an entire MM is being destroyed. At the moment, they rely on
fullmm in the mmu_gather structure. However, that doesn't always work
out very well with some of the changes we are doing. Among other things,
the TLB flushing on sparc64 is done using per-CPU tracking data, making
the batch not per-CPU will break that link.
So instead, we add a new flag to struct mm_struct that indicates that
the mm is going away, for those archs to use. It also allows to use it
in situations (such as PTE ops) where the batch isn't accessible (or
there is no batch)
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
And because I really have shit in my eyes today, here's a version that
doesn't use a bit already used for something else... yuck.
Thanks David !
Index: linux-work/include/linux/sched.h
===================================================================
--- linux-work.orig/include/linux/sched.h 2007-07-27 11:09:16.000000000 +1000
+++ linux-work/include/linux/sched.h 2007-07-27 18:06:37.000000000 +1000
@@ -366,6 +366,8 @@ extern int get_dumpable(struct mm_struct
#define MMF_DUMP_FILTER_DEFAULT \
((1 << MMF_DUMP_ANON_PRIVATE) | (1 << MMF_DUMP_ANON_SHARED))
+#define MMF_DEAD 6 /* mm is being destroyed */
+
struct mm_struct {
struct vm_area_struct * mmap; /* list of VMAs */
struct rb_root mm_rb;
Index: linux-work/mm/mmap.c
===================================================================
--- linux-work.orig/mm/mmap.c 2007-07-27 11:09:52.000000000 +1000
+++ linux-work/mm/mmap.c 2007-07-27 11:10:05.000000000 +1000
@@ -1991,6 +1991,9 @@ void exit_mmap(struct mm_struct *mm)
unsigned long nr_accounted = 0;
unsigned long end;
+ /* Mark the MM as dead */
+ __set_bit(MMF_DEAD, &mm->flags);
+
/* mm's last user has gone, and its about to be pulled down */
arch_exit_mmap(mm);
Index: linux-work/kernel/fork.c
===================================================================
--- linux-work.orig/kernel/fork.c 2007-07-27 16:12:30.000000000 +1000
+++ linux-work/kernel/fork.c 2007-07-27 16:12:52.000000000 +1000
@@ -336,6 +336,7 @@ static struct mm_struct * mm_init(struct
INIT_LIST_HEAD(&mm->mmlist);
mm->flags = (current->mm) ? current->mm->flags
: MMF_DUMP_FILTER_DEFAULT;
+ __clear_bit(MMF_DEAD, &mm->flags);
mm->core_waiters = 0;
mm->nr_ptes = 0;
set_mm_counter(mm, file_rss, 0);
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-07-27 8:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-27 2:00 [PATCH/RFC] Add MM_DEAD flag to struct mm_struct Benjamin Herrenschmidt
2007-07-27 6:41 ` Benjamin Herrenschmidt
2007-07-27 7:13 ` [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #2 Benjamin Herrenschmidt
2007-07-27 8:09 ` [PATCH/RFC] Add MM_DEAD flag to struct mm_struct #3 Benjamin Herrenschmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox