File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
drivers/infiniband/sw/rxe Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,15 +79,15 @@ int rxe_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
7979
8080 /* Don't allow a mmap larger than the object. */
8181 if (size > ip -> info .size ) {
82- pr_err ( "mmap region is larger than the object!\n" );
82+ rxe_dbg ( rxe , "mmap region is larger than the object!\n" );
8383 spin_unlock_bh (& rxe -> pending_lock );
8484 ret = - EINVAL ;
8585 goto done ;
8686 }
8787
8888 goto found_it ;
8989 }
90- pr_warn ( "unable to find pending mmap info\n" );
90+ rxe_dbg ( rxe , "unable to find pending mmap info\n" );
9191 spin_unlock_bh (& rxe -> pending_lock );
9292 ret = - EINVAL ;
9393 goto done ;
@@ -98,7 +98,7 @@ int rxe_mmap(struct ib_ucontext *context, struct vm_area_struct *vma)
9898
9999 ret = remap_vmalloc_range (vma , ip -> obj , 0 );
100100 if (ret ) {
101- pr_err ( "err %d from remap_vmalloc_range\n" , ret );
101+ rxe_dbg ( rxe , "err %d from remap_vmalloc_range\n" , ret );
102102 goto done ;
103103 }
104104
You can’t perform that action at this time.
0 commit comments