mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
tipc: cleanup unused function
tipc_dest_list_len() is not being called anywhere. Clean it up. Acked-by: Jon Maloy <jmaloy@redhat.com> Signed-off-by: Hoang Le <hoang.h.le@dektech.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
46e31db55d
commit
4875d94c69
2 changed files with 0 additions and 12 deletions
|
@ -1202,14 +1202,3 @@ void tipc_dest_list_purge(struct list_head *l)
|
|||
kfree(dst);
|
||||
}
|
||||
}
|
||||
|
||||
int tipc_dest_list_len(struct list_head *l)
|
||||
{
|
||||
struct tipc_dest *dst;
|
||||
int i = 0;
|
||||
|
||||
list_for_each_entry(dst, l, list) {
|
||||
i++;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
|
|
@ -151,6 +151,5 @@ bool tipc_dest_push(struct list_head *l, u32 node, u32 port);
|
|||
bool tipc_dest_pop(struct list_head *l, u32 *node, u32 *port);
|
||||
bool tipc_dest_del(struct list_head *l, u32 node, u32 port);
|
||||
void tipc_dest_list_purge(struct list_head *l);
|
||||
int tipc_dest_list_len(struct list_head *l);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue