On Sat, Nov 11, 2023 at 6:18 AM Shannon Nelson <[email protected]> wrote: > > Our friendly kernel test robot has recently been pointing out > some format-truncation issues. Here's a fix for one of them. > > Reported-by: kernel test robot <[email protected]> > Closes: > https://lore.kernel.org/oe-kbuild-all/[email protected]/ > Signed-off-by: Shannon Nelson <[email protected]>
Acked-by: Jason Wang <[email protected]> I think this is needed for -stable? Thanks > --- > drivers/vdpa/pds/debugfs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/vdpa/pds/debugfs.c b/drivers/vdpa/pds/debugfs.c > index 9b04aad6ec35..c328e694f6e7 100644 > --- a/drivers/vdpa/pds/debugfs.c > +++ b/drivers/vdpa/pds/debugfs.c > @@ -261,7 +261,7 @@ void pds_vdpa_debugfs_add_vdpadev(struct pds_vdpa_aux > *vdpa_aux) > debugfs_create_file("config", 0400, vdpa_aux->dentry, vdpa_aux->pdsv, > &config_fops); > > for (i = 0; i < vdpa_aux->pdsv->num_vqs; i++) { > - char name[8]; > + char name[16]; > > snprintf(name, sizeof(name), "vq%02d", i); > debugfs_create_file(name, 0400, vdpa_aux->dentry, > -- > 2.17.1 >
