From nobody Tue Dec 16 21:51:33 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4DAA7C0032E for ; Sat, 28 Oct 2023 16:05:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229468AbjJ1QFK (ORCPT ); Sat, 28 Oct 2023 12:05:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53226 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229446AbjJ1QFI (ORCPT ); Sat, 28 Oct 2023 12:05:08 -0400 Received: from smtp.smtpout.orange.fr (smtp-15.smtpout.orange.fr [80.12.242.15]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9EE74ED for ; Sat, 28 Oct 2023 09:05:04 -0700 (PDT) Received: from pop-os.home ([86.243.2.178]) by smtp.orange.fr with ESMTPA id wlo5q1cN8yBwnwlo6qKaMv; Sat, 28 Oct 2023 18:05:03 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=wanadoo.fr; s=t20230301; t=1698509103; bh=lJV0nrXGftDw+3aoT/GoqGQ9MO17enJwu7GrGnJ+O5s=; h=From:To:Cc:Subject:Date; b=m2c4u+Ew1ymLvM7aeveClQml6joGS6GtBS/tZTl21IhQB0cobcEtGP1V2iVVyi3Gn 8gnVIMtkaBD96x9AJvnMpQA0Sb5LTYM/xzYCpQWQ4fcIrRO99EARgVybpzQOKWRyg8 qVB6OYn9fNjCIbKMUj+06GIB/8Flz7EueT+1TEFob++hnkxZM0WKUoXHn0gZAVcauP cJc3ie0Vs6AbpXi/nFyUIofgBQtlsGWKTRnI4Gv67UVWUWojLBQJeFh1B+Cq69vNYt tM9WHgAvwBVlEp3OJzNKzWQlZUJNggzNnqU/wVeoFjvOrcUDhnPdG9A7O8p+9A/hDo 7qxkmxbxWNtMQ== X-ME-Helo: pop-os.home X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Sat, 28 Oct 2023 18:05:03 +0200 X-ME-IP: 86.243.2.178 From: Christophe JAILLET To: Minas Harutyunyan , Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET , linux-usb@vger.kernel.org Subject: [PATCH v2] usb: dwc2: Use seq_buf instead of hand writing it Date: Sat, 28 Oct 2023 18:05:00 +0200 Message-Id: <4eafde20b0fb4894a00f9749a2b17e847a7efa8c.1698509078.git.christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" cat_printf() re-implements what the seq_buf API does. So, switch to the seq_buf API to save some line of code. Signed-off-by: Christophe JAILLET --- seq_buf_printf(&buf, ", "); could be seq_buf_puts(), but the result could be slightly different. So I kept a conservative approach. If only some seq_buf_printf() are used, the final seq_buf_terminate() can be avoided, but I think it is cleaner with it. Changes in v2: - compile tested with DWC2_PRINT_SCHEDULE defined - Fix some built issues v1: https://lore.kernel.org/all/4c8b71efe4fe05ed0cc37f33ef774746d4d55299.16= 98489641.git.christophe.jaillet@wanadoo.fr/ --- drivers/usb/dwc2/hcd_queue.c | 53 ++++++++---------------------------- 1 file changed, 11 insertions(+), 42 deletions(-) diff --git a/drivers/usb/dwc2/hcd_queue.c b/drivers/usb/dwc2/hcd_queue.c index 0d4495c6b9f7..4edb87c4247c 100644 --- a/drivers/usb/dwc2/hcd_queue.c +++ b/drivers/usb/dwc2/hcd_queue.c @@ -18,6 +18,7 @@ #include #include #include +#include =20 #include #include @@ -359,41 +360,6 @@ static unsigned long *dwc2_get_ls_map(struct dwc2_hsot= g *hsotg, } =20 #ifdef DWC2_PRINT_SCHEDULE -/* - * cat_printf() - A printf() + strcat() helper - * - * This is useful for concatenating a bunch of strings where each string is - * constructed using printf. - * - * @buf: The destination buffer; will be updated to point after the prin= ted - * data. - * @size: The number of bytes in the buffer (includes space for '\0'). - * @fmt: The format for printf. - * @...: The args for printf. - */ -static __printf(3, 4) -void cat_printf(char **buf, size_t *size, const char *fmt, ...) -{ - va_list args; - int i; - - if (*size =3D=3D 0) - return; - - va_start(args, fmt); - i =3D vsnprintf(*buf, *size, fmt, args); - va_end(args); - - if (i >=3D *size) { - (*buf)[*size - 1] =3D '\0'; - *buf +=3D *size; - *size =3D 0; - } else { - *buf +=3D i; - *size -=3D i; - } -} - /* * pmap_print() - Print the given periodic map * @@ -417,8 +383,7 @@ static void pmap_print(unsigned long *map, int bits_per= _period, =20 for (period =3D 0; period < periods_in_map; period++) { char tmp[64]; - char *buf =3D tmp; - size_t buf_size =3D sizeof(tmp); + struct seq_buf s; int period_start =3D period * bits_per_period; int period_end =3D period_start + bits_per_period; int start =3D 0; @@ -426,6 +391,8 @@ static void pmap_print(unsigned long *map, int bits_per= _period, bool printed =3D false; int i; =20 + seq_buf_init(&s, tmp, sizeof(tmp)); + for (i =3D period_start; i < period_end + 1; i++) { /* Handle case when ith bit is set */ if (i < period_end && @@ -442,17 +409,19 @@ static void pmap_print(unsigned long *map, int bits_p= er_period, continue; =20 if (!printed) - cat_printf(&buf, &buf_size, "%s %d: ", - period_name, period); + seq_buf_printf(&s, "%s %d: ", period_name, + period); else - cat_printf(&buf, &buf_size, ", "); + seq_buf_printf(&s, ", "); printed =3D true; =20 - cat_printf(&buf, &buf_size, "%d %s -%3d %s", start, - units, start + count - 1, units); + seq_buf_printf(&s, "%d %s -%3d %s", start, units, + start + count - 1, units); count =3D 0; } =20 + seq_buf_terminate(&s); + if (printed) print_fn(tmp, print_data); } --=20 2.34.1