mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Thorsten Blum <thorsten.blum@linux.dev>
To: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH RESEND] parport: Replace kmalloc() + strcpy() with kstrdup() in parse_data()
Date: Mon, 31 Aug 2026 10:29:33 +0200	[thread overview]
Message-ID: <apU7bUb2T1NqAdy2@linux.dev> (raw)
In-Reply-To: <20260727102422.412065-2-thorsten.blum@linux.dev>

On Mon, Jul 27, 2026 at 12:24:23PM +0200, Thorsten Blum wrote:
> Replace kmalloc() followed by strcpy() with a single call to kstrdup()
> to simplify parse_data().
> 
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> ---
>  drivers/parport/probe.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/parport/probe.c b/drivers/parport/probe.c
> index 5d1b9aacb130..bf9d81c0abaf 100644
> --- a/drivers/parport/probe.c
> +++ b/drivers/parport/probe.c
> @@ -52,7 +52,7 @@ static void pretty_print(struct parport *port, int device)
>  
>  static void parse_data(struct parport *port, int device, char *str)
>  {
> -	char *txt = kmalloc(strlen(str)+1, GFP_KERNEL);
> +	char *txt = kstrdup(str, GFP_KERNEL);
>  	char *p = txt, *q;
>  	int guessed_class = PARPORT_CLASS_UNSPEC;
>  	struct parport_device_info *info = &port->probe_info[device + 1];
> @@ -61,7 +61,6 @@ static void parse_data(struct parport *port, int device, char *str)
>  		pr_warn("%s probe: memory squeeze\n", port->name);
>  		return;
>  	}
> -	strcpy(txt, str);
>  	while (p) {
>  		char *sep;
>  		q = strchr(p, ';');

I've resent this cleanup a few times since April and haven't received
any feedback. It's intended to be a mechanical cleanup with no
functional changes.

Adding Andrew to Cc.

Thanks,
Thorsten

      reply	other threads:[~2026-08-31  8:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-27 10:24 Thorsten Blum
2026-08-31  8:29 ` Thorsten Blum [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=apU7bUb2T1NqAdy2@linux.dev \
    --to=thorsten.blum@linux.dev \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sudipm.mukherjee@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®