From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9EA9A2F28; Thu, 20 Mar 2025 20:03:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742501035; cv=none; b=DqkJBDfXkGAL0vAoRJxkgObeW84yFhPM9D/pH+5FwqAbqKvyY44srUdX/M+3MKJNTM+ROTAUfhYxOL3EZLS9Zq/WmKNG4hHMXt7xIHm22FCR/o8OBCpV+TkauurIGtVNE/+bYWyRKFTMxg9e46PyypOP5xkrMzrL2FPy8afG6QA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742501035; c=relaxed/simple; bh=qJzbJVnFvHEWNUIi6aXXugB0o+Rv7JzoBQ8qm2JtV3M=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=p2ApyKPRzKLoBXubVvPBQ73xSldu+dFfCsRssJNgDl5MuGTTg53aGvFZq2yCMQ7MzRxoJ62v1w1eIOhwy+LcaF94sawab907eJfu8VIUkGzPTnUb5/ZcyhqweEq0iP7QkveYsKOUdRBAWYny5SdV9DTi0mk1l0qxV5K9/9lZXRY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ZKOC7WUj; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ZKOC7WUj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 22D9CC4CEDD; Thu, 20 Mar 2025 20:03:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1742501035; bh=qJzbJVnFvHEWNUIi6aXXugB0o+Rv7JzoBQ8qm2JtV3M=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZKOC7WUjV/iX7bG1sBsD0MKgg6iKsdKIKXl7NereOTgpQ3tXLXg8sLFJ38rKIY6bv 5erfZGPK+4a31D5Q58IajeQKZuEMoVVylUnik8Ydxiy9qiuOd2J5FtSk+s3NEwIfTc HI/Ta8N1ahWOXiM3K9EOWrzfeVgqHqaLyOqPmdJj21207o3nT0EVfWj5Fuv1RpiGjd NEpSbX4nTtlzpaA6RO8V/4SpVySEWSRvn2QNEmQoV7ewzQ2sghDqfK7EOHE56AjMq/ V8q0fzJS9pLMg6XhDGgrenpAMMCZvubSpuxy0THAn72KsXnpmnsZsrrk5V91nceOsr FuvLZYEouZHZA== Date: Thu, 20 Mar 2025 20:03:50 +0000 From: Simon Horman To: Gal Pressman Cc: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Andrew Lunn , netdev@vger.kernel.org, Shuah Khan , linux-kselftest@vger.kernel.org, Nimrod Oren Subject: Re: [PATCH net-next] selftests: drv-net: rss_ctx: Don't assume indirection table is present Message-ID: <20250320200350.GK892515@horms.kernel.org> References: <20250318112426.386651-1-gal@nvidia.com> Precedence: bulk X-Mailing-List: linux-kselftest@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250318112426.386651-1-gal@nvidia.com> On Tue, Mar 18, 2025 at 01:24:26PM +0200, Gal Pressman wrote: > The test_rss_context_dump() test assumes the indirection table is always > supported, which is not true for all drivers, e.g., virtio_net when > VIRTIO_NET_F_RSS is disabled. > > Skip the check if 'indir' is not present. > > Reviewed-by: Nimrod Oren > Signed-off-by: Gal Pressman Reviewed-by: Simon Horman