提交 41387a59 编写于 作者: S Sakari Ailus 提交者: Mauro Carvalho Chehab

[media] media: entity: Fix stream count check

There's a sanity check for the stream count remaining positive or zero on
error path, but instead of performing the check on the traversed entity it
is performed on the entity where traversal ends. Fix this.

Fixes: commit 3801bc7d ("[media] media: Media Controller fix to not let stream_count go negative")
Signed-off-by: NSakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
上级 bcb63314
...@@ -470,7 +470,7 @@ __must_check int __media_entity_pipeline_start(struct media_entity *entity, ...@@ -470,7 +470,7 @@ __must_check int __media_entity_pipeline_start(struct media_entity *entity,
while ((entity_err = media_entity_graph_walk_next(graph))) { while ((entity_err = media_entity_graph_walk_next(graph))) {
/* don't let the stream_count go negative */ /* don't let the stream_count go negative */
if (entity->stream_count > 0) { if (entity_err->stream_count > 0) {
entity_err->stream_count--; entity_err->stream_count--;
if (entity_err->stream_count == 0) if (entity_err->stream_count == 0)
entity_err->pipe = NULL; entity_err->pipe = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册