mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
nfp: output control messages to trace_devlink_hwmsg()
Use standard devlink trace point to allow tracing of control messages. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Reviewed-by: Simon Horman <simon.horman@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1c3dc891c1
commit
3a4b0129bf
1 changed files with 8 additions and 0 deletions
|
@ -36,6 +36,8 @@
|
|||
|
||||
#include <net/devlink.h>
|
||||
|
||||
#include <trace/events/devlink.h>
|
||||
|
||||
#include "nfp_net_repr.h"
|
||||
|
||||
struct bpf_prog;
|
||||
|
@ -271,11 +273,17 @@ static inline int nfp_app_xdp_offload(struct nfp_app *app, struct nfp_net *nn,
|
|||
|
||||
static inline bool nfp_app_ctrl_tx(struct nfp_app *app, struct sk_buff *skb)
|
||||
{
|
||||
trace_devlink_hwmsg(priv_to_devlink(app->pf), false, 0,
|
||||
skb->data, skb->len);
|
||||
|
||||
return nfp_ctrl_tx(app->ctrl, skb);
|
||||
}
|
||||
|
||||
static inline void nfp_app_ctrl_rx(struct nfp_app *app, struct sk_buff *skb)
|
||||
{
|
||||
trace_devlink_hwmsg(priv_to_devlink(app->pf), true, 0,
|
||||
skb->data, skb->len);
|
||||
|
||||
app->type->ctrl_msg_rx(app, skb);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue