svn commit: r278890 - head/sys/ofed/drivers/infiniband/core
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Feb 17 08:57:38 UTC 2015
Author: hselasky
Date: Tue Feb 17 08:57:36 2015
New Revision: 278890
URL: https://svnweb.freebsd.org/changeset/base/278890
Log:
Fix compilation when DEBUG is defined.
Sponsored by: Mellanox Technologies
MFC after: 1 month
Modified:
head/sys/ofed/drivers/infiniband/core/fmr_pool.c
Modified: head/sys/ofed/drivers/infiniband/core/fmr_pool.c
==============================================================================
--- head/sys/ofed/drivers/infiniband/core/fmr_pool.c Tue Feb 17 08:54:03 2015 (r278889)
+++ head/sys/ofed/drivers/infiniband/core/fmr_pool.c Tue Feb 17 08:57:36 2015 (r278890)
@@ -151,7 +151,7 @@ static void ib_fmr_batch_release(struct
#ifdef DEBUG
if (fmr->ref_count !=0) {
- printk(KERN_WARNING PFX "Unmapping FMR 0x%08x with ref count %d\n",
+ printk(KERN_WARNING PFX "Unmapping FMR %p with ref count %d\n",
fmr, fmr->ref_count);
}
#endif
More information about the svn-src-all
mailing list