linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Liam Howlett <liam.howlett@oracle.com>
To: Alistair Popple <apopple@nvidia.com>
Cc: "akpm@linux-foundation.org" <akpm@linux-foundation.org>,
	"linux-mm@kvack.org" <linux-mm@kvack.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mm/mmap: Properly unaccount memory on mas_preallocate() failure
Date: Fri, 2 Dec 2022 13:58:24 +0000	[thread overview]
Message-ID: <20221202135811.jklcbe5jbaog3ujx@revolver> (raw)
In-Reply-To: <20221202045339.2999017-1-apopple@nvidia.com>

* Alistair Popple <apopple@nvidia.com> [221201 23:54]:
> security_vm_enough_memory_mm() accounts memory via a call to
> vm_acct_memory(). Therefore any subsequent failures should unaccount
> for this memory prior to returning the error.
> 
> Signed-off-by: Alistair Popple <apopple@nvidia.com>
> Fixes: 28c5609fb236 ("mm/mmap: preallocate maple nodes for brk vma expansion")

Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com>

> 
> ---
> 
> Pretty trivial fixup that I noticed was needed while working on the
> code.
> ---
>  mm/mmap.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/mm/mmap.c b/mm/mmap.c
> index 74a84eb33b90..3e50a571c3c4 100644
> --- a/mm/mmap.c
> +++ b/mm/mmap.c
> @@ -2954,7 +2954,7 @@ static int do_brk_flags(struct ma_state *mas, struct vm_area_struct *vma,
>  	    ((vma->vm_flags & ~VM_SOFTDIRTY) == flags)) {
>  		mas_set_range(mas, vma->vm_start, addr + len - 1);
>  		if (mas_preallocate(mas, vma, GFP_KERNEL))
> -			return -ENOMEM;
> +			goto unacct_fail;
>  
>  		vma_adjust_trans_huge(vma, vma->vm_start, addr + len, 0);
>  		if (vma->anon_vma) {
> @@ -2976,7 +2976,7 @@ static int do_brk_flags(struct ma_state *mas, struct vm_area_struct *vma,
>  	/* create a vma struct for an anonymous mapping */
>  	vma = vm_area_alloc(mm);
>  	if (!vma)
> -		goto vma_alloc_fail;
> +		goto unacct_fail;
>  
>  	vma_set_anonymous(vma);
>  	vma->vm_start = addr;
> @@ -3001,7 +3001,7 @@ static int do_brk_flags(struct ma_state *mas, struct vm_area_struct *vma,
>  
>  mas_store_fail:
>  	vm_area_free(vma);
> -vma_alloc_fail:
> +unacct_fail:
>  	vm_unacct_memory(len >> PAGE_SHIFT);
>  	return -ENOMEM;
>  }
> -- 
> 2.35.1
> 

      reply	other threads:[~2022-12-02 13:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-02  4:53 Alistair Popple
2022-12-02 13:58 ` Liam Howlett [this message]

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=20221202135811.jklcbe5jbaog3ujx@revolver \
    --to=liam.howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=apopple@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    /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