diff options
author | Manuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de> | 2011-06-15 22:09:57 -0400 |
---|---|---|
committer | David S. Miller <davem@conan.davemloft.net> | 2011-06-17 00:03:03 -0400 |
commit | cb0a60564943db21ed3af975ac3d578cdc80b329 (patch) | |
tree | 207d01d3d6531dde9521abce061a4c48ad1d3690 /net/rds/ib_cm.c | |
parent | d751e623969bf758f3f75f59418b19ede570ab50 (diff) |
net/rds: use prink_ratelimited() instead of printk_ratelimit()
Since printk_ratelimit() shouldn't be used anymore (see comment in
include/linux/printk.h), replace it with printk_ratelimited()
Signed-off-by: Manuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de>
Signed-off-by: David S. Miller <davem@conan.davemloft.net>
Diffstat (limited to 'net/rds/ib_cm.c')
-rw-r--r-- | net/rds/ib_cm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/rds/ib_cm.c b/net/rds/ib_cm.c index fd453dd5124b..cd67026be2d5 100644 --- a/net/rds/ib_cm.c +++ b/net/rds/ib_cm.c | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <linux/in.h> | 34 | #include <linux/in.h> |
35 | #include <linux/slab.h> | 35 | #include <linux/slab.h> |
36 | #include <linux/vmalloc.h> | 36 | #include <linux/vmalloc.h> |
37 | #include <linux/ratelimit.h> | ||
37 | 38 | ||
38 | #include "rds.h" | 39 | #include "rds.h" |
39 | #include "ib.h" | 40 | #include "ib.h" |
@@ -435,13 +436,12 @@ static u32 rds_ib_protocol_compatible(struct rdma_cm_event *event) | |||
435 | version = RDS_PROTOCOL_3_0; | 436 | version = RDS_PROTOCOL_3_0; |
436 | while ((common >>= 1) != 0) | 437 | while ((common >>= 1) != 0) |
437 | version++; | 438 | version++; |
438 | } else if (printk_ratelimit()) { | 439 | } |
439 | printk(KERN_NOTICE "RDS: Connection from %pI4 using " | 440 | printk_ratelimited(KERN_NOTICE "RDS: Connection from %pI4 using " |
440 | "incompatible protocol version %u.%u\n", | 441 | "incompatible protocol version %u.%u\n", |
441 | &dp->dp_saddr, | 442 | &dp->dp_saddr, |
442 | dp->dp_protocol_major, | 443 | dp->dp_protocol_major, |
443 | dp->dp_protocol_minor); | 444 | dp->dp_protocol_minor); |
444 | } | ||
445 | return version; | 445 | return version; |
446 | } | 446 | } |
447 | 447 | ||