From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 307ECC43334 for ; Tue, 5 Jul 2022 07:39:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229794AbiGEHjd (ORCPT ); Tue, 5 Jul 2022 03:39:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37294 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230163AbiGEHjd (ORCPT ); Tue, 5 Jul 2022 03:39:33 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 78BC413D1C for ; Tue, 5 Jul 2022 00:39:32 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 310F5B8163D for ; Tue, 5 Jul 2022 07:39:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BB707C341C7; Tue, 5 Jul 2022 07:39:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1657006769; bh=uf0aJbbPnOb8MSihvhlDS8q94NoOrvVdeXVSAInXGdU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=i3WD5VR5Mg4ad5lSMfHVk0xXCQc/5BbP9kir4qchVdyhtSRMYMoXO9HIbjmj7P0yg alUo2LCcJAiivpg4IuM8k1DtqgK4DqKEC2lNd0F8Ahiv0dHF9jPVaunq8/wgsDqNnh xOjHRDDOA0yUDsUkukCT8K5/Jy+dByZRLK7F7+rIoA7yDyctq8mRdadXR1vioyZ2U3 WEHf2sUr+1J3rJAOsfBLvs6WShOVUt48hMDgzA1c1B26M6PMyLekfqOJogAS+c7e/t lsXn+Egnb7LBBTGNPvVVte8+F7knXCD9D0z8hLCN3e3nDPgUMDvCXSzD/BT8wg6jaS /TfmVKRxvhpaA== Date: Tue, 5 Jul 2022 00:39:28 -0700 From: Saeed Mahameed To: Paolo Abeni Cc: netdev@vger.kernel.org, Saeed Mahameed , Leon Romanovsky , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Jianbo Liu , Roi Dayan , Ariel Levkovich Subject: Re: [PATCH net-next] net/mlx5: fix 32bit build Message-ID: <20220705073928.22icbhqtc4gvak6j@sx1> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On 05 Jul 09:17, Paolo Abeni wrote: >We can't use the division operator on 64 bits integers, that breaks >32 bits build. Instead use the relevant helper. > >Fixes: 6ddac26cf763 ("net/mlx5e: Add support to modify hardware flow meter parameters") >Signed-off-by: Paolo Abeni Acked-by: Saeed Mahameed sorry for the mess. I sent v2 too soon, forgot to squash the 2nd fix to it.