Whamcloud - gitweb
LU-6947 ptlrpc: Remove stray comment in ptlrpc_start_pinger 38/15838/2
authorOleg Drokin <oleg.drokin@intel.com>
Tue, 4 Aug 2015 01:05:17 +0000 (21:05 -0400)
committerOleg Drokin <oleg.drokin@intel.com>
Wed, 26 Aug 2015 21:43:35 +0000 (21:43 +0000)
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 <oleg.drokin@intel.com>
Reviewed-on: http://review.whamcloud.com/15838
Tested-by: Jenkins
Tested-by: Maloo <hpdd-maloo@intel.com>
Reviewed-by: James Simmons <uja.ornl@yahoo.com>
Reviewed-by: frank zago <fzago@cray.com>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
lustre/ptlrpc/pinger.c

index bf3cc90..bdebf41 100644 (file)
@@ -336,8 +336,6 @@ int ptlrpc_start_pinger(void)
 
        strcpy(pinger_thread.t_name, "ll_ping");
 
 
        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)) {
        task = kthread_run(ptlrpc_pinger_main, &pinger_thread,
                           pinger_thread.t_name);
        if (IS_ERR(task)) {