* [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement
@ 2019-07-21 22:59 Gustavo A. R. Silva
2019-07-22 15:14 ` Liu, Shaoyun
0 siblings, 1 reply; 4+ messages in thread
From: Gustavo A. R. Silva @ 2019-07-21 22:59 UTC (permalink / raw)
To: Philip Cox, Oded Gabbay, Alex Deucher, Christian König,
David (ChunMing) Zhou, David Airlie, Daniel Vetter
Cc: dri-devel, amd-gfx, linux-kernel, Gustavo A. R. Silva
Add missing break statement in order to prevent the code from falling
through to case KFD_MQD_TYPE_COMPUTE.
This bug was found thanks to the ongoing efforts to enable
-Wimplicit-fallthrough.
Fixes: 14328aa58ce5 ("drm/amdkfd: Add navi10 support to amdkfd. (v3)")
Cc: stable@vger.kernel.org
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
---
drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c
index 4f8a6ffc5775..1d8b13ad46f9 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c
@@ -430,6 +430,7 @@ struct mqd_manager *mqd_manager_init_v10(enum KFD_MQD_TYPE type,
switch (type) {
case KFD_MQD_TYPE_CP:
pr_debug("%s@%i\n", __func__, __LINE__);
+ break;
case KFD_MQD_TYPE_COMPUTE:
pr_debug("%s@%i\n", __func__, __LINE__);
mqd->allocate_mqd = allocate_mqd;
--
2.22.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement 2019-07-21 22:59 [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement Gustavo A. R. Silva @ 2019-07-22 15:14 ` Liu, Shaoyun [not found] ` <BN6PR12MB18098741A081711936563597F7C40@BN6PR12MB1809.namprd12.prod.outlook.com> 0 siblings, 1 reply; 4+ messages in thread From: Liu, Shaoyun @ 2019-07-22 15:14 UTC (permalink / raw) To: Gustavo A. R. Silva, Cox, Philip, Oded Gabbay, Deucher, Alexander, Koenig, Christian, Zhou, David(ChunMing), David Airlie, Daniel Vetter Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org This one properly in purpose , The mqd init for CP and COMPUTE will have the same routine . Regard sshaoyun.liu On 2019-07-21 6:59 p.m., Gustavo A. R. Silva wrote: > Add missing break statement in order to prevent the code from falling > through to case KFD_MQD_TYPE_COMPUTE. > > This bug was found thanks to the ongoing efforts to enable > -Wimplicit-fallthrough. > > Fixes: 14328aa58ce5 ("drm/amdkfd: Add navi10 support to amdkfd. (v3)") > Cc: stable@vger.kernel.org > Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> > --- > drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c > index 4f8a6ffc5775..1d8b13ad46f9 100644 > --- a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c > +++ b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c > @@ -430,6 +430,7 @@ struct mqd_manager *mqd_manager_init_v10(enum KFD_MQD_TYPE type, > switch (type) { > case KFD_MQD_TYPE_CP: > pr_debug("%s@%i\n", __func__, __LINE__); > + break; > case KFD_MQD_TYPE_COMPUTE: > pr_debug("%s@%i\n", __func__, __LINE__); > mqd->allocate_mqd = allocate_mqd; ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <BN6PR12MB18098741A081711936563597F7C40@BN6PR12MB1809.namprd12.prod.outlook.com>]
* Re: [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement [not found] ` <BN6PR12MB18098741A081711936563597F7C40@BN6PR12MB1809.namprd12.prod.outlook.com> @ 2019-07-22 16:13 ` Gustavo A. R. Silva 2019-07-22 17:43 ` Liu, Shaoyun 0 siblings, 1 reply; 4+ messages in thread From: Gustavo A. R. Silva @ 2019-07-22 16:13 UTC (permalink / raw) To: Deucher, Alexander, Liu, Shaoyun, Cox, Philip, Oded Gabbay, Koenig, Christian, Zhou, David(ChunMing), David Airlie, Daniel Vetter Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org On 7/22/19 10:58 AM, Deucher, Alexander wrote: > We need to add a /*fall through */ comment then. > It might be better to remove the call to pr_debug() in KFD_MQD_TYPE_CP: case KFD_MQD_TYPE_CP: case KFD_MQD_TYPE_COMPUTE: pr_debug("%s@%i\n", __func__, __LINE__); mqd->allocate_mqd = allocate_mqd; Thanks -- Gustavo > Alex > ________________________________ > From: Liu, Shaoyun <Shaoyun.Liu@amd.com> > Sent: Monday, July 22, 2019 11:14 AM > To: Gustavo A. R. Silva <gustavo@embeddedor.com>; Cox, Philip <Philip.Cox@amd.com>; Oded Gabbay <oded.gabbay@gmail.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; Zhou, David(ChunMing) <David1.Zhou@amd.com>; David Airlie <airlied@linux.ie>; Daniel Vetter <daniel@ffwll.ch> > Cc: amd-gfx@lists.freedesktop.org <amd-gfx@lists.freedesktop.org>; dri-devel@lists.freedesktop.org <dri-devel@lists.freedesktop.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org> > Subject: Re: [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement > > This one properly in purpose , The mqd init for CP and COMPUTE will > have the same routine . > > Regard > > sshaoyun.liu > > On 2019-07-21 6:59 p.m., Gustavo A. R. Silva wrote: >> Add missing break statement in order to prevent the code from falling >> through to case KFD_MQD_TYPE_COMPUTE. >> >> This bug was found thanks to the ongoing efforts to enable >> -Wimplicit-fallthrough. >> >> Fixes: 14328aa58ce5 ("drm/amdkfd: Add navi10 support to amdkfd. (v3)") >> Cc: stable@vger.kernel.org >> Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> >> --- >> drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c >> index 4f8a6ffc5775..1d8b13ad46f9 100644 >> --- a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c >> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c >> @@ -430,6 +430,7 @@ struct mqd_manager *mqd_manager_init_v10(enum KFD_MQD_TYPE type, >> switch (type) { >> case KFD_MQD_TYPE_CP: >> pr_debug("%s@%i\n", __func__, __LINE__); >> + break; >> case KFD_MQD_TYPE_COMPUTE: >> pr_debug("%s@%i\n", __func__, __LINE__); >> mqd->allocate_mqd = allocate_mqd; > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement 2019-07-22 16:13 ` Gustavo A. R. Silva @ 2019-07-22 17:43 ` Liu, Shaoyun 0 siblings, 0 replies; 4+ messages in thread From: Liu, Shaoyun @ 2019-07-22 17:43 UTC (permalink / raw) To: Gustavo A. R. Silva, Deucher, Alexander, Cox, Philip, Oded Gabbay, Koenig, Christian, Zhou, David(ChunMing), David Airlie, Daniel Vetter Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org That sounds good to me . Regards shaoyun.liu On 2019-07-22 12:13 p.m., Gustavo A. R. Silva wrote: > > On 7/22/19 10:58 AM, Deucher, Alexander wrote: >> We need to add a /*fall through */ comment then. >> > It might be better to remove the call to pr_debug() in KFD_MQD_TYPE_CP: > > case KFD_MQD_TYPE_CP: > case KFD_MQD_TYPE_COMPUTE: > pr_debug("%s@%i\n", __func__, __LINE__); > mqd->allocate_mqd = allocate_mqd; > > Thanks > -- > Gustavo > > >> Alex >> ________________________________ >> From: Liu, Shaoyun <Shaoyun.Liu@amd.com> >> Sent: Monday, July 22, 2019 11:14 AM >> To: Gustavo A. R. Silva <gustavo@embeddedor.com>; Cox, Philip <Philip.Cox@amd.com>; Oded Gabbay <oded.gabbay@gmail.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; Zhou, David(ChunMing) <David1.Zhou@amd.com>; David Airlie <airlied@linux.ie>; Daniel Vetter <daniel@ffwll.ch> >> Cc: amd-gfx@lists.freedesktop.org <amd-gfx@lists.freedesktop.org>; dri-devel@lists.freedesktop.org <dri-devel@lists.freedesktop.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org> >> Subject: Re: [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement >> >> This one properly in purpose , The mqd init for CP and COMPUTE will >> have the same routine . >> >> Regard >> >> sshaoyun.liu >> >> On 2019-07-21 6:59 p.m., Gustavo A. R. Silva wrote: >>> Add missing break statement in order to prevent the code from falling >>> through to case KFD_MQD_TYPE_COMPUTE. >>> >>> This bug was found thanks to the ongoing efforts to enable >>> -Wimplicit-fallthrough. >>> >>> Fixes: 14328aa58ce5 ("drm/amdkfd: Add navi10 support to amdkfd. (v3)") >>> Cc: stable@vger.kernel.org >>> Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> >>> --- >>> drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c | 1 + >>> 1 file changed, 1 insertion(+) >>> >>> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c >>> index 4f8a6ffc5775..1d8b13ad46f9 100644 >>> --- a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c >>> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c >>> @@ -430,6 +430,7 @@ struct mqd_manager *mqd_manager_init_v10(enum KFD_MQD_TYPE type, >>> switch (type) { >>> case KFD_MQD_TYPE_CP: >>> pr_debug("%s@%i\n", __func__, __LINE__); >>> + break; >>> case KFD_MQD_TYPE_COMPUTE: >>> pr_debug("%s@%i\n", __func__, __LINE__); >>> mqd->allocate_mqd = allocate_mqd; ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-07-22 17:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-21 22:59 [PATCH] drm/amdkfd/kfd_mqd_manager_v10: Fix missing break in switch statement Gustavo A. R. Silva
2019-07-22 15:14 ` Liu, Shaoyun
[not found] ` <BN6PR12MB18098741A081711936563597F7C40@BN6PR12MB1809.namprd12.prod.outlook.com>
2019-07-22 16:13 ` Gustavo A. R. Silva
2019-07-22 17:43 ` Liu, Shaoyun
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox