]> git.ipfire.org Git - people/arne_f/kernel.git/commit
regmap: debugfs: fix possbile NULL pointer dereference
authorXiubo Li <Li.Xiubo@freescale.com>
Sun, 28 Sep 2014 03:35:25 +0000 (11:35 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Oct 2014 16:35:10 +0000 (09:35 -0700)
commitd9aa4aecb2e94ca383789147769291e8723ecf86
tree50fb9506515674fdd0b01c140205da920e31dafa
parent0ee097ac8eebdef530c6757d09bd82e08b455a08
regmap: debugfs: fix possbile NULL pointer dereference

commit 2c98e0c1cc6b8e86f1978286c3d4e0769ee9d733 upstream.

If 'map->dev' is NULL and there will lead dev_name() to be NULL pointer
dereference. So before dev_name(), we need to have check of the map->dev
pionter.

We also should make sure that the 'name' pointer shouldn't be NULL for
debugfs_create_dir(). So here using one default "dummy" debugfs name when
the 'name' pointer and 'map->dev' are both NULL.

Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/regmap/regmap-debugfs.c