From: Hans Verkuil <hverkuil-cisco@xxxxxxxxx> Various fixes for bugs that I found while working on the regression test-media script. The CONFIG_DEBUG_KOBJECT_RELEASE=y option in particular found a bunch of bugs where things were not released in the right order. Note that the first two patches are not bug fixes, but they help debugging kobjects. Without this the object name is just (null), which makes it hard to figure out what the object is. Changes since v1: - Dropped 'v4l2-device: v4l2_device_release_subdev_node can't reference sd' and replaced it with 'v4l2-subdev: add release() internal op'. - Added 'v4l2-subdev: handle module refcounting here'. - Added 'vimc: use new release op'. With these changes I can run the test-media script without errors (except for a known vimc 'do not call blocking ops when !TASK_RUNNING;' error, waiting for a patch from Helen that fixes this). Regards, Hans Hans Verkuil (9): cec: fill in cec chardev kobject to ease debugging media-devnode: fill in media chardev kobject to ease debugging vivid: use vzalloc for dev->bitmap_out media-entity: set ent_enum->bmap to NULL after freeing it vim2m: replace devm_kzalloc by kzalloc v4l2-subdev: add release() internal op v4l2-subdev: handle module refcounting here vimc: free vimc_cap_device when the last user disappears vimc: use new release op drivers/media/cec/cec-core.c | 1 + drivers/media/media-devnode.c | 1 + drivers/media/media-entity.c | 29 +--------------- drivers/media/platform/vim2m.c | 35 ++++++++++++-------- drivers/media/platform/vimc/vimc-capture.c | 13 ++++++-- drivers/media/platform/vimc/vimc-common.c | 2 ++ drivers/media/platform/vimc/vimc-common.h | 2 ++ drivers/media/platform/vimc/vimc-debayer.c | 15 +++++++-- drivers/media/platform/vimc/vimc-scaler.c | 15 +++++++-- drivers/media/platform/vimc/vimc-sensor.c | 19 ++++++++--- drivers/media/platform/vivid/vivid-vid-out.c | 14 +++++--- drivers/media/v4l2-core/v4l2-device.c | 19 ++++++++--- drivers/media/v4l2-core/v4l2-subdev.c | 22 +++++------- include/media/media-entity.h | 24 -------------- include/media/v4l2-subdev.h | 4 +++ 15 files changed, 116 insertions(+), 99 deletions(-) -- 2.20.1