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 X-Spam-Level: X-Spam-Status: No, score=-1.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 76361C2D0DB for ; Wed, 29 Jan 2020 16:07:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 483382071E for ; Wed, 29 Jan 2020 16:07:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580314067; bh=9yBPj4UNwYUOR69iyQMVsIStEM9u9/xr9i6+RNqmRhQ=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=A8ulifn+B38C7wep8tCQtkodpwWqhm6PPPuJbY+82Yplaec5zxZyjln2f07/X1oFR 8nhCH7IInDwf7WM+xyeISwxtOZ6L/9uFKGOgTcojZ4BXN1g28YZAvjQgIFaDFr7WCy h3zEGHqHQWc7RxhnR4LLb402NG/9Y1veKK4/b/2A= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726927AbgA2QHq (ORCPT ); Wed, 29 Jan 2020 11:07:46 -0500 Received: from mail.kernel.org ([198.145.29.99]:34134 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726766AbgA2QHq (ORCPT ); Wed, 29 Jan 2020 11:07:46 -0500 Received: from cakuba (c-73-93-4-247.hsd1.ca.comcast.net [73.93.4.247]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id EE8A92070E; Wed, 29 Jan 2020 16:07:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580314065; bh=9yBPj4UNwYUOR69iyQMVsIStEM9u9/xr9i6+RNqmRhQ=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=fl5XgjQ+SnLlbl0rM+bpIjYDd20EP14WvCAR+KQIDika0zrOrjd0rKtbQsfXjy8nD qFXiG9PsccCnfn2XJcXD7KJibmVFqcBvdY36zRsWEEYMI7R1qK0rm30iB/pobWCUBD mvk/RGPGsJIPX1SBaxbS/GtRi//lOu0CZr1agG9g= Date: Wed, 29 Jan 2020 08:07:44 -0800 From: Jakub Kicinski To: Sameeh Jubran Cc: , , Arthur Kiyanovski , , , , , , , , , , , , Subject: Re: [PATCH V1 net 07/11] net: ena: fix incorrectly saving queue numbers when setting RSS indirection table Message-ID: <20200129080744.52be661e@cakuba> In-Reply-To: <20200129140422.20166-8-sameehj@amazon.com> References: <20200129140422.20166-1-sameehj@amazon.com> <20200129140422.20166-8-sameehj@amazon.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Wed, 29 Jan 2020 14:04:18 +0000, Sameeh Jubran wrote: > Also move the set code to a standalone function for code clarity. This is unrelated, and should not be a part of a fix. Fixes are supposed to be small, please never do code refactoring in them.