lkml.org 
[lkml]   [2010]   [Apr]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[PATCH 3/4] anon_vma: clone the anon_vma chain in the right order

    From: Linus Torvalds <torvalds@linux-foundation.org>
    Date: Sun, 11 Apr 2010 17:15:03 -0700
    Subject: [PATCH 3/4] anon_vma: clone the anon_vma chain in the right order

    We want to walk the chain in reverse order when cloning it, so that the
    order of the result chain will be the same as the order in the source
    chain. When we add entries to the chain, they go at the head of the
    chain, so we want to add the source head last.

    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    ---
    mm/rmap.c | 2 +-
    1 files changed, 1 insertions(+), 1 deletions(-)

    diff --git a/mm/rmap.c b/mm/rmap.c
    index eaa7a09..ee97d38 100644
    --- a/mm/rmap.c
    +++ b/mm/rmap.c
    @@ -182,7 +182,7 @@ int anon_vma_clone(struct vm_area_struct *dst, struct vm_area_struct *src)
    {
    struct anon_vma_chain *avc, *pavc;

    - list_for_each_entry(pavc, &src->anon_vma_chain, same_vma) {
    + list_for_each_entry_reverse(pavc, &src->anon_vma_chain, same_vma) {
    avc = anon_vma_chain_alloc();
    if (!avc)
    goto enomem_failure;
    --
    1.7.1.rc1.dirty


    \
     
     \ /
      Last update: 2010-04-12 22:31    [W:6.291 / U:0.040 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site