From: jp_ikaheimonen@mentor.com (Ikaheimonen, JP)
Subject: [lttng-dev] [PATCH lttng-ust 7/7] Add a check against excluders
Date: Thu, 14 Nov 2013 14:26:14 +0000 [thread overview]
Message-ID: <009B25148989C6458484484699278506E539FBC7@EU-MBX-01.mgc.mentorg.com> (raw)
In-Reply-To: <692188761.67141.1384439117906.JavaMail.zimbra@efficios.com>
Thank you!
JP
-----Original Message-----
From: Mathieu Desnoyers [mailto:mathieu.desnoyers@efficios.com]
Sent: 14. marraskuuta 2013 16:25
To: Ikaheimonen, JP
Cc: lttng-dev at lists.lttng.org
Subject: Re: [lttng-dev] [PATCH lttng-ust 7/7] Add a check against excluders
Not needed, I already fixed it.
Thanks,
Mathieu
----- Original Message -----
> From: "JP Ikaheimonen" <jp_ikaheimonen@mentor.com>
> To: "Mathieu Desnoyers" <mathieu.desnoyers at efficios.com>
> Cc: lttng-dev at lists.lttng.org
> Sent: Thursday, November 14, 2013 2:26:33 AM
> Subject: RE: [lttng-dev] [PATCH lttng-ust 7/7] Add a check against
> excluders
>
> Thank you Mathieu!
> I will make these changes and resubmit this one patch.
>
> Cheers,
> JP
>
> -----Original Message-----
> From: Mathieu Desnoyers [mailto:mathieu.desnoyers@efficios.com]
> Sent: 13. marraskuuta 2013 16:05
> To: Ikaheimonen, JP
> Cc: lttng-dev at lists.lttng.org
> Subject: Re: [lttng-dev] [PATCH lttng-ust 7/7] Add a check against
> excluders
>
> ----- Original Message -----
> > From: "JP Ikaheimonen" <jp_ikaheimonen@mentor.com>
> > To: lttng-dev at lists.lttng.org
> > Sent: Thursday, November 7, 2013 5:22:35 AM
> > Subject: [lttng-dev] [PATCH lttng-ust 7/7] Add a check against
> > excluders
> >
> > When matching enablers with events, first check against all
> > excluders of the enabler. If the event matches with any of the
> > excluders, then the event does not match with the enabler.
> >
> > Signed-off-by: JP Ikaheimonen <jp_ikaheimonen at mentor.com>
> > ---
> > liblttng-ust/lttng-events.c | 23 +++++++++++++++++++++++
> > 1 file changed, 23 insertions(+)
> >
> > diff --git a/liblttng-ust/lttng-events.c
> > b/liblttng-ust/lttng-events.c index 915cffb..fa5596c 100644
> > --- a/liblttng-ust/lttng-events.c
> > +++ b/liblttng-ust/lttng-events.c
> > @@ -491,6 +491,29 @@ static
> > int lttng_desc_match_enabler(const struct lttng_event_desc *desc,
> > struct lttng_enabler *enabler)
> > {
> > + struct lttng_ust_excluder_node *excluder;
> > +
> > + /* If event matches with an excluder, return 'does not match' */
> > + cds_list_for_each_entry(excluder, &enabler->excluder_head, node) {
> > + int found = 0;
>
> Why is "found" declared here ? Why is it initialized to 0 ?
>
>
> > + int count, len;
> > + char *excluder_name;
> > +
> > + for (count = 0; count < excluder->excluder.count; count++) {
>
> Rather than declared here ?
>
>
> > + excluder_name = (char *)(excluder->excluder.names)
> > + + count * LTTNG_UST_SYM_NAME_LEN;
> > + len = strnlen(excluder_name, LTTNG_UST_SYM_NAME_LEN);
> > + if (len > 0 && excluder_name[len - 1] == '*') {
> > + found = strncmp(desc->name, excluder_name, len - 1);
>
> strncmp and "found" have reversed logic. I'd assign found = !strncmp(....).
>
> > + } else {
> > + found = strncmp(desc->name, excluder_name,
> > + LTTNG_UST_SYM_NAME_LEN - 1);
> > + }
> > + if (!found) {
>
> and reverse this condition.
>
> The other patches in this patchset look good !! Good job !!
>
> Thanks,
>
> Mathieu
>
> > + return 0;
> > + }
> > + }
> > + }
> > switch (enabler->type) {
> > case LTTNG_ENABLER_WILDCARD:
> > return lttng_desc_match_wildcard_enabler(desc, enabler);
> > --
> > 1.8.1.2
> >
> >
> > _______________________________________________
> > lttng-dev mailing list
> > lttng-dev at lists.lttng.org
> > http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
> >
>
> --
> Mathieu Desnoyers
> EfficiOS Inc.
> http://www.efficios.com
>
--
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com
prev parent reply other threads:[~2013-11-14 14:26 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-07 10:22 [lttng-dev] [PATCH lttng-ust 0/7] UST Event exclusions JP Ikaheimonen
2013-11-07 10:22 ` [lttng-dev] [PATCH lttng-ust 1/7] Define a new command LTTNG_UST_EXCLUSION JP Ikaheimonen
2013-11-07 10:22 ` [lttng-dev] [PATCH lttng-ust 2/7] Define exclusion structure for UST ABI JP Ikaheimonen
2013-11-07 10:22 ` [lttng-dev] [PATCH lttng-ust 3/7] Send exclusion data through ustcomm JP Ikaheimonen
2013-11-07 10:22 ` [lttng-dev] [PATCH lttng-ust 4/7] Add excluders to enabler structure JP Ikaheimonen
2013-11-07 10:22 ` [lttng-dev] [PATCH lttng-ust 5/7] Store exclusions to enablers JP Ikaheimonen
2013-11-07 10:22 ` [lttng-dev] [PATCH lttng-ust 6/7] Add handler for LTTNG_UST_EXCLUSION in UST ABI JP Ikaheimonen
2013-11-07 10:22 ` [lttng-dev] [PATCH lttng-ust 7/7] Add a check against excluders JP Ikaheimonen
2013-11-13 14:05 ` Mathieu Desnoyers
2013-11-13 20:25 ` Mathieu Desnoyers
2013-11-14 7:26 ` Ikaheimonen, JP
2013-11-14 14:25 ` Mathieu Desnoyers
2013-11-14 14:26 ` Ikaheimonen, JP [this message]
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=009B25148989C6458484484699278506E539FBC7@EU-MBX-01.mgc.mentorg.com \
--to=jp_ikaheimonen@mentor.com \
/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