summaryrefslogtreecommitdiff
path: root/tools/net
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2024-10-22 13:44:15 -0400
committerChuck Lever <chuck.lever@oracle.com>2024-11-18 20:23:07 -0500
commit573954a996c0056b25eda4638edfee8c010e27f7 (patch)
tree49a51cbee2348555689ac8b5ec8155b59c3e6e13 /tools/net
parent903a7d37d9ea03cfed21040467d3d345d1e6fc76 (diff)
xdrgen: Remove program_stat_to_errno() call sites
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>
Diffstat (limited to 'tools/net')
-rw-r--r--tools/net/sunrpc/xdrgen/templates/C/program/decoder/result.j22
1 files changed, 0 insertions, 2 deletions
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;
}