diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-04-14 23:27:18 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-15 14:11:37 -0400 |
commit | 0022d2dd4d76e0e7d5c241c343a5016fdfa2ad4f (patch) | |
tree | 2446c167fb2a7ebf354e3758948d803971d6b4bb /net/sctp | |
parent | ff2266cddd69f5e0c9d5121ed9218d2f694406cc (diff) |
net: sctp: minor: make sctp_ep_common's member 'dead' a bool
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/associola.c | 4 | ||||
-rw-r--r-- | net/sctp/endpointola.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index b893aa6862f4..423549a714e5 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 | |||
104 | 104 | ||
105 | /* Initialize the object handling fields. */ | 105 | /* Initialize the object handling fields. */ |
106 | atomic_set(&asoc->base.refcnt, 1); | 106 | atomic_set(&asoc->base.refcnt, 1); |
107 | asoc->base.dead = 0; | 107 | asoc->base.dead = false; |
108 | 108 | ||
109 | /* Initialize the bind addr area. */ | 109 | /* Initialize the bind addr area. */ |
110 | sctp_bind_addr_init(&asoc->base.bind_addr, ep->base.bind_addr.port); | 110 | 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) | |||
407 | /* Mark as dead, so other users can know this structure is | 407 | /* Mark as dead, so other users can know this structure is |
408 | * going away. | 408 | * going away. |
409 | */ | 409 | */ |
410 | asoc->base.dead = 1; | 410 | asoc->base.dead = true; |
411 | 411 | ||
412 | /* Dispose of any data lying around in the outqueue. */ | 412 | /* Dispose of any data lying around in the outqueue. */ |
413 | sctp_outq_free(&asoc->outqueue); | 413 | sctp_outq_free(&asoc->outqueue); |
diff --git a/net/sctp/endpointola.c b/net/sctp/endpointola.c index 46bbfc266efc..5fbd7bc6bb11 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, | |||
121 | 121 | ||
122 | /* Initialize the basic object fields. */ | 122 | /* Initialize the basic object fields. */ |
123 | atomic_set(&ep->base.refcnt, 1); | 123 | atomic_set(&ep->base.refcnt, 1); |
124 | ep->base.dead = 0; | 124 | ep->base.dead = false; |
125 | 125 | ||
126 | /* Create an input queue. */ | 126 | /* Create an input queue. */ |
127 | sctp_inq_init(&ep->base.inqueue); | 127 | sctp_inq_init(&ep->base.inqueue); |
@@ -233,7 +233,7 @@ void sctp_endpoint_add_asoc(struct sctp_endpoint *ep, | |||
233 | */ | 233 | */ |
234 | void sctp_endpoint_free(struct sctp_endpoint *ep) | 234 | void sctp_endpoint_free(struct sctp_endpoint *ep) |
235 | { | 235 | { |
236 | ep->base.dead = 1; | 236 | ep->base.dead = true; |
237 | 237 | ||
238 | ep->base.sk->sk_state = SCTP_SS_CLOSED; | 238 | ep->base.sk->sk_state = SCTP_SS_CLOSED; |
239 | 239 | ||