aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-02-03 20:06:46 -0500
committerJesse Gross <jesse@nicira.com>2014-05-16 16:40:28 -0400
commit1815a8831fb04c60d73627816cb0b596266e9bee (patch)
tree87d6da1c8e7fdc1eb25e7d1152702444030471b7 /net/openvswitch
parentcc23ebf3bb4348fb022c0d25494307459bb2e539 (diff)
openvswitch: Use net_ratelimit in OVS_NLERR
Each use of pr_<level>_once has a per-site flag. Some of the OVS_NLERR messages look as if seeing them multiple times could be useful, so use net_ratelimit() instead of pr_info_once. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net/openvswitch')
-rw-r--r--net/openvswitch/datapath.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/net/openvswitch/datapath.h b/net/openvswitch/datapath.h
index 05317380fc03..7ede507500d7 100644
--- a/net/openvswitch/datapath.h
+++ b/net/openvswitch/datapath.h
@@ -194,7 +194,9 @@ struct sk_buff *ovs_vport_cmd_build_info(struct vport *, u32 pid, u32 seq,
194int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb); 194int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb);
195void ovs_dp_notify_wq(struct work_struct *work); 195void ovs_dp_notify_wq(struct work_struct *work);
196 196
197#define OVS_NLERR(fmt, ...) \ 197#define OVS_NLERR(fmt, ...) \
198 pr_info_once("netlink: " fmt, ##__VA_ARGS__) 198do { \
199 199 if (net_ratelimit()) \
200 pr_info("netlink: " fmt, ##__VA_ARGS__); \
201} while (0)
200#endif /* datapath.h */ 202#endif /* datapath.h */