[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20190907073355.GA3873@mellanox.com>
Date: Sat, 7 Sep 2019 07:33:58 +0000
From: Jason Gunthorpe <jgg@...lanox.com>
To: Daniel Vetter <daniel.vetter@...ll.ch>
CC: LKML <linux-kernel@...r.kernel.org>,
DRI Development <dri-devel@...ts.freedesktop.org>,
"syzbot+aaedc50d99a03250fe1f@...kaller.appspotmail.com"
<syzbot+aaedc50d99a03250fe1f@...kaller.appspotmail.com>,
Daniel Vetter <daniel.vetter@...el.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Jérôme Glisse <jglisse@...hat.com>,
Ralph Campbell <rcampbell@...dia.com>,
Ira Weiny <ira.weiny@...el.com>,
Michal Hocko <mhocko@...e.com>,
Sean Christopherson <sean.j.christopherson@...el.com>,
Jean-Philippe Brucker <jean-philippe@...aro.org>,
"linux-mm@...ck.org" <linux-mm@...ck.org>
Subject: Re: [PATCH] mm, notifier: Fix early return case for new lockdep
annotations
On Fri, Sep 06, 2019 at 07:47:30PM +0200, Daniel Vetter wrote:
> diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h
> index 5a03417e5bf7..4edd98b06834 100644
> +++ b/include/linux/mmu_notifier.h
> @@ -356,13 +356,14 @@ mmu_notifier_invalidate_range_start(struct mmu_notifier_range *range)
> static inline int
> mmu_notifier_invalidate_range_start_nonblock(struct mmu_notifier_range *range)
> {
> + int ret = 0;
> lock_map_acquire(&__mmu_notifier_invalidate_range_start_map);
> if (mm_has_notifiers(range->mm)) {
> range->flags &= ~MMU_NOTIFIER_RANGE_BLOCKABLE;
> - return __mmu_notifier_invalidate_range_start(range);
> + ret = __mmu_notifier_invalidate_range_start(range);
> }
> lock_map_release(&__mmu_notifier_invalidate_range_start_map);
> - return 0;
> + return ret;
Gar, yes. Since nobody has grabbed hmm.git I've squashed this into the
original patch and fixed the checkpatch warning about missing line
after the ret
Everything should be in linux-next the next time it builds
Thanks,
Jason
Powered by blists - more mailing lists