From 37228bf6d1e8bdcd17dc9567de952d69825496ad Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 1 Jun 2011 17:26:09 +0000 Subject: [PATCH] ib_srpt: removed thread start/stop messages. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@3506 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- srpt/src/ib_srpt.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/srpt/src/ib_srpt.c b/srpt/src/ib_srpt.c index 7872e7cf8..42bf0741c 100644 --- a/srpt/src/ib_srpt.c +++ b/srpt/src/ib_srpt.c @@ -1894,16 +1894,12 @@ static int srpt_compl_thread(void *arg) ch = arg; BUG_ON(!ch); - PRINT_INFO("Session %s: kernel thread %s (PID %d) started", - ch->sess_name, ch->thread->comm, current->pid); while (!kthread_should_stop()) { wait_event_interruptible(ch->wait_queue, (srpt_process_completion(ch->cq, ch, SCST_CONTEXT_THREAD), kthread_should_stop())); } - PRINT_INFO("Session %s: kernel thread %s (PID %d) stopped", - ch->sess_name, ch->thread->comm, current->pid); return 0; }