tipc: remove active flag from tipc_bearer structure
After the allocation of tipc_bearer structure instance is converted
from statical way to dynamical way, we identify whether a certain
tipc_bearer structure pointer is valid by checking whether the pointer
is NULL or not. So the active flag in tipc_bearer structure becomes
redundant.
Signed-off-by: Ying Xue <ying.xue@windriver.com>
Reviewed-by: Erik Hugne <erik.hugne@ericsson.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/net/tipc/bearer.c b/net/tipc/bearer.c
index 7ff98ef..826b701 100644
--- a/net/tipc/bearer.c
+++ b/net/tipc/bearer.c
@@ -179,7 +179,7 @@
for (i = 0; i < MAX_BEARERS; i++) {
b_ptr = bearer_list[i];
- if (b_ptr && b_ptr->active && (!strcmp(b_ptr->name, name)))
+ if (b_ptr && (!strcmp(b_ptr->name, name)))
return b_ptr;
}
return NULL;
@@ -204,7 +204,7 @@
b = bearer_list[j];
if (!b)
continue;
- if (b->active && (b->media == media_info_array[i])) {
+ if (b->media == media_info_array[i]) {
tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
b->name,
strlen(b->name) + 1);
@@ -288,7 +288,7 @@
with_this_prio = 1;
for (i = MAX_BEARERS; i-- != 0; ) {
b_ptr = bearer_list[i];
- if (!b_ptr || !b_ptr->active) {
+ if (!b_ptr) {
bearer_id = i;
continue;
}
@@ -333,7 +333,6 @@
b_ptr->tolerance = m_ptr->tolerance;
b_ptr->window = m_ptr->window;
b_ptr->net_plane = bearer_id + 'A';
- b_ptr->active = 1;
b_ptr->priority = priority;
res = tipc_disc_create(b_ptr, &b_ptr->bcast_addr, disc_domain);
@@ -628,7 +627,7 @@
for (i = 0; i < MAX_BEARERS; i++) {
b_ptr = bearer_list[i];
- if (b_ptr && b_ptr->active) {
+ if (b_ptr) {
bearer_disable(b_ptr, true);
bearer_list[i] = NULL;
}