Re: [PATCH v2] regmap: introduce regmap_name to fix syscon regmap trace events

2015-03-19 Thread Mark Brown
On Thu, Mar 19, 2015 at 03:58:45PM -0400, Steven Rostedt wrote: > I pulled your regmap tree: > git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git > And looked at each of the branches, and I don't see this applied. Is > there another tree I should look at? Huh, my push script seem

Re: [PATCH v2] regmap: introduce regmap_name to fix syscon regmap trace events

2015-03-19 Thread Steven Rostedt
On Thu, 19 Mar 2015 19:26:12 + Mark Brown wrote: > On Thu, Mar 19, 2015 at 03:22:27PM -0400, Steven Rostedt wrote: > > Mark Brown wrote: > > > > > The regmap trace events expect it to point to a valid struct device and > > > > feed > > > > it to dev_name(): > > > > Applied, thanks. > > >

Re: [PATCH v2] regmap: introduce regmap_name to fix syscon regmap trace events

2015-03-19 Thread Mark Brown
On Thu, Mar 19, 2015 at 03:22:27PM -0400, Steven Rostedt wrote: > Mark Brown wrote: > > > The regmap trace events expect it to point to a valid struct device and > > > feed > > > it to dev_name(): > > Applied, thanks. > Would you mind me sending you a patch that moves the trace file? No, plea

Re: [PATCH v2] regmap: introduce regmap_name to fix syscon regmap trace events

2015-03-19 Thread Steven Rostedt
On Mon, 9 Mar 2015 18:13:54 + Mark Brown wrote: > On Mon, Mar 09, 2015 at 12:20:13PM +0100, Philipp Zabel wrote: > > This patch fixes a NULL pointer dereference when enabling regmap event > > tracing in the presence of a syscon regmap, introduced by commit > > bdb0066df96e > > ("mfd: syscon:

Re: [PATCH v2] regmap: introduce regmap_name to fix syscon regmap trace events

2015-03-19 Thread Steven Rostedt
On Mon, 9 Mar 2015 12:20:13 +0100 Philipp Zabel wrote: Sorry for the late repy, I just noticed this email. > diff --git a/include/trace/events/regmap.h b/include/trace/events/regmap.h > index 23d5615..22317d2 100644 > --- a/include/trace/events/regmap.h > +++ b/include/trace/events/regmap.h > @

Re: [PATCH v2] regmap: introduce regmap_name to fix syscon regmap trace events

2015-03-09 Thread Mark Brown
On Mon, Mar 09, 2015 at 12:20:13PM +0100, Philipp Zabel wrote: > This patch fixes a NULL pointer dereference when enabling regmap event > tracing in the presence of a syscon regmap, introduced by commit bdb0066df96e > ("mfd: syscon: Decouple syscon interface from platform devices"). > That patch in

[PATCH v2] regmap: introduce regmap_name to fix syscon regmap trace events

2015-03-09 Thread Philipp Zabel
This patch fixes a NULL pointer dereference when enabling regmap event tracing in the presence of a syscon regmap, introduced by commit bdb0066df96e ("mfd: syscon: Decouple syscon interface from platform devices"). That patch introduced syscon regmaps that have their dev field set to NULL. The regm