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 4D4A72D631 for ; Mon, 13 Nov 2023 23:01:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="max+3V3A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9DB06C433C7; Mon, 13 Nov 2023 23:01:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1699916474; bh=1EJ/0EidyMOWRsIQkPbycaMLxtwWakRXX5p7R2+NPnk=; h=From:To:Cc:Subject:Date:From; b=max+3V3Ad3EH/iJNHIF64nTjxqeKq3yA5HJ0F8ob9d55JEXRV2U7fQ3ayRb8qwUJH jWVQDOHDJdDfvS5Bk9roL97mS4j5ioiJpRRYFNaQ1df/mq4SVCBfiiqaSfSya1yvzk RcX/Zp4SUfhHC5HxYkHEOhF0aiEBMfxAGAj1Q2jC7503w6khbXGRLVSfp7U5i6e2VJ xvZUvw/i5A/+8xw9001gIoDX+d2krPNaNKAtZVXKJtYSos9GDcRkd9tQK3QC/hD8Nk MjJvpj8cHMAHtW7vqC+O6GmrBjyMLP3VuyzFmIxfWKDIiL0M8cjjCE4nFrP1XhEcdG LmSBcgmaQSudA== From: Saeed Mahameed To: "David S. Miller" , Jakub Kicinski , Paolo Abeni , Eric Dumazet Cc: Saeed Mahameed , netdev@vger.kernel.org, Tariq Toukan Subject: [pull request][net-next 00/14] mlx5 updates 2023-11-13 Date: Mon, 13 Nov 2023 15:00:37 -0800 Message-ID: <20231113230051.58229-1-saeed@kernel.org> X-Mailer: git-send-email 2.41.0 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Saeed Mahameed This series adds misc updates to mlx5 driver. For more information please see tag log below. Please pull and let me know if there is any problem. Thanks, Saeed. The following changes since commit 89cdf9d556016a54ff6ddd62324aa5ec790c05cc: Merge tag 'net-6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net (2023-11-09 17:09:35 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2023-11-13 for you to fetch changes up to 5e6d046ed27608f66dda31c2937dc923f15dddaf: net/mlx5e: Remove early assignment to netdev->features (2023-11-13 14:58:57 -0800) ---------------------------------------------------------------- mlx5-updates-2023-11-13 1) Cleanup patches, leftovers from previous cycle 2) Allow sync reset flow when BF MGT interface device is present 3) Trivial ptp refactorings and improvements 4) Add local loopback counter to vport rep stats ---------------------------------------------------------------- Amir Tzin (1): net/mlx5e: Some cleanup in mlx5e_tc_stats_matchall() Gal Pressman (1): net/mlx5e: Access array with enum values instead of magic numbers Justin Stitt (1): net/mlx5: simplify mlx5_set_driver_version string assignments Kees Cook (2): net/mlx5: Annotate struct mlx5_fc_bulk with __counted_by net/mlx5: Annotate struct mlx5_flow_handle with __counted_by Moshe Shemesh (2): net/mlx5: print change on SW reset semaphore returns busy net/mlx5: Allow sync reset flow when BF MGT interface device is present Or Har-Toov (1): net/mlx5e: Add local loopback counter to vport rep stats Rahul Rameshbabu (5): net/mlx5e: Introduce lost_cqe statistic counter for PTP Tx port timestamping CQ net/mlx5: Refactor real time clock operation checks for PHC net/mlx5: Initialize clock->ptp_info inside mlx5_init_timer_clock net/mlx5: Convert scaled ppm values outside the s32 range for PHC frequency adjustments net/mlx5: Query maximum frequency adjustment of the PTP hardware clock Tariq Toukan (1): net/mlx5e: Remove early assignment to netdev->features .../ethernet/mellanox/mlx5/counters.rst | 6 ++ .../net/ethernet/mellanox/mlx5/core/diag/crdump.c | 5 +- drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c | 1 + .../net/ethernet/mellanox/mlx5/core/en/rep/tc.c | 14 ++++ .../ethernet/mellanox/mlx5/core/en/tc/act/pedit.c | 3 +- drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 1 - drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 26 +++++++- drivers/net/ethernet/mellanox/mlx5/core/en_stats.c | 1 + drivers/net/ethernet/mellanox/mlx5/core/en_stats.h | 3 + drivers/net/ethernet/mellanox/mlx5/core/en_tc.c | 24 ++----- drivers/net/ethernet/mellanox/mlx5/core/en_tc.h | 2 - drivers/net/ethernet/mellanox/mlx5/core/fs_core.h | 2 +- .../net/ethernet/mellanox/mlx5/core/fs_counters.c | 2 +- drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c | 32 +++++++-- .../net/ethernet/mellanox/mlx5/core/lib/clock.c | 78 ++++++++++++++-------- drivers/net/ethernet/mellanox/mlx5/core/main.c | 20 +----- include/linux/mlx5/mlx5_ifc.h | 5 +- 17 files changed, 148 insertions(+), 77 deletions(-)