diff options
| author | Hideaki Yoshifuji <yoshfuji@linux-ipv6.org> | 2004-07-09 22:13:58 -0700 |
|---|---|---|
| committer | David S. Miller <davem@nuts.davemloft.net> | 2004-07-09 22:13:58 -0700 |
| commit | 13a7e44eb4e2426bbbeeab74e0132b55d50339e9 (patch) | |
| tree | a676f97d618662b1334b258d18cf0e5a1907a5bf | |
| parent | f53a60b35f9aee0f8f2a177ff260593445821d84 (diff) | |
[NET]: Fix dst_underflow_bug_msg printk args.
| -rw-r--r-- | include/net/dst.h | 4 |
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); } } |
