Re: [PATCH] hns3: work around stack size warning

From: Arnd Bergmann
Date: Mon Jun 23 2025 - 03:13:36 EST


On Mon, Jun 23, 2025, at 08:21, Jijie Shao wrote:
> on 2025/6/23 13:56, Arnd Bergmann wrote:
>>
>>> - sprintf(result[j++], "%u", index);
>>> - sprintf(result[j++], "%u", readl_relaxed(ring->tqp->io_base +
>>> - HNS3_RING_TX_RING_BD_NUM_REG));
>>> + seq_printf(s, "%-4u%6s", index, " ");
>>> + seq_printf(s, "%-5u%3s",
>>> + readl_relaxed(base + HNS3_RING_TX_RING_BD_NUM_REG), " ");
>> I'm not sure I understand the format string changes here, I did
>> not think they were necessary.
>>
>> Are you doing this to keep the output the same as before, or are
>> you reformatting the contents for readability?
>
> yeah, just to keep the output the same as before

Ok.

>>> +static int hns3_dbg_common_init_t1(struct hnae3_handle *handle, u32
>>> cmd)
>>> +{
>>> +    struct device *dev = &handle->pdev->dev;
>>> +    struct dentry *entry_dir;
>>> +    read_func func = NULL;
>>> +
>>> +    switch (hns3_dbg_cmd[cmd].cmd) {
>>> +    case HNAE3_DBG_CMD_TX_QUEUE_INFO:
>>> +        func = hns3_dbg_tx_queue_info;
>>> +        break;
>>> +    default:
>>> +        return -EINVAL;
>>> +    }
>>> +
>>> +    entry_dir = hns3_dbg_dentry[hns3_dbg_cmd[cmd].dentry].dentry;
>>> +    debugfs_create_devm_seqfile(dev, hns3_dbg_cmd[cmd].name, entry_dir,
>>> +                    func);
>>> +
>>> +    return 0;
>> This will work fine as well, but I think you can do slightly better
>> by having your own file_operations with a read function based
>> on single_open() and your current hns3_dbg_read_cmd().
>>
>> I don't think you gain anything from using debugfs_create_devm_seqfile()
>> since you use debugfs_remove_recursive() for cleaning it up anyway.
>
> Using debugfs_create_devm_seqfile() is just to simplify the code.
> We only need to focus on the implementation of .read() function.

What I meant is that it doesn't seem simpler to me, as it adds one
level of indirection to both the file creation and the read()
function compared to having a single_open() helpe with that
switch()/case or the corresponding hns3_dbg_cmd_func[] array.

Either way, I'm not worried about it, there is no actual problem
that I see with your version.

Arnd