From: Menglong Dong <menglong8.dong@gmail.com>
To: Ido Schimmel <idosch@idosch.org>
Cc: Jakub Kicinski <kuba@kernel.org>,
David Ahern <dsahern@kernel.org>,
Neil Horman <nhorman@tuxdriver.com>,
David Miller <davem@davemloft.net>,
netdev <netdev@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
Steven Rostedt <rostedt@goodmis.org>,
Menglong Dong <imagedong@tencent.com>
Subject: Re: [PATCH v6 net-next] net: drop_monitor: support drop reason
Date: Tue, 8 Feb 2022 10:54:22 +0800 [thread overview]
Message-ID: <CADxym3aphsF=i4WbrdomPki+3Lz2=dOm-6h8P8fupV1ZtTPSaQ@mail.gmail.com> (raw)
In-Reply-To: <Yf+wcVAAWzmSz93n@shredder>
On Sun, Feb 6, 2022 at 7:26 PM Ido Schimmel <idosch@idosch.org> wrote:
>
> On Sat, Feb 05, 2022 at 04:17:38PM +0800, menglong8.dong@gmail.com wrote:
> > diff --git a/net/core/drop_monitor.c b/net/core/drop_monitor.c
> > index 7b288a121a41..1180f1a28599 100644
> > --- a/net/core/drop_monitor.c
> > +++ b/net/core/drop_monitor.c
> > @@ -48,6 +48,16 @@
> > static int trace_state = TRACE_OFF;
> > static bool monitor_hw;
> >
> > +#undef EM
> > +#undef EMe
> > +
> > +#define EM(a, b) [a] = #b,
> > +#define EMe(a, b) [a] = #b
> > +
> > +static const char *drop_reasons[SKB_DROP_REASON_MAX + 1] = {
> > + TRACE_SKB_DROP_REASON
> > +};
> > +
> > /* net_dm_mutex
> > *
> > * An overall lock guarding every operation coming from userspace.
> > @@ -126,6 +136,7 @@ struct net_dm_skb_cb {
> > struct devlink_trap_metadata *hw_metadata;
> > void *pc;
> > };
> > + enum skb_drop_reason reason;
> > };
> >
> > #define NET_DM_SKB_CB(__skb) ((struct net_dm_skb_cb *)&((__skb)->cb[0]))
> > @@ -498,6 +509,7 @@ static void net_dm_packet_trace_kfree_skb_hit(void *ignore,
> > {
> > ktime_t tstamp = ktime_get_real();
> > struct per_cpu_dm_data *data;
> > + struct net_dm_skb_cb *cb;
> > struct sk_buff *nskb;
> > unsigned long flags;
> >
> > @@ -508,7 +520,9 @@ static void net_dm_packet_trace_kfree_skb_hit(void *ignore,
> > if (!nskb)
> > return;
> >
> > - NET_DM_SKB_CB(nskb)->pc = location;
> > + cb = NET_DM_SKB_CB(nskb);
> > + cb->reason = reason;
> > + cb->pc = location;
> > /* Override the timestamp because we care about the time when the
> > * packet was dropped.
> > */
> > @@ -606,8 +620,9 @@ static int net_dm_packet_report_in_port_put(struct sk_buff *msg, int ifindex,
> > static int net_dm_packet_report_fill(struct sk_buff *msg, struct sk_buff *skb,
> > size_t payload_len)
> > {
> > - u64 pc = (u64)(uintptr_t) NET_DM_SKB_CB(skb)->pc;
> > + struct net_dm_skb_cb *cb = NET_DM_SKB_CB(skb);
> > char buf[NET_DM_MAX_SYMBOL_LEN];
> > + unsigned int reason;
> > struct nlattr *attr;
> > void *hdr;
> > int rc;
> > @@ -620,10 +635,16 @@ static int net_dm_packet_report_fill(struct sk_buff *msg, struct sk_buff *skb,
> > if (nla_put_u16(msg, NET_DM_ATTR_ORIGIN, NET_DM_ORIGIN_SW))
> > goto nla_put_failure;
> >
> > - if (nla_put_u64_64bit(msg, NET_DM_ATTR_PC, pc, NET_DM_ATTR_PAD))
> > + if (nla_put_u64_64bit(msg, NET_DM_ATTR_PC, (u64)(uintptr_t)cb->pc,
> > + NET_DM_ATTR_PAD))
> > + goto nla_put_failure;
> > +
> > + reason = (unsigned int)cb->reason;
> > + if (reason < SKB_DROP_REASON_MAX &&
> > + nla_put_string(msg, NET_DM_ATTR_REASON, drop_reasons[reason]))
>
> You need to make sure 'msg' has enough room for this attribute. Account
> for it in net_dm_packet_report_size()
>
Ok, I see what you mean now, thanks!
> > goto nla_put_failure;
> >
> > - snprintf(buf, sizeof(buf), "%pS", NET_DM_SKB_CB(skb)->pc);
> > + snprintf(buf, sizeof(buf), "%pS", cb->pc);
> > if (nla_put_string(msg, NET_DM_ATTR_SYMBOL, buf))
> > goto nla_put_failure;
> >
> > --
> > 2.27.0
> >
next prev parent reply other threads:[~2022-02-08 2:59 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-05 8:17 [PATCH v6 net-next] net: drop_monitor: support drop reason menglong8.dong
2022-02-06 11:26 ` Ido Schimmel
2022-02-08 2:54 ` Menglong Dong [this message]
2022-02-07 14:43 ` Steven Rostedt
2022-02-08 2:56 ` Menglong Dong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CADxym3aphsF=i4WbrdomPki+3Lz2=dOm-6h8P8fupV1ZtTPSaQ@mail.gmail.com' \
--to=menglong8.dong@gmail.com \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=idosch@idosch.org \
--cc=imagedong@tencent.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nhorman@tuxdriver.com \
--cc=rostedt@goodmis.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).