diff mbox series

[4/4] xdrgen: Remove program_stat_to_errno() call sites

Message ID 172961905535.5686.5712413032264720344.stgit@oracle-102.chuck.lever.oracle.com.nfsv4.dev (mailing list archive)
State New
Headers show
Series More xdrgen fixes | expand

Commit Message

Chuck Lever Oct. 22, 2024, 5:44 p.m. UTC
From: Chuck Lever <chuck.lever@oracle.com>

Refactor: Translating an on-the-wire value to a local host errno is
architecturally a job for the proc function, not the XDR decoder.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
 .../xdrgen/templates/C/program/decoder/result.j2   |    2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/tools/net/sunrpc/xdrgen/templates/C/program/decoder/result.j2 b/tools/net/sunrpc/xdrgen/templates/C/program/decoder/result.j2
index 4ce4cc9fab79..aa9940e322db 100644
--- a/tools/net/sunrpc/xdrgen/templates/C/program/decoder/result.j2
+++ b/tools/net/sunrpc/xdrgen/templates/C/program/decoder/result.j2
@@ -13,8 +13,6 @@  static int {{ program }}_xdr_dec_{{ result }}(struct rpc_rqst *req,
 
 	if (!xdrgen_decode_{{ result }}(xdr, result))
 		return -EIO;
-	if (result->stat)
-		return {{ program }}_stat_to_errno(result->stat);
 {% endif %}
 	return 0;
 }