> -----Original Message----- > From: Julia Lawall [mailto:julia.lawall@xxxxxxx] > Sent: Saturday, March 02, 2019 2:51 PM > To: Gao, Likun <Likun.Gao@xxxxxxx> > Cc: Deucher, Alexander <Alexander.Deucher@xxxxxxx>; Wang, Kevin(Yang) > <Kevin1.Wang@xxxxxxx>; Quan, Evan <Evan.Quan@xxxxxxx>; Koenig, > Christian <Christian.Koenig@xxxxxxx>; David Airlie <airlied@xxxxxxxx>; > Daniel Vetter <daniel@xxxxxxxx>; Huang, Ray <Ray.Huang@xxxxxxx>; amd- > gfx@xxxxxxxxxxxxxxxxxxxxx; kbuild test robot <lkp@xxxxxxxxx>; dri- > devel@xxxxxxxxxxxxxxxxxxxxx; kbuild-all@xxxxxx > Subject: [PATCH] drm/amd/powerplay: fix memdup.cocci warnings > > From: kbuild test robot <fengguang.wu@xxxxxxxxx> > > Simplify the code a bit by using kmemdup instead of kzalloc and memcpy. > > Generated by: scripts/coccinelle/api/memdup.cocci > > Fixes: 76760fe3c00d ("drm/amd/powerplay: add function to store overdrive > information for smu11") > CC: Likun Gao <Likun.Gao@xxxxxxx> > Signed-off-by: kbuild test robot <fengguang.wu@xxxxxxxxx> > Signed-off-by: Julia Lawall <julia.lawall@xxxxxxx> Acked-by: Huang Rui <ray.huang@xxxxxxx> > --- > > tree: git://people.freedesktop.org/~agd5f/linux.git drm-next-5.2-wip > head: 25752e1fc83e9f983b11d680fc7bfc129b4eaae6 > commit: 76760fe3c00d04f25cc1a6115294310d4effeb77 [161/226] > drm/amd/powerplay: add function to store overdrive information for smu11 > :::::: branch date: 6 hours ago > :::::: commit date: 6 hours ago > > vega20_ppt.c | 24 +++++++++--------------- > 1 file changed, 9 insertions(+), 15 deletions(-) > > --- a/drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c > +++ b/drivers/gpu/drm/amd/amdgpu/../powerplay/vega20_ppt.c > @@ -173,14 +173,12 @@ static int vega20_setup_od8_information( > if (table_context->od_feature_capabilities) > return -EINVAL; > > - table_context->od_feature_capabilities = > kzalloc(od_feature_array_size, GFP_KERNEL); > + table_context->od_feature_capabilities = > kmemdup(&powerplay_table->OverDrive8Table.ODFeatureCapabilities, > + > od_feature_array_size, > + > GFP_KERNEL); > if (!table_context->od_feature_capabilities) > return -ENOMEM; > > - memcpy(table_context->od_feature_capabilities, > - &powerplay_table- > >OverDrive8Table.ODFeatureCapabilities, > - od_feature_array_size); > - > /* Setup correct ODSettingCount, and store ODSettingArray > from > * powerplay table to od_settings_max and od_setting_min > */ > od_setting_count = > @@ -194,7 +192,9 @@ static int vega20_setup_od8_information( > if (table_context->od_settings_max) > return -EINVAL; > > - table_context->od_settings_max = > kzalloc(od_setting_array_size, GFP_KERNEL); > + table_context->od_settings_max = > kmemdup(&powerplay_table->OverDrive8Table.ODSettingsMax, > + > od_setting_array_size, > + GFP_KERNEL); > > if (!table_context->od_settings_max) { > kfree(table_context->od_feature_capabilities); > @@ -202,14 +202,12 @@ static int vega20_setup_od8_information( > return -ENOMEM; > } > > - memcpy(table_context->od_settings_max, > - &powerplay_table->OverDrive8Table.ODSettingsMax, > - od_setting_array_size); > - > if (table_context->od_settings_min) > return -EINVAL; > > - table_context->od_settings_min = > kzalloc(od_setting_array_size, GFP_KERNEL); > + table_context->od_settings_min = > kmemdup(&powerplay_table->OverDrive8Table.ODSettingsMin, > + > od_setting_array_size, > + GFP_KERNEL); > > if (!table_context->od_settings_min) { > kfree(table_context->od_feature_capabilities); > @@ -218,10 +216,6 @@ static int vega20_setup_od8_information( > table_context->od_settings_max = NULL; > return -ENOMEM; > } > - > - memcpy(table_context->od_settings_min, > - &powerplay_table->OverDrive8Table.ODSettingsMin, > - od_setting_array_size); > } > > return 0; _______________________________________________ amd-gfx mailing list amd-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/amd-gfx