From: Oleg Drokin Date: Tue, 4 Aug 2015 01:05:17 +0000 (-0400) Subject: LU-6947 ptlrpc: Remove stray comment in ptlrpc_start_pinger X-Git-Tag: 2.7.59~19 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=1f4d68d334c85a8106f5939351991b80449e5713 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 --- 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)) {