netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Vlad Yasevich <vyasevich@gmail.com>
To: Daniel Borkmann <dborkman@redhat.com>
Cc: davem@davemloft.net, netdev@vger.kernel.org, linux-sctp@vger.kernel.org
Subject: Re: [PATCH net-next 2/2] net: sctp: minor: make sctp_ep_common's member 'dead' a bool
Date: Mon, 15 Apr 2013 10:05:21 -0400	[thread overview]
Message-ID: <516C0921.1060703@gmail.com> (raw)
In-Reply-To: <1366032438-4412-2-git-send-email-dborkman@redhat.com>

On 04/15/2013 09:27 AM, Daniel Borkmann wrote:
> Since dead only holds two states (0,1), make it a bool instead
> of a 'char', which is more appropriate for its purpose.
>
> Signed-off-by: Daniel Borkmann <dborkman@redhat.com>

Acked-by: Vlad Yasevich <vyasevich@gmail.com>

> ---
>   include/net/sctp/structs.h | 2 +-
>   net/sctp/associola.c       | 4 ++--
>   net/sctp/endpointola.c     | 4 ++--
>   3 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
> index 3e80eed..e12aa77 100644
> --- a/include/net/sctp/structs.h
> +++ b/include/net/sctp/structs.h
> @@ -1176,7 +1176,7 @@ struct sctp_ep_common {
>   	 *   dead     - Do not attempt to use this object.
>   	 */
>   	atomic_t    refcnt;
> -	char	    dead;
> +	bool	    dead;
>
>   	/* What socket does this endpoint belong to?  */
>   	struct sock *sk;
> diff --git a/net/sctp/associola.c b/net/sctp/associola.c
> index b893aa6..423549a 100644
> --- a/net/sctp/associola.c
> +++ b/net/sctp/associola.c
> @@ -104,7 +104,7 @@ static struct sctp_association *sctp_association_init(struct sctp_association *a
>
>   	/* Initialize the object handling fields.  */
>   	atomic_set(&asoc->base.refcnt, 1);
> -	asoc->base.dead = 0;
> +	asoc->base.dead = false;
>
>   	/* Initialize the bind addr area.  */
>   	sctp_bind_addr_init(&asoc->base.bind_addr, ep->base.bind_addr.port);
> @@ -407,7 +407,7 @@ void sctp_association_free(struct sctp_association *asoc)
>   	/* Mark as dead, so other users can know this structure is
>   	 * going away.
>   	 */
> -	asoc->base.dead = 1;
> +	asoc->base.dead = true;
>
>   	/* Dispose of any data lying around in the outqueue. */
>   	sctp_outq_free(&asoc->outqueue);
> diff --git a/net/sctp/endpointola.c b/net/sctp/endpointola.c
> index 46bbfc2..5fbd7bc 100644
> --- a/net/sctp/endpointola.c
> +++ b/net/sctp/endpointola.c
> @@ -121,7 +121,7 @@ static struct sctp_endpoint *sctp_endpoint_init(struct sctp_endpoint *ep,
>
>   	/* Initialize the basic object fields. */
>   	atomic_set(&ep->base.refcnt, 1);
> -	ep->base.dead = 0;
> +	ep->base.dead = false;
>
>   	/* Create an input queue.  */
>   	sctp_inq_init(&ep->base.inqueue);
> @@ -233,7 +233,7 @@ void sctp_endpoint_add_asoc(struct sctp_endpoint *ep,
>    */
>   void sctp_endpoint_free(struct sctp_endpoint *ep)
>   {
> -	ep->base.dead = 1;
> +	ep->base.dead = true;
>
>   	ep->base.sk->sk_state = SCTP_SS_CLOSED;
>
>

  reply	other threads:[~2013-04-15 14:05 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-15 13:27 [PATCH net-next 1/2] net: sctp: remove sctp_ep_common struct member 'malloced' Daniel Borkmann
2013-04-15 13:27 ` [PATCH net-next 2/2] net: sctp: minor: make sctp_ep_common's member 'dead' a bool Daniel Borkmann
2013-04-15 14:05   ` Vlad Yasevich [this message]
2013-04-15 18:14   ` David Miller
2013-04-15 14:04 ` [PATCH net-next 1/2] net: sctp: remove sctp_ep_common struct member 'malloced' Vlad Yasevich
2013-04-15 18:14 ` David Miller

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=516C0921.1060703@gmail.com \
    --to=vyasevich@gmail.com \
    --cc=davem@davemloft.net \
    --cc=dborkman@redhat.com \
    --cc=linux-sctp@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).