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 31A252FF651 for ; Mon, 22 Dec 2025 14:44:31 +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=1766414672; cv=none; b=bCzS7wGJEYQL29yUPdzfxdU5DuCnk+ioBi3tHNH16xklS1Yifx8VWBrQTHOZvH0VhFotItuTOPwQvdpF7MfdPQiQoiu8UNeImuLOdOEEaDa0AiM1V9r5viZFbDR9Tyb49IyFQwuaD/Iald6ZrCYTO7k2ZBIHjgMqyFeIyj0PYyU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766414672; c=relaxed/simple; bh=0MVWiJ41KizFxo3jDRPj20ajRcuhcsoOtLFp3mnPEtU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=D5x5WbJ1JgTmAVop6aNntZVzY3KE+OE7LRP01/RWRadQ+ZqZkgVAQUzkIYv/oGT+Pzz8xjKqr+xf1Qfy/pFtNL4b056tTc36TUW4N8jgV3iw0n8wSMfkY95FAvhvTTyDJfwk2armbrIMyos31xI6iBatHX9aNhwsN/5HinSJuHA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=nOLaoWib; 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="nOLaoWib" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C36FC4CEF1; Mon, 22 Dec 2025 14:44:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1766414671; bh=0MVWiJ41KizFxo3jDRPj20ajRcuhcsoOtLFp3mnPEtU=; h=From:To:Cc:Subject:Date:From; b=nOLaoWibonZCD7nuLibvFMZxYVQNTZmG737io0HBSGpTOM69cFWQxJEkW+uD9yRVZ vjfW1GrBe7/BXRDt6Eg1YUU/bNv/Xu8+IQ1AP/ro5H9rgSwpluzOXGoRdaX56wWaBA n6YvaVwcLzLa+8bXw7GnLoL9LHQokf2lQn0noNz+AtWS02en2G0ekxD018zS8qH1Nt DOsg+ZLgM50nnj1sAqcTHvWvXnJkyuQl+OWxuESiOvU6ABaisTYvREgEebzQcGSrsI 1q0T6IfXuOCqpshZE7LFUB1WnzYJjVujKf8Vq0FP3TJp25Zc9WpDw0+DP5l++0KvJY UVkn+WOkx8NOA== From: Chuck Lever To: NeilBrown , Jeff Layton , Olga Kornievskaia , Dai Ngo , Tom Talpey Cc: , Chuck Lever Subject: [PATCH] xdrgen: Remove inclusion of nlm4.h header Date: Mon, 22 Dec 2025 09:44:29 -0500 Message-ID: <20251222144429.1331137-1-cel@kernel.org> X-Mailer: git-send-email 2.52.0 Precedence: bulk X-Mailing-List: linux-nfs@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever The client-side source code template mistakenly includes the nlm4.h header file, which is specific to the NLM protocol and should not be present in the generic template that generates client stubs for all XDR-based protocols. Fixes: 903a7d37d9ea ("xdrgen: Update the files included in client-side source code") Signed-off-by: Chuck Lever --- tools/net/sunrpc/xdrgen/templates/C/source_top/client.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/net/sunrpc/xdrgen/templates/C/source_top/client.j2 b/tools/net/sunrpc/xdrgen/templates/C/source_top/client.j2 index c5518c519854..df3598c38b2c 100644 --- a/tools/net/sunrpc/xdrgen/templates/C/source_top/client.j2 +++ b/tools/net/sunrpc/xdrgen/templates/C/source_top/client.j2 @@ -8,6 +8,5 @@ #include #include #include -#include #include -- 2.52.0