Re: [PATCH v3 1/5] media: Add support for circular graph traversal

2013-07-31 Thread Laurent Pinchart
Hi Sakari, Thank you for the review. On Thursday 25 July 2013 16:54:46 Sakari Ailus wrote: > On Thu, Jul 25, 2013 at 03:00:09PM +0200, Laurent Pinchart wrote: > > From: Laurent Pinchart > > > > The graph traversal API (media_entity_graph_walk_*) doesn't support > > cyclic graphs and will fail t

Re: [PATCH v3 1/5] media: Add support for circular graph traversal

2013-07-25 Thread Sakari Ailus
Hi Laurent, On Thu, Jul 25, 2013 at 03:00:09PM +0200, Laurent Pinchart wrote: > From: Laurent Pinchart > > The graph traversal API (media_entity_graph_walk_*) doesn't support > cyclic graphs and will fail to correctly walk a graph when circular > links exist. Support circular graph traversal by

[PATCH v3 1/5] media: Add support for circular graph traversal

2013-07-25 Thread Laurent Pinchart
From: Laurent Pinchart The graph traversal API (media_entity_graph_walk_*) doesn't support cyclic graphs and will fail to correctly walk a graph when circular links exist. Support circular graph traversal by checking whether an entity has already been visited before pushing it to the stack. Sign