From: Joe Perches Date: Tue, 4 Feb 2014 01:26:52 +0000 (-0800) Subject: datapath: Use net_ratelimit in OVS_NLERR X-Git-Tag: sliver-openvswitch-2.1.90-1~8^2~10 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=13fe68421792da50e40025c587f790a608431f8f;p=sliver-openvswitch.git datapath: Use net_ratelimit in OVS_NLERR Each use of pr__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 Signed-off-by: Jesse Gross --- diff --git a/datapath/datapath.h b/datapath/datapath.h index b3ae7cdfa..d81e05c59 100644 --- a/datapath/datapath.h +++ b/datapath/datapath.h @@ -198,7 +198,9 @@ struct sk_buff *ovs_vport_cmd_build_info(struct vport *, u32 portid, u32 seq, int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb); void ovs_dp_notify_wq(struct work_struct *work); -#define OVS_NLERR(fmt, ...) \ - pr_info_once("netlink: " fmt, ##__VA_ARGS__) - +#define OVS_NLERR(fmt, ...) \ +do { \ + if (net_ratelimit()) \ + pr_info("netlink: " fmt, ##__VA_ARGS__); \ +} while (0) #endif /* datapath.h */