File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
drivers/infiniband/sw/rxe Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ static void do_task(struct tasklet_struct *t)
2929 int cont ;
3030 int ret ;
3131 struct rxe_task * task = from_tasklet (task , t , tasklet );
32+ struct rxe_qp * qp = (struct rxe_qp * )task -> arg ;
3233 unsigned int iterations = RXE_MAX_ITERATIONS ;
3334
3435 spin_lock_bh (& task -> lock );
@@ -47,7 +48,7 @@ static void do_task(struct tasklet_struct *t)
4748
4849 default :
4950 spin_unlock_bh (& task -> lock );
50- pr_warn ( "%s failed with bad state %d\n", __func__ , task -> state );
51+ rxe_dbg_qp ( qp , " failed with bad state %d\n" , task -> state );
5152 return ;
5253 }
5354
@@ -81,8 +82,8 @@ static void do_task(struct tasklet_struct *t)
8182 break ;
8283
8384 default :
84- pr_warn ( "%s failed with bad state %d\n", __func__ ,
85- task -> state );
85+ rxe_dbg_qp ( qp , " failed with bad state %d\n" ,
86+ task -> state );
8687 }
8788 spin_unlock_bh (& task -> lock );
8889 } while (cont );
You can’t perform that action at this time.
0 commit comments