summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/dst.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/net/dst.h b/include/net/dst.h
index 5cdc6c2b4326..33fd86690d18 100644
--- a/include/net/dst.h
+++ b/include/net/dst.h
@@ -149,7 +149,9 @@ void dst_release(struct dst_entry * dst)
{
if (dst) {
if (atomic_read(&dst->__refcnt) < 1)
- printk(dst_underflow_bug_msg, dst, current_text_addr());
+ printk(dst_underflow_bug_msg,
+ atomic_read(&dst->__refcnt),
+ dst, current_text_addr());
atomic_dec(&dst->__refcnt);
}
}