lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20230612115334.8262-1-przemyslaw.kitszel@intel.com>
Date: Mon, 12 Jun 2023 07:53:34 -0400
From: Przemek Kitszel <przemyslaw.kitszel@...el.com>
To: intel-wired-lan@...ts.osuosl.org
Cc: Tony Nguyen <anthony.l.nguyen@...el.com>,
	Piotr Gardocki <piotrx.gardocki@...el.com>,
	netdev@...r.kernel.org,
	Przemek Kitszel <przemyslaw.kitszel@...el.com>
Subject: [PATCH iwl-next] ice: fix VSI LUT size flag

Fix VSI LUT size flag to be 0.

Fixes: 99faff6dea0a ("ice: clean up __ice_aq_get_set_rss_lut()")
Reported-by: Piotr Gardocki <piotrx.gardocki@...el.com>

---
Tony, please meld this commit into my recent refactor (see Fixes tag).
I have overlooked it while applying review changes, sorry :/
---
 drivers/net/ethernet/intel/ice/ice_adminq_cmd.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h
index 6ea0d4c017f0..acea49007f2a 100644
--- a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h
+++ b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h
@@ -1819,7 +1819,7 @@ enum ice_lut_size {
  * LUT size and LUT type, last of which does not need neither shift nor mask.
  */
 enum ice_aqc_lut_flags {
-	ICE_AQC_LUT_SIZE_SMALL = BIT(1), /* size = 64 or 128 */
+	ICE_AQC_LUT_SIZE_SMALL = 0, /* size = 64 or 128 */
 	ICE_AQC_LUT_SIZE_512 = BIT(2),
 	ICE_AQC_LUT_SIZE_2K = BIT(3),
 
-- 
2.40.1


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ