From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ursula Braun Subject: Re: [PATCH] s390, net: convert into new cpumask api Date: Fri, 29 Apr 2011 12:01:06 +0200 Message-ID: <1304071266.3171.3.camel@braunu-laptop> References: <20110429000104.3D5D.A69D9226@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: LKML , Martin Schwidefsky , Heiko Carstens , Ursula Braun , "David S. Miller" , linux390@de.ibm.com, linux-s390@vger.kernel.org, netdev@vger.kernel.org To: KOSAKI Motohiro Return-path: In-Reply-To: <20110429000104.3D5D.A69D9226@jp.fujitsu.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org 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!