From 1f4d68d334c85a8106f5939351991b80449e5713 Mon Sep 17 00:00:00 2001 From: Oleg Drokin Date: Mon, 3 Aug 2015 21:05:17 -0400 Subject: [PATCH] LU-6947 ptlrpc: Remove stray comment in ptlrpc_start_pinger The comment references cfs_daemonize times when daemonize took process clone flags. There's no such thing anymore, so let's drop the comment to not to cause any additional confusion. Change-Id: I9398f97f604cb70486f6a9b3f9d80360a66c1555 Signed-off-by: Oleg Drokin Reviewed-on: http://review.whamcloud.com/15838 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: James Simmons Reviewed-by: frank zago Reviewed-by: Andreas Dilger --- lustre/ptlrpc/pinger.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lustre/ptlrpc/pinger.c b/lustre/ptlrpc/pinger.c index bf3cc90..bdebf41 100644 --- a/lustre/ptlrpc/pinger.c +++ b/lustre/ptlrpc/pinger.c @@ -336,8 +336,6 @@ int ptlrpc_start_pinger(void) strcpy(pinger_thread.t_name, "ll_ping"); - /* CLONE_VM and CLONE_FILES just avoid a needless copy, because we - * just drop the VM and FILES in kthread_run() right away. */ task = kthread_run(ptlrpc_pinger_main, &pinger_thread, pinger_thread.t_name); if (IS_ERR(task)) { -- 1.8.3.1