From: Babu Moger <babu.moger@amd.com>
To: Wei Huang <wei.huang2@amd.com>,
tglx@linutronix.de, mingo@redhat.com, bp@alien8.de
Cc: fenghua.yu@intel.com, Terry.Bowman@amd.com, x86@kernel.org,
linux-kernel@vger.kernel.org, hpa@zytor.com,
reinette.chatre@intel.com
Subject: Re: [PATCH] x86/resctrl: Fix 'uninitialized symbol' build warning
Date: Fri, 20 Aug 2021 13:58:03 -0500 [thread overview]
Message-ID: <1c81318c-c5d5-241a-ed32-bf6ba3ec56d4@amd.com> (raw)
In-Reply-To: <d0450e83-8e31-611f-5224-12742764e4d0@amd.com>
On 8/20/21 11:40 AM, Wei Huang wrote:
>
>
> On 8/20/21 11:33 AM, Babu Moger wrote:
>> The recent commit 064855a69003 ("x86/resctrl: Fix default monitoring
>> groups reporting"), caused a RHEL8.5 build failure with an uninitialized
>
> Don't mention RHEL in the commit message, just use "commercial Linux
> distro".
Talked to Wei on this. I will replace RHEL8.5 with just RHEL.
>
>> variable warning treated as an error. The commit removed the default case
>> snippet. The RHEL8.5 Makefile uses '-Werror=maybe-uninitialized' to force
>
> Ditto
Same as above.
>
>> uninitialized variable warnings to be treated as errors. This is also
>> reported by kernel test robot. The error from the RHEL8.5 build is below:
>>
>> arch/x86/kernel/cpu/resctrl/monitor.c: In function ‘__mon_event_count’:
>> arch/x86/kernel/cpu/resctrl/monitor.c:261:12: error: ‘m’ may be used
>> uninitialized in this function [-Werror=maybe-uninitialized]
>> m->chunks += chunks;
>> ^~
>>
>> The upstream Makefile does not build using '-Werror=maybe-uninitialized'.
>> So, the problem is not seen there. Fix the problem by putting back the
>> default case snippet.
>>
>> Fixes: 064855a69003 ("x86/resctrl: Fix default monitoring groups reporting")
>> Cc: stable@vger.kernel.org
>> Reported-by: Terry Bowman <Terry.Bowman@amd.com>
>> Reported-by: kernel test robot <lkp@intel.com>
>> Link: https://lore.kernel.org/lkml/6118d218.4ZZRXYKZCzQSq1Km%25lkp@intel.com/
>>
>> Signed-off-by: Babu Moger <babu.moger@amd.com>
>> ---
>> arch/x86/kernel/cpu/resctrl/monitor.c | 6 ++++++
>> 1 file changed, 6 insertions(+)
>>
>> diff --git a/arch/x86/kernel/cpu/resctrl/monitor.c b/arch/x86/kernel/cpu/resctrl/monitor.c
>> index 57e4bb695ff9..8caf871b796f 100644
>> --- a/arch/x86/kernel/cpu/resctrl/monitor.c
>> +++ b/arch/x86/kernel/cpu/resctrl/monitor.c
>> @@ -304,6 +304,12 @@ static u64 __mon_event_count(u32 rmid, struct rmid_read *rr)
>> case QOS_L3_MBM_LOCAL_EVENT_ID:
>> m = &rr->d->mbm_local[rmid];
>> break;
>> + default:
>> + /*
>> + * Code would never reach here because an invalid
>> + * event id would fail the __rmid_read.
>> + */
>> + return RMID_VAL_ERROR;
>> }
>
> It used to return -EINVAL, you might want to do the same?
No. The function prototype has changed a bit. We have to return
RMID_VAL_ERROR(u64).
Thanks
Babu
>
>>
>> if (rr->first) {
>>
prev parent reply other threads:[~2021-08-20 18:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-20 16:33 Babu Moger
2021-08-20 16:37 ` Reinette Chatre
2021-08-20 16:40 ` Wei Huang
2021-08-20 18:58 ` Babu Moger [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1c81318c-c5d5-241a-ed32-bf6ba3ec56d4@amd.com \
--to=babu.moger@amd.com \
--cc=Terry.Bowman@amd.com \
--cc=bp@alien8.de \
--cc=fenghua.yu@intel.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=reinette.chatre@intel.com \
--cc=tglx@linutronix.de \
--cc=wei.huang2@amd.com \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®