All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms@kernel.org>
To: Breno Leitao <leitao@debian.org>
Cc: kuba@kernel.org, davem@davemloft.net, edumazet@google.com,
	pabeni@redhat.com, thepacketgeek@gmail.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	davej@codemonkey.org.uk, vlad.wing@gmail.com, max@kutsevol.com
Subject: Re: [PATCH net-next v2 08/10] net: netconsole: do not pass userdata up to the tail
Date: Mon, 9 Sep 2024 17:05:28 +0100	[thread overview]
Message-ID: <20240909160528.GD2097826@kernel.org> (raw)
In-Reply-To: <20240909130756.2722126-9-leitao@debian.org>

On Mon, Sep 09, 2024 at 06:07:49AM -0700, Breno Leitao wrote:
> Do not pass userdata to send_msg_fragmented, since we can get it later.
> 
> This will be more useful in the next patch, where send_msg_fragmented()
> will be split even more, and userdata is only necessary in the last
> function.
> 
> Suggested-by: Simon Horman <horms@kernel.org>
> Signed-off-by: Breno Leitao <leitao@debian.org>

...

> @@ -1094,7 +1098,6 @@ static void append_release(char *buf)
>  
>  static void send_msg_fragmented(struct netconsole_target *nt,
>  				const char *msg,
> -				const char *userdata,
>  				int msg_len,
>  				int release_len)
>  {
> @@ -1103,8 +1106,10 @@ static void send_msg_fragmented(struct netconsole_target *nt,
>  	int offset = 0, userdata_len = 0;
>  	const char *header, *msgbody;
>  
> -	if (userdata)
> -		userdata_len = nt->userdata_length;
> +#ifdef CONFIG_NETCONSOLE_DYNAMIC
> +	userdata = nt->userdata_complete;
> +	userdata_len = nt->userdata_length;
> +#endif

userdata does not appear to be declared in this scope :(

.../netconsole.c:1110:9: error: 'userdata' undeclared (first use in this function)
 1110 |         userdata = nt->userdata_complete;

>  
>  	/* need to insert extra header fields, detect header and msgbody */
>  	header = msg;

...

  reply	other threads:[~2024-09-09 16:05 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-09 13:07 [PATCH net-next v2 00/10] netconsole refactoring and warning fix Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 01/10] net: netconsole: remove msg_ready variable Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 02/10] net: netconsole: split send_ext_msg_udp() function Breno Leitao
2024-09-09 15:58   ` Simon Horman
2024-09-09 13:07 ` [PATCH net-next v2 03/10] net: netconsole: separate fragmented message handling in send_ext_msg Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 04/10] net: netconsole: rename body to msg_body Breno Leitao
2024-09-09 16:03   ` Simon Horman
2024-09-09 13:07 ` [PATCH net-next v2 05/10] net: netconsole: introduce variable to track body length Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 06/10] net: netconsole: track explicitly if msgbody was written to buffer Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 07/10] net: netconsole: extract release appending into separate function Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 08/10] net: netconsole: do not pass userdata up to the tail Breno Leitao
2024-09-09 16:05   ` Simon Horman [this message]
2024-09-10  9:44     ` Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 09/10] net: netconsole: split send_msg_fragmented Breno Leitao
2024-09-09 13:07 ` [PATCH net-next v2 10/10] net: netconsole: fix wrong warning Breno Leitao

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=20240909160528.GD2097826@kernel.org \
    --to=horms@kernel.org \
    --cc=davej@codemonkey.org.uk \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=leitao@debian.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=max@kutsevol.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=thepacketgeek@gmail.com \
    --cc=vlad.wing@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.