lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 17 Apr 2009 02:31:43 +0200
From:	Ingo Molnar <mingo@...e.hu>
To:	Li Zefan <lizf@...fujitsu.com>
Cc:	Tom Zanussi <tzanussi@...il.com>,
	Frederic Weisbecker <fweisbec@...il.com>,
	LKML <linux-kernel@...r.kernel.org>,
	Steven Rostedt <rostedt@...dmis.org>,
	paulmck@...ux.vnet.ibm.com
Subject: Re: [PATCH] tracing/filters: add filter_mutex to protect filter
	predicates


* Li Zefan <lizf@...fujitsu.com> wrote:

> Tom Zanussi wrote:
> > This patch adds a filter_mutex to prevent the filter predicates from
> > being accessed concurrently by various external functions.
> > 
> > It's based on a previous patch by Li Zefan:
> >         "[PATCH 7/7] tracing/filters: make filter preds RCU safe"
> > 
> > but any problems with it were added by me. ;-)
> > 
> > Signed-off-by: Tom Zanussi <tzanussi@...il.com>
> > 
> 
> Reviewed-and-tested-by: Li Zefan <lizf@...fujitsu.com>
> 
> except:
> 
> > @@ -348,17 +399,15 @@ int filter_add_subsystem_pred(struct event_subsystem *system,
> >  		if (strcmp(call->system, system->name))
> >  			continue;
> >  
> > -		if (!find_event_field(call, pred->field_name))
> > -			continue;
> > -
> > -		err = filter_add_pred(call, pred);
> > +		err = __filter_add_pred(call, pred);
> >  		if (err == -ENOMEM) {
> >  			system->preds[system->n_preds] = NULL;
> > -			return err;
> > +			system->n_preds--;
> > +			break;
> 
> now we return 0 but not ENOMEM in this failure case.

ok - i'll wait for this fix.

	Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ