[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <be4598a3-7880-4efc-a1c7-d5093f4c9eaf@gmail.com>
Date: Wed, 11 Jun 2025 21:16:37 +0200
From: Heiner Kallweit <hkallweit1@...il.com>
To: Thangaraj.S@...rochip.com, andrew+netdev@...n.ch, davem@...emloft.net,
Rengarajan.S@...rochip.com, kuba@...nel.org, pabeni@...hat.com,
edumazet@...gle.com, UNGLinuxDriver@...rochip.com
Cc: linux-usb@...r.kernel.org, netdev@...r.kernel.org
Subject: Re: [PATCH v2 net-next] net: usb: lan78xx: make struct fphy_status
static const
On 11.06.2025 09:02, Thangaraj.S@...rochip.com wrote:
> Hi Heiner,
> Thanks for the patch
> On Tue, 2025-06-10 at 22:58 +0200, Heiner Kallweit wrote:
>> EXTERNAL EMAIL: Do not click links or open attachments unless you
>> know the content is safe
>>
>> Constify variable fphy_status and make it static.
>>
>> Signed-off-by: Heiner Kallweit <hkallweit1@...il.com>
>> ---
>> v2:
>> - extend commit message
>> ---
>> drivers/net/usb/lan78xx.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/usb/lan78xx.c b/drivers/net/usb/lan78xx.c
>> index 759dab980..17c23eada 100644
>> --- a/drivers/net/usb/lan78xx.c
>> +++ b/drivers/net/usb/lan78xx.c
>> @@ -2630,7 +2630,7 @@ static int lan78xx_configure_flowcontrol(struct
>> lan78xx_net *dev,
>> */
>> static struct phy_device *lan78xx_register_fixed_phy(struct
>> lan78xx_net *dev)
>> {
>> - struct fixed_phy_status fphy_status = {
>> + static const struct fixed_phy_status fphy_status = {
>> .link = 1,
>> .speed = SPEED_1000,
>> .duplex = DUPLEX_FULL,
>> --
>> 2.49.0
>>
>
> This patch changes fphy_status to static const, but as far as I can tell,the function is only called once during probe, and the struct is
> initialized and used immediately. Since it's not reused and doesn't
> need to persist beyond the function call, I don't see a clear reason
> for making it static const. Is there a specific motivation behind this
> change?
>
>From a compiler perspective there's not much of a difference, also as of today
the compiler uses a pre-filled struct instead of creating it dynamically.
At least that's the case for me with gcc 15.1.1. Just that with the change
the prefilled struct is properly placed in the rodata segment.
Main reason is to make clear to the reader, and to the compiler, that this
is immutable configuration data. Not different from e.g. regmap users, where
typically a static const struct regmap_config is used for initialization.
> Thanks,
> Thangaraj Samynathan
Heiner
Powered by blists - more mailing lists