The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Markus Pargmann <mpa@allfex.org>
To: nbd-general@lists.sourceforge.net
Cc: Dmitry Monakhov <dmonakhov@openvz.org>, linux-kernel@vger.kernel.org
Subject: Re: [Nbd] [PATCH] nbd: ratelimit error messages from disconnected devices
Date: Sun, 21 Feb 2016 14:48:08 +0100	[thread overview]
Message-ID: <1689019.lyAuorBep0@galactica> (raw)
In-Reply-To: <1455618781-26306-1-git-send-email-dmonakhov@openvz.org>

[-- Attachment #1: Type: text/plain, Size: 1761 bytes --]

Hi,

On Tuesday 16 February 2016 14:33:01 Dmitry Monakhov wrote:
> ndb can be explicitly disconnected via NBD_DISCONNECT while
> active user still exists this result in massive spam to logs.
> Let's ratelimits such messages.
> 
> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> ---
>  drivers/block/nbd.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c
> index e4c5cc1..2dbe840 100644
> --- a/drivers/block/nbd.c
> +++ b/drivers/block/nbd.c
> @@ -175,7 +175,7 @@ static int sock_xmit(struct nbd_device *nbd, int send, void *buf, int size,
>  	unsigned long pflags = current->flags;
>  
>  	if (unlikely(!sock)) {
> -		dev_err(disk_to_dev(nbd->disk),
> +		dev_err_ratelimited(disk_to_dev(nbd->disk),
>  			"Attempted %s on closed socket in sock_xmit\n",

Please indent to the first opening bracket.

>  			(send ? "send" : "recv"));
>  		return -EINVAL;
> @@ -509,7 +509,7 @@ static void nbd_handle_req(struct nbd_device *nbd, struct request *req)
>  	mutex_lock(&nbd->tx_lock);
>  	if (unlikely(!nbd->sock)) {
>  		mutex_unlock(&nbd->tx_lock);
> -		dev_err(disk_to_dev(nbd->disk),
> +		dev_err_ratelimited(disk_to_dev(nbd->disk),
>  			"Attempted send on closed socket\n");
>  		goto error_out;
>  	}
> @@ -618,7 +618,7 @@ static void nbd_request_handler(struct request_queue *q)
>  			req, req->cmd_type);
>  
>  		if (unlikely(!nbd->sock)) {
> -			dev_err(disk_to_dev(nbd->disk),
> +			dev_err_ratelimited(disk_to_dev(nbd->disk),
>  				"Attempted send on closed socket\n");

This conflicts with a patch already applied fixing the same.
Please rebase onto nbd master [1]

Best Regards,

Markus

[1] http://git.pengutronix.de/?p=mpa/linux-nbd.git;a=shortlog;h=refs/heads/master

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

      reply	other threads:[~2016-02-21 18:37 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-16 10:33 [PATCH] nbd: ratelimit error messages from disconnected devices Dmitry Monakhov
2016-02-21 13:48 ` Markus Pargmann [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=1689019.lyAuorBep0@galactica \
    --to=mpa@allfex.org \
    --cc=dmonakhov@openvz.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nbd-general@lists.sourceforge.net \
    /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