summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHideaki Yoshifuji <yoshfuji@linux-ipv6.org>2004-07-09 22:13:58 -0700
committerDavid S. Miller <davem@nuts.davemloft.net>2004-07-09 22:13:58 -0700
commit13a7e44eb4e2426bbbeeab74e0132b55d50339e9 (patch)
treea676f97d618662b1334b258d18cf0e5a1907a5bf /include
parentf53a60b35f9aee0f8f2a177ff260593445821d84 (diff)
[NET]: Fix dst_underflow_bug_msg printk args.
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);
}
}