Re: [PATCH] usb: replace strcpy() with strscpy()

2025-03-01 Thread kernel test robot
e: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing patch link: https://lore.kernel.org/r/DEF7EF73-12C4-4F30-BC14-DD829F0C6884%40live.com patch subject: [PATCH] usb: replace strcpy() with strscpy() config: arm-qcom_defconfig (https://download.01.org/0day-ci/archiv

Re: [PATCH] usb: replace strcpy() with strscpy()

2025-03-01 Thread kernel test robot
e: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing patch link: https://lore.kernel.org/r/DEF7EF73-12C4-4F30-BC14-DD829F0C6884%40live.com patch subject: [PATCH] usb: replace strcpy() with strscpy() config: csky-randconfig-002-20250302 (https://download.01.org/0day-

Re: [PATCH] usb: replace strcpy() with strscpy()

2025-02-28 Thread Aditya Garg
> On 28 Feb 2025, at 10:33 PM, gre...@linuxfoundation.org wrote: > > On Fri, Feb 28, 2025 at 03:07:03PM +, Aditya Garg wrote: >> From: Aditya Garg >> >> The strcpy() function has been deprecated and replaced with strscpy(). >> This patch shall replace it in the whole USB tree. >> >> Link

[PATCH] usb: replace strcpy() with strscpy()

2025-02-28 Thread Aditya Garg
From: Aditya Garg The strcpy() function has been deprecated and replaced with strscpy(). This patch shall replace it in the whole USB tree. Link: https://github.com/KSPP/linux/issues/88 Signed-off-by: Aditya Garg --- drivers/usb/atm/ueagle-atm.c | 2 +- drivers/usb/gadget/configfs.c

Re: [PATCH] usb: replace strcpy() with strscpy()

2025-02-28 Thread gre...@linuxfoundation.org
On Fri, Feb 28, 2025 at 03:07:03PM +, Aditya Garg wrote: > From: Aditya Garg > > The strcpy() function has been deprecated and replaced with strscpy(). > This patch shall replace it in the whole USB tree. > > Link: https://github.com/KSPP/linux/issues/88 > Signed-off-by: Aditya Garg As the