From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Subject: Re: [PATCH] s390, net: convert into new cpumask api From: Ursula Braun In-Reply-To: <20110429000104.3D5D.A69D9226@jp.fujitsu.com> References: <20110429000104.3D5D.A69D9226@jp.fujitsu.com> Content-Type: text/plain; charset="UTF-8" Date: Fri, 29 Apr 2011 12:01:06 +0200 Message-ID: <1304071266.3171.3.camel@braunu-laptop> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-Archive: List-Post: To: KOSAKI Motohiro Cc: LKML , Martin Schwidefsky , Heiko Carstens , Ursula Braun , "David S. Miller" , linux390@de.ibm.com, linux-s390@vger.kernel.org, netdev@vger.kernel.org List-ID: On Thu, 2011-04-28 at 23:59 +0900, KOSAKI Motohiro wrote: > Adapt new api. > > Signed-off-by: KOSAKI Motohiro > Cc: Martin Schwidefsky > Cc: Heiko Carstens > Cc: Ursula Braun > Cc: "David S. Miller" > Cc: linux390@de.ibm.com > Cc: linux-s390@vger.kernel.org > Cc: netdev@vger.kernel.org > --- > net/iucv/iucv.c | 70 +++++++++++++++++++++++++++--------------------------- > 1 files changed, 35 insertions(+), 35 deletions(-) > > diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c > index 8f156bd..79f2caf 100644 > --- a/net/iucv/iucv.c > +++ b/net/iucv/iucv.c > @@ -128,8 +128,8 @@ struct iucv_irq_list { > }; > > static struct iucv_irq_data *iucv_irq_data[NR_CPUS]; > -static cpumask_t iucv_buffer_cpumask = CPU_MASK_NONE; > -static cpumask_t iucv_irq_cpumask = CPU_MASK_NONE; > +static cpumask_t iucv_buffer_cpumask = { CPU_BITS_NONE }; > +static cpumask_t iucv_irq_cpumask = { CPU_BITS_NONE }; ... Applied and merged to our tree. Thanks!