diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2014-04-16 09:42:22 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-06-07 10:28:14 -0700 |
commit | 078e8e804177a7ce50f51ecc636f7d33e924b72d (patch) | |
tree | c8e534b35e863a3b45e8372b8593e8ada3228ac7 /drivers/gpu/drm/radeon | |
parent | 3302087d6669a36c71ae57643ac36ecc8345c6ee (diff) | |
download | lwn-078e8e804177a7ce50f51ecc636f7d33e924b72d.tar.gz lwn-078e8e804177a7ce50f51ecc636f7d33e924b72d.zip |
drm/radeon/si: make sure mc ucode is loaded before checking the size
commit 8c79bae6a30f606b7a4e17c994bc5f72f8fdaf11 upstream.
Avoid a possible segfault.
Noticed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpu/drm/radeon')
-rw-r--r-- | drivers/gpu/drm/radeon/si.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/si.c b/drivers/gpu/drm/radeon/si.c index 9ce6bc365c3b..000d76538969 100644 --- a/drivers/gpu/drm/radeon/si.c +++ b/drivers/gpu/drm/radeon/si.c @@ -1472,11 +1472,13 @@ int si_mc_load_microcode(struct radeon_device *rdev) const __be32 *fw_data; u32 running, blackout = 0; u32 *io_mc_regs; - int i, regs_size, ucode_size = rdev->mc_fw->size / 4; + int i, regs_size, ucode_size; if (!rdev->mc_fw) return -EINVAL; + ucode_size = rdev->mc_fw->size / 4; + switch (rdev->family) { case CHIP_TAHITI: io_mc_regs = (u32 *)&tahiti_io_mc_regs; |