Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752247AbdLLUGF (ORCPT ); Tue, 12 Dec 2017 15:06:05 -0500 Received: from g9t5009.houston.hpe.com ([15.241.48.73]:60650 "EHLO g9t5009.houston.hpe.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751499AbdLLUGE (ORCPT ); Tue, 12 Dec 2017 15:06:04 -0500 Date: Tue, 12 Dec 2017 14:05:42 -0600 From: Dimitri Sivanich To: David Rientjes Cc: Andrew Morton , Michal Hocko , Andrea Arcangeli , Benjamin Herrenschmidt , Paul Mackerras , Oded Gabbay , Alex Deucher , Christian =?iso-8859-1?Q?K=F6nig?= , David Airlie , Joerg Roedel , Doug Ledford , Jani Nikula , Mike Marciniszyn , Sean Hefty , Dimitri Sivanich , Boris Ostrovsky , =?iso-8859-1?B?Suly9G1l?= Glisse , Paolo Bonzini , Radim =?utf-8?B?S3LEjW3DocWZ?= , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [patch 1/2] mm, mmu_notifier: annotate mmu notifiers with blockable invalidate callbacks Message-ID: <20171212200542.GJ5848@hpe.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 670 Lines: 17 On Mon, Dec 11, 2017 at 02:11:55PM -0800, David Rientjes wrote: > --- a/drivers/misc/sgi-gru/grutlbpurge.c > +++ b/drivers/misc/sgi-gru/grutlbpurge.c > @@ -298,6 +298,7 @@ struct gru_mm_struct *gru_register_mmu_notifier(void) > return ERR_PTR(-ENOMEM); > STAT(gms_alloc); > spin_lock_init(&gms->ms_asid_lock); > + gms->ms_notifier.flags = 0; > gms->ms_notifier.ops = &gru_mmuops; > atomic_set(&gms->ms_refcnt, 1); > init_waitqueue_head(&gms->ms_wait_queue); > diff --git a/drivers/xen/gntdev.c b/drivers/xen/gntdev.c There is a kzalloc() just above this: gms = kzalloc(sizeof(*gms), GFP_KERNEL); Is that not sufficient to clear the 'flags' field?