From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751718AbbJDTJi (ORCPT ); Sun, 4 Oct 2015 15:09:38 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:50013 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751518AbbJDTJh (ORCPT ); Sun, 4 Oct 2015 15:09:37 -0400 Date: Sun, 4 Oct 2015 20:09:32 +0100 From: Greg Kroah-Hartman To: Rasmus Villemoes Cc: Thomas Gleixner , Oleg Nesterov , "Paul E. McKenney" , Rusty Russell , linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/5] drivers/base/cpu.c: use __cpu_*_mask directly Message-ID: <20151004190932.GA9649@kroah.com> References: <1443205347-13634-1-git-send-email-linux@rasmusvillemoes.dk> <1443205347-13634-4-git-send-email-linux@rasmusvillemoes.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1443205347-13634-4-git-send-email-linux@rasmusvillemoes.dk> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 25, 2015 at 08:22:25PM +0200, Rasmus Villemoes wrote: > The only user of the lvalue-ness of the cpu_*_mask variables is in > drivers/base/cpu.c, and that is mostly a work-around for the fact that > not even const variables can be used in static initialization. Now > that the underlying struct cpumasks are exposed we can take their > address. > > Signed-off-by: Rasmus Villemoes Acked-by: Greg Kroah-Hartman