[Devel] [PATCH] sunrpc: fix ve is dying check on -ENETUNREACH error upon connect
Stanislav Kinsburskiy
skinsbursky at virtuozzo.com
Wed Mar 22 03:28:54 PDT 2017
This operations can be asynchonious. So, current VE is not the right one.
VE from transport network has to be taken instead.
Fixes commit 4ad21d242066afcb4f55000c308322c3bad98a2b
https://jira.sw.ru/browse/PSBM-62616
Signed-off-by: Stanislav Kinsburskiy <skinsbursky at virtuozzo.com>
---
net/sunrpc/xprt.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c
index 9277800..ac8bf61 100644
--- a/net/sunrpc/xprt.c
+++ b/net/sunrpc/xprt.c
@@ -778,7 +778,9 @@ static void xprt_connect_status(struct rpc_task *task)
switch (task->tk_status) {
case -ENETUNREACH:
- if (current->task_ve->ve_netns == NULL) {
+ dprintk("RPC: ve_name(xprt->xprt_net->owner_ve): %s\n",
+ ve_name(xprt->xprt_net->owner_ve));
+ if (xprt->xprt_net->owner_ve->ve_netns == NULL) {
dprintk("RPC: %5u xprt_connect_status: error %d connecting to "
"server %s\n", task->tk_pid, -task->tk_status,
xprt->servername);
More information about the Devel
mailing list