The commit is pushed to "branch-rh7-3.10.0-514.10.2.vz7.29.x-ovz" and will 
appear at https://src.openvz.org/scm/ovz/vzkernel.git
after rh7-3.10.0-514.10.2.vz7.29.6
------>
commit 3e48f57a452b597b23039c3278e67788ac48f8d4
Author: Stanislav Kinsburskiy <skinsbur...@virtuozzo.com>
Date:   Fri Mar 24 17:17:02 2017 +0400

    ve/sunrpc: fix ve is dying check on -ENETUNREACH error upon connect
    
    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 <skinsbur...@virtuozzo.com>
    Reviewed-by: Dmitry Safonov <dsafo...@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 58fb139..1dd1598 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);
_______________________________________________
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel

Reply via email to