From patchwork Fri Feb 28 19:15:25 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Trager X-Patchwork-Id: 13997016 Received: from trager.us (trager.us [52.5.81.116]) (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 141EA230BF2; Fri, 28 Feb 2025 19:57:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=52.5.81.116 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740772651; cv=none; b=YH8NP9p2QyBZ81CVQQ6vmXhWoPliYJ6q2XzZbqa5mP0A7NdLT0igSSofJdwR1o2vqFm4JfYCh9K5cmEKetY61awm+HJfad3F0aDOkhFG9UpLy+vlflVKYI5ZkNtxNYP7fqTXC0BASdYBlICGNJItRjXFvW9od1lYeQIw5TH3dzw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740772651; c=relaxed/simple; bh=b3V4HtJ0cfwYR66QRbWlu88R6oCl7vJge5HD17H8l3w=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=GkB/9B8UYNgr+h32XiFQFP2EsagSrk0VBs36I+VCqvrrJvDuzUat/jwCiThc9kmSK+y5hiSZ2AEotdHFkskvfYBYcJG9/It43+YkJHxLjeRBWnHpoWrosXx00J197a2G94Xo9k8+yQAGIwvtWYxUie8ODYNrjt20/hAMWYPPUSY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=trager.us; spf=pass smtp.mailfrom=trager.us; arc=none smtp.client-ip=52.5.81.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=trager.us Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=trager.us Received: from c-76-104-255-50.hsd1.wa.comcast.net ([76.104.255.50] helo=localhost) by trager.us with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92.3) (envelope-from ) id 1to5u7-0001Pa-HK; Fri, 28 Feb 2025 19:20:11 +0000 From: Lee Trager To: Alexander Duyck , Jakub Kicinski , kernel-team@meta.com, Andrew Lunn , "David S. Miller" , Eric Dumazet , Paolo Abeni , Lee Trager , Sanman Pradhan , Michal Swiatkowski , Mohsin Bashir , Su Hui Cc: Kalesh AP , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH net-next 0/3] eth: fbnic: Cleanup macros and string function Date: Fri, 28 Feb 2025 11:15:25 -0800 Message-ID: <20250228191935.3953712-1-lee@trager.us> X-Mailer: git-send-email 2.43.5 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org We have received some feedback that the macros we use for reading FW mailbox attributes are too large in scope and confusing to understanding. Additionally the string function did not provide errors allowing it to silently succeed. This patch set fixes theses issues. Lee Trager (3): eth: fbnic: Prepend TSENE FW fields with FBNIC_FW eth: fbnic: Update fbnic_tlv_attr_get_string() to work like nla_strscpy() eth: fbnic: Replace firmware field macros drivers/net/ethernet/meta/fbnic/fbnic_fw.c | 109 ++++++++++---------- drivers/net/ethernet/meta/fbnic/fbnic_fw.h | 8 +- drivers/net/ethernet/meta/fbnic/fbnic_tlv.c | 55 +++++++--- drivers/net/ethernet/meta/fbnic/fbnic_tlv.h | 39 ++----- 4 files changed, 110 insertions(+), 101 deletions(-) --- 2.43.5