From 58867933e9619f3727deb25851384ad24e5c5a62 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Mon, 26 Aug 2019 19:34:19 -0500 Subject: [PATCH] rx: Export rx_GetCallStatus Commit 59d3a8b8 (vos: restore status information to 'vos status') added the function rx_GetCallStatus to Rx, and used it in the volserver, but didn't add the function to our .sym and .exp files, causing a linker error on at least WINNT. Add the function to the relevant .sym/.exp files, so we can link on all platforms. Change-Id: I859ac6d04d8a21eb6f8b4ba3f3720ca318e91334 Reviewed-on: https://gerrit.openafs.org/13820 Tested-by: Andrew Deason Reviewed-by: Benjamin Kaduk (cherry picked from commit c3716b3d7e32f47b084657e163b029e9f1756fa4) Reviewed-on: https://gerrit.openafs.org/13851 Reviewed-by: Andrew Deason Reviewed-by: Michael Meffie Reviewed-by: Marcio Brito Barbosa Reviewed-by: Stephan Wiesand Tested-by: Stephan Wiesand --- src/libafsrpc/afsrpc.def | 1 + src/libafsrpc/afsrpc.exp | 1 + src/libafsrpc/libafsrpc.la.sym | 1 + src/rx/liboafs_rx.la.sym | 1 + 4 files changed, 4 insertions(+) diff --git a/src/libafsrpc/afsrpc.def b/src/libafsrpc/afsrpc.def index 310f8d418..631fe013d 100755 --- a/src/libafsrpc/afsrpc.def +++ b/src/libafsrpc/afsrpc.def @@ -347,6 +347,7 @@ EXPORTS ; opr_AssertionFailed @352 ; xdr_Capabilities @353 xdr_rpcStats @354 + rx_GetCallStatus @355 ; for performance testing rx_TSFPQGlobSize @2001 DATA diff --git a/src/libafsrpc/afsrpc.exp b/src/libafsrpc/afsrpc.exp index 0355bc9b1..8df1eef8d 100755 --- a/src/libafsrpc/afsrpc.exp +++ b/src/libafsrpc/afsrpc.exp @@ -21,6 +21,7 @@ rx_EventPost rx_Finalize rx_GetCachedConnection rx_GetCall +rx_GetCallStatus rx_GetIFInfo rx_Init rx_NewCall diff --git a/src/libafsrpc/libafsrpc.la.sym b/src/libafsrpc/libafsrpc.la.sym index fbd7af93d..78e1fe3fe 100644 --- a/src/libafsrpc/libafsrpc.la.sym +++ b/src/libafsrpc/libafsrpc.la.sym @@ -53,6 +53,7 @@ rx_FreeStatistics rx_GetCachedConnection rx_GetCall rx_GetCallAbortCode +rx_GetCallStatus rx_GetConnectionEpoch rx_GetConnectionId rx_GetIFInfo diff --git a/src/rx/liboafs_rx.la.sym b/src/rx/liboafs_rx.la.sym index 8445fbcb1..90c2263b8 100644 --- a/src/rx/liboafs_rx.la.sym +++ b/src/rx/liboafs_rx.la.sym @@ -33,6 +33,7 @@ rx_FlushWrite rx_FreeStatistics rx_GetCachedConnection rx_GetCallAbortCode +rx_GetCallStatus rx_GetConnection rx_GetConnectionEpoch rx_GetConnectionId -- 2.39.5