From: Nirmoy Das <nirmoy.das@linux.intel.com>
To: imre.deak@intel.com, Nirmoy Das <nirmoy.das@intel.com>,
intel-gfx@lists.freedesktop.org,
Mika Kahola <mika.kahola@intel.com>,
Jani Nikula <jani.nikula@intel.com>
Subject: Re: [Intel-gfx] [PATCH v2] drm/i915/tc: Fix -Wformat-truncation in intel_tc_port_init
Date: Thu, 26 Oct 2023 12:15:26 +0200 [thread overview]
Message-ID: <96d3e8f1-ebeb-6849-a0e9-ba07b89946a0@linux.intel.com> (raw)
In-Reply-To: <ZTo7Qv6eZbzrQYj9@ideak-desk.fi.intel.com>
On 10/26/2023 12:11 PM, Imre Deak wrote:
> On Thu, Oct 26, 2023 at 12:05:13PM +0300, Imre Deak wrote:
>> On Wed, Oct 25, 2023 at 07:08:34PM +0200, Nirmoy Das wrote:
>>> Fix below compiler warning:
>>>
>>> intel_tc.c:1879:11: error: ‘%d’ directive output may be truncated
>>> writing between 1 and 11 bytes into a region of size 3
>>> [-Werror=format-truncation=]
>>> "%c/TC#%d", port_name(port), tc_port + 1);
>>> ^~
>>> intel_tc.c:1878:2: note: ‘snprintf’ output between 7 and 17 bytes
>>> into a destination of size 8
>>> snprintf(tc->port_name, sizeof(tc->port_name),
>>> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>> "%c/TC#%d", port_name(port), tc_port + 1);
>>> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>>
>>> v2: use kasprintf(Imre)
>>>
>>> Fixes: 3eafcddf766b ("drm/i915/tc: Move TC port fields to a new intel_tc_port struct")
>>> Cc: Mika Kahola <mika.kahola@intel.com>
>>> Cc: Imre Deak <imre.deak@intel.com>
>>> Cc: Jani Nikula <jani.nikula@intel.com>
>>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
>> Reviewed-by: Imre Deak <imre.deak@intel.com>
>>
>> Nit: port_name could be const.
>>
>>> ---
>>> drivers/gpu/drm/i915/display/intel_tc.c | 9 ++++++---
>>> 1 file changed, 6 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
>>> index 37b0f8529b4f..0fa54450d51b 100644
>>> --- a/drivers/gpu/drm/i915/display/intel_tc.c
>>> +++ b/drivers/gpu/drm/i915/display/intel_tc.c
>>> @@ -58,7 +58,7 @@ struct intel_tc_port {
>>> struct delayed_work link_reset_work;
>>> int link_refcount;
>>> bool legacy_port:1;
>>> - char port_name[8];
>>> + char *port_name;
>>> enum tc_port_mode mode;
>>> enum tc_port_mode init_mode;
>>> enum phy_fia phy_fia;
>>> @@ -1875,8 +1875,10 @@ int intel_tc_port_init(struct intel_digital_port *dig_port, bool is_legacy)
>>> else
>>> tc->phy_ops = &icl_tc_phy_ops;
>>>
>>> - snprintf(tc->port_name, sizeof(tc->port_name),
>>> - "%c/TC#%d", port_name(port), tc_port + 1);
>>> + tc->port_name = kasprintf(GFP_KERNEL, "%c/TC#%d", port_name(port),
>>> + tc_port + 1);
>>> + if (!tc->port_name)
>>> + return -ENOMEM;
> Missed it, but this needs to free tc;
Oh, thanks for catching it.
Regards,
Nirmoy
>
>>>
>>> mutex_init(&tc->lock);
>>> /* TODO: Combine the two works */
>>> @@ -1897,6 +1899,7 @@ void intel_tc_port_cleanup(struct intel_digital_port *dig_port)
>>> {
>>> intel_tc_port_suspend(dig_port);
>>>
>>> + kfree(dig_port->tc->port_name);
>>> kfree(dig_port->tc);
>>> dig_port->tc = NULL;
>>> }
>>> --
>>> 2.41.0
>>>
prev parent reply other threads:[~2023-10-26 10:15 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-25 17:08 [Intel-gfx] [PATCH v2] drm/i915/tc: Fix -Wformat-truncation in intel_tc_port_init Nirmoy Das
2023-10-25 18:54 ` Andrzej Hajda
2023-10-25 23:54 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/tc: Fix -Wformat-truncation in intel_tc_port_init (rev2) Patchwork
2023-10-26 9:05 ` [Intel-gfx] [PATCH v2] drm/i915/tc: Fix -Wformat-truncation in intel_tc_port_init Imre Deak
2023-10-26 10:11 ` Imre Deak
2023-10-26 10:15 ` Nirmoy Das [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=96d3e8f1-ebeb-6849-a0e9-ba07b89946a0@linux.intel.com \
--to=nirmoy.das@linux.intel.com \
--cc=imre.deak@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--cc=mika.kahola@intel.com \
--cc=nirmoy.das@intel.com \
/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