Commit ce470b44 authored by Petr Machata's avatar Petr Machata Committed by David S. Miller

mlxsw: spectrum: Drop struct span_entry.used

The member ref_count already determines whether a given SPAN entry is
used, and is as easy to use as a dedicated boolean.
Signed-off-by: default avatarPetr Machata <petrm@mellanox.com>
Signed-off-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 306a934e
...@@ -534,7 +534,7 @@ mlxsw_sp_span_entry_create(struct mlxsw_sp_port *port) ...@@ -534,7 +534,7 @@ mlxsw_sp_span_entry_create(struct mlxsw_sp_port *port)
/* find a free entry to use */ /* find a free entry to use */
index = -1; index = -1;
for (i = 0; i < mlxsw_sp->span.entries_count; i++) { for (i = 0; i < mlxsw_sp->span.entries_count; i++) {
if (!mlxsw_sp->span.entries[i].used) { if (!mlxsw_sp->span.entries[i].ref_count) {
index = i; index = i;
span_entry = &mlxsw_sp->span.entries[i]; span_entry = &mlxsw_sp->span.entries[i];
break; break;
...@@ -549,7 +549,6 @@ mlxsw_sp_span_entry_create(struct mlxsw_sp_port *port) ...@@ -549,7 +549,6 @@ mlxsw_sp_span_entry_create(struct mlxsw_sp_port *port)
if (err) if (err)
return NULL; return NULL;
span_entry->used = true;
span_entry->id = index; span_entry->id = index;
span_entry->ref_count = 1; span_entry->ref_count = 1;
span_entry->local_port = local_port; span_entry->local_port = local_port;
...@@ -565,7 +564,6 @@ static void mlxsw_sp_span_entry_destroy(struct mlxsw_sp *mlxsw_sp, ...@@ -565,7 +564,6 @@ static void mlxsw_sp_span_entry_destroy(struct mlxsw_sp *mlxsw_sp,
mlxsw_reg_mpat_pack(mpat_pl, pa_id, local_port, false); mlxsw_reg_mpat_pack(mpat_pl, pa_id, local_port, false);
mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(mpat), mpat_pl); mlxsw_reg_write(mlxsw_sp->core, MLXSW_REG(mpat), mpat_pl);
span_entry->used = false;
} }
struct mlxsw_sp_span_entry * struct mlxsw_sp_span_entry *
...@@ -576,7 +574,7 @@ mlxsw_sp_span_entry_find(struct mlxsw_sp *mlxsw_sp, u8 local_port) ...@@ -576,7 +574,7 @@ mlxsw_sp_span_entry_find(struct mlxsw_sp *mlxsw_sp, u8 local_port)
for (i = 0; i < mlxsw_sp->span.entries_count; i++) { for (i = 0; i < mlxsw_sp->span.entries_count; i++) {
struct mlxsw_sp_span_entry *curr = &mlxsw_sp->span.entries[i]; struct mlxsw_sp_span_entry *curr = &mlxsw_sp->span.entries[i];
if (curr->used && curr->local_port == local_port) if (curr->ref_count && curr->local_port == local_port)
return curr; return curr;
} }
return NULL; return NULL;
......
...@@ -124,7 +124,6 @@ struct mlxsw_sp_span_inspected_port { ...@@ -124,7 +124,6 @@ struct mlxsw_sp_span_inspected_port {
struct mlxsw_sp_span_entry { struct mlxsw_sp_span_entry {
u8 local_port; u8 local_port;
bool used;
struct list_head bound_ports_list; struct list_head bound_ports_list;
int ref_count; int ref_count;
int id; int id;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment