Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1198370 > unrolled thread

Re: [PATCH 02/10] nbd: restructure sock_shutdown

Started byPavel Machek <pavel@ucw.cz>
First post2015-08-02 09:10 +0200
Last post2015-08-02 09:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH 02/10] nbd: restructure sock_shutdown Pavel Machek <pavel@ucw.cz> - 2015-08-02 09:10 +0200

#1198370 — Re: [PATCH 02/10] nbd: restructure sock_shutdown

FromPavel Machek <pavel@ucw.cz>
Date2015-08-02 09:10 +0200
SubjectRe: [PATCH 02/10] nbd: restructure sock_shutdown
Message-ID<pSVzb-54S-9@gated-at.bofh.it>
On Mon 2015-07-27 09:12:48, Markus Pargmann wrote:
> This patch restructures sock_shutdown to avoid having the main code path
> in an if block.
> 
> Signed-off-by: Markus Pargmann <mpa@pengutronix.de>

Acked-by: Pavel Machek <pavel@ucw.cz>


> ---
>  drivers/block/nbd.c | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c
> index ff59093c5dc1..2c3661e4d364 100644
> --- a/drivers/block/nbd.c
> +++ b/drivers/block/nbd.c
> @@ -119,12 +119,13 @@ static void nbd_end_request(struct nbd_device *nbd, struct request *req)
>   */
>  static void sock_shutdown(struct nbd_device *nbd)
>  {
> -	if (nbd->sock) {
> -		dev_warn(disk_to_dev(nbd->disk), "shutting down socket\n");
> -		kernel_sock_shutdown(nbd->sock, SHUT_RDWR);
> -		nbd->sock = NULL;
> -		del_timer_sync(&nbd->timeout_timer);
> -	}
> +	if (!nbd->sock)
> +		return;
> +
> +	dev_warn(disk_to_dev(nbd->disk), "shutting down socket\n");
> +	kernel_sock_shutdown(nbd->sock, SHUT_RDWR);
> +	nbd->sock = NULL;
> +	del_timer_sync(&nbd->timeout_timer);
>  }
>  
>  static void nbd_xmit_timeout(unsigned long arg)

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web