mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-05 22:14:27 +00:00
tipc: improve destination linked list
We often see a need for a linked list of destination identities, sometimes containing a port number, sometimes a node identity, and sometimes both. The currently defined struct u32_list is not generic enough to cover all cases, so we extend it to contain two u32 integers and rename it to struct tipc_dest_list. Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Acked-by: Ying Xue <ying.xue@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f70d37b796
commit
a80ae5306a
4 changed files with 74 additions and 67 deletions
|
@ -258,20 +258,20 @@ static int tipc_bcast_xmit(struct net *net, struct sk_buff_head *pkts,
|
||||||
static int tipc_rcast_xmit(struct net *net, struct sk_buff_head *pkts,
|
static int tipc_rcast_xmit(struct net *net, struct sk_buff_head *pkts,
|
||||||
struct tipc_nlist *dests, u16 *cong_link_cnt)
|
struct tipc_nlist *dests, u16 *cong_link_cnt)
|
||||||
{
|
{
|
||||||
|
struct tipc_dest *dst, *tmp;
|
||||||
struct sk_buff_head _pkts;
|
struct sk_buff_head _pkts;
|
||||||
struct u32_item *n, *tmp;
|
u32 dnode, selector;
|
||||||
u32 dst, selector;
|
|
||||||
|
|
||||||
selector = msg_link_selector(buf_msg(skb_peek(pkts)));
|
selector = msg_link_selector(buf_msg(skb_peek(pkts)));
|
||||||
skb_queue_head_init(&_pkts);
|
skb_queue_head_init(&_pkts);
|
||||||
|
|
||||||
list_for_each_entry_safe(n, tmp, &dests->list, list) {
|
list_for_each_entry_safe(dst, tmp, &dests->list, list) {
|
||||||
dst = n->value;
|
dnode = dst->node;
|
||||||
if (!tipc_msg_pskb_copy(dst, pkts, &_pkts))
|
if (!tipc_msg_pskb_copy(dnode, pkts, &_pkts))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
/* Any other return value than -ELINKCONG is ignored */
|
/* Any other return value than -ELINKCONG is ignored */
|
||||||
if (tipc_node_xmit(net, &_pkts, dst, selector) == -ELINKCONG)
|
if (tipc_node_xmit(net, &_pkts, dnode, selector) == -ELINKCONG)
|
||||||
(*cong_link_cnt)++;
|
(*cong_link_cnt)++;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -554,7 +554,7 @@ void tipc_nlist_add(struct tipc_nlist *nl, u32 node)
|
||||||
{
|
{
|
||||||
if (node == nl->self)
|
if (node == nl->self)
|
||||||
nl->local = true;
|
nl->local = true;
|
||||||
else if (u32_push(&nl->list, node))
|
else if (tipc_dest_push(&nl->list, node, 0))
|
||||||
nl->remote++;
|
nl->remote++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -562,13 +562,13 @@ void tipc_nlist_del(struct tipc_nlist *nl, u32 node)
|
||||||
{
|
{
|
||||||
if (node == nl->self)
|
if (node == nl->self)
|
||||||
nl->local = false;
|
nl->local = false;
|
||||||
else if (u32_del(&nl->list, node))
|
else if (tipc_dest_del(&nl->list, node, 0))
|
||||||
nl->remote--;
|
nl->remote--;
|
||||||
}
|
}
|
||||||
|
|
||||||
void tipc_nlist_purge(struct tipc_nlist *nl)
|
void tipc_nlist_purge(struct tipc_nlist *nl)
|
||||||
{
|
{
|
||||||
u32_list_purge(&nl->list);
|
tipc_dest_list_purge(&nl->list);
|
||||||
nl->remote = 0;
|
nl->remote = 0;
|
||||||
nl->local = 0;
|
nl->local = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -634,7 +634,7 @@ int tipc_nametbl_mc_translate(struct net *net, u32 type, u32 lower, u32 upper,
|
||||||
info = sseq->info;
|
info = sseq->info;
|
||||||
list_for_each_entry(publ, &info->node_list, node_list) {
|
list_for_each_entry(publ, &info->node_list, node_list) {
|
||||||
if (publ->scope <= limit)
|
if (publ->scope <= limit)
|
||||||
u32_push(dports, publ->ref);
|
tipc_dest_push(dports, 0, publ->ref);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (info->cluster_list_size != info->node_list_size)
|
if (info->cluster_list_size != info->node_list_size)
|
||||||
|
@ -1057,78 +1057,79 @@ int tipc_nl_name_table_dump(struct sk_buff *skb, struct netlink_callback *cb)
|
||||||
return skb->len;
|
return skb->len;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool u32_find(struct list_head *l, u32 value)
|
struct tipc_dest *tipc_dest_find(struct list_head *l, u32 node, u32 port)
|
||||||
{
|
{
|
||||||
struct u32_item *item;
|
u64 value = (u64)node << 32 | port;
|
||||||
|
struct tipc_dest *dst;
|
||||||
|
|
||||||
list_for_each_entry(item, l, list) {
|
list_for_each_entry(dst, l, list) {
|
||||||
if (item->value == value)
|
if (dst->value != value)
|
||||||
return true;
|
continue;
|
||||||
|
return dst;
|
||||||
}
|
}
|
||||||
return false;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool u32_push(struct list_head *l, u32 value)
|
bool tipc_dest_push(struct list_head *l, u32 node, u32 port)
|
||||||
{
|
{
|
||||||
struct u32_item *item;
|
u64 value = (u64)node << 32 | port;
|
||||||
|
struct tipc_dest *dst;
|
||||||
|
|
||||||
list_for_each_entry(item, l, list) {
|
if (tipc_dest_find(l, node, port))
|
||||||
if (item->value == value)
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
item = kmalloc(sizeof(*item), GFP_ATOMIC);
|
|
||||||
if (unlikely(!item))
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
item->value = value;
|
dst = kmalloc(sizeof(*dst), GFP_ATOMIC);
|
||||||
list_add(&item->list, l);
|
if (unlikely(!dst))
|
||||||
|
return false;
|
||||||
|
dst->value = value;
|
||||||
|
list_add(&dst->list, l);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 u32_pop(struct list_head *l)
|
bool tipc_dest_pop(struct list_head *l, u32 *node, u32 *port)
|
||||||
{
|
{
|
||||||
struct u32_item *item;
|
struct tipc_dest *dst;
|
||||||
u32 value = 0;
|
|
||||||
|
|
||||||
if (list_empty(l))
|
if (list_empty(l))
|
||||||
return 0;
|
return false;
|
||||||
item = list_first_entry(l, typeof(*item), list);
|
dst = list_first_entry(l, typeof(*dst), list);
|
||||||
value = item->value;
|
if (port)
|
||||||
list_del(&item->list);
|
*port = dst->port;
|
||||||
kfree(item);
|
if (node)
|
||||||
return value;
|
*node = dst->node;
|
||||||
}
|
list_del(&dst->list);
|
||||||
|
kfree(dst);
|
||||||
bool u32_del(struct list_head *l, u32 value)
|
|
||||||
{
|
|
||||||
struct u32_item *item, *tmp;
|
|
||||||
|
|
||||||
list_for_each_entry_safe(item, tmp, l, list) {
|
|
||||||
if (item->value != value)
|
|
||||||
continue;
|
|
||||||
list_del(&item->list);
|
|
||||||
kfree(item);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool tipc_dest_del(struct list_head *l, u32 node, u32 port)
|
||||||
|
{
|
||||||
|
struct tipc_dest *dst;
|
||||||
|
|
||||||
|
dst = tipc_dest_find(l, node, port);
|
||||||
|
if (!dst)
|
||||||
return false;
|
return false;
|
||||||
|
list_del(&dst->list);
|
||||||
|
kfree(dst);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void u32_list_purge(struct list_head *l)
|
void tipc_dest_list_purge(struct list_head *l)
|
||||||
{
|
{
|
||||||
struct u32_item *item, *tmp;
|
struct tipc_dest *dst, *tmp;
|
||||||
|
|
||||||
list_for_each_entry_safe(item, tmp, l, list) {
|
list_for_each_entry_safe(dst, tmp, l, list) {
|
||||||
list_del(&item->list);
|
list_del(&dst->list);
|
||||||
kfree(item);
|
kfree(dst);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int u32_list_len(struct list_head *l)
|
int tipc_dest_list_len(struct list_head *l)
|
||||||
{
|
{
|
||||||
struct u32_item *item;
|
struct tipc_dest *dst;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
list_for_each_entry(item, l, list) {
|
list_for_each_entry(dst, l, list) {
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
return i;
|
return i;
|
||||||
|
|
|
@ -120,16 +120,22 @@ void tipc_nametbl_unsubscribe(struct tipc_subscription *s);
|
||||||
int tipc_nametbl_init(struct net *net);
|
int tipc_nametbl_init(struct net *net);
|
||||||
void tipc_nametbl_stop(struct net *net);
|
void tipc_nametbl_stop(struct net *net);
|
||||||
|
|
||||||
struct u32_item {
|
struct tipc_dest {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
u32 value;
|
union {
|
||||||
|
struct {
|
||||||
|
u32 port;
|
||||||
|
u32 node;
|
||||||
|
};
|
||||||
|
u64 value;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
bool u32_push(struct list_head *l, u32 value);
|
struct tipc_dest *tipc_dest_find(struct list_head *l, u32 node, u32 port);
|
||||||
u32 u32_pop(struct list_head *l);
|
bool tipc_dest_push(struct list_head *l, u32 node, u32 port);
|
||||||
bool u32_find(struct list_head *l, u32 value);
|
bool tipc_dest_pop(struct list_head *l, u32 *node, u32 *port);
|
||||||
bool u32_del(struct list_head *l, u32 value);
|
bool tipc_dest_del(struct list_head *l, u32 node, u32 port);
|
||||||
void u32_list_purge(struct list_head *l);
|
void tipc_dest_list_purge(struct list_head *l);
|
||||||
int u32_list_len(struct list_head *l);
|
int tipc_dest_list_len(struct list_head *l);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -565,7 +565,7 @@ static int tipc_release(struct socket *sock)
|
||||||
|
|
||||||
/* Reject any messages that accumulated in backlog queue */
|
/* Reject any messages that accumulated in backlog queue */
|
||||||
release_sock(sk);
|
release_sock(sk);
|
||||||
u32_list_purge(&tsk->cong_links);
|
tipc_dest_list_purge(&tsk->cong_links);
|
||||||
tsk->cong_link_cnt = 0;
|
tsk->cong_link_cnt = 0;
|
||||||
call_rcu(&tsk->rcu, tipc_sk_callback);
|
call_rcu(&tsk->rcu, tipc_sk_callback);
|
||||||
sock->sk = NULL;
|
sock->sk = NULL;
|
||||||
|
@ -826,8 +826,7 @@ void tipc_sk_mcast_rcv(struct net *net, struct sk_buff_head *arrvq,
|
||||||
tipc_nametbl_mc_translate(net,
|
tipc_nametbl_mc_translate(net,
|
||||||
msg_nametype(msg), msg_namelower(msg),
|
msg_nametype(msg), msg_namelower(msg),
|
||||||
msg_nameupper(msg), scope, &dports);
|
msg_nameupper(msg), scope, &dports);
|
||||||
portid = u32_pop(&dports);
|
while (tipc_dest_pop(&dports, NULL, &portid)) {
|
||||||
for (; portid; portid = u32_pop(&dports)) {
|
|
||||||
_skb = __pskb_copy(skb, hsz, GFP_ATOMIC);
|
_skb = __pskb_copy(skb, hsz, GFP_ATOMIC);
|
||||||
if (_skb) {
|
if (_skb) {
|
||||||
msg_set_destport(buf_msg(_skb), portid);
|
msg_set_destport(buf_msg(_skb), portid);
|
||||||
|
@ -1000,7 +999,8 @@ static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Block or return if destination link is congested */
|
/* Block or return if destination link is congested */
|
||||||
rc = tipc_wait_for_cond(sock, &timeout, !u32_find(clinks, dnode));
|
rc = tipc_wait_for_cond(sock, &timeout,
|
||||||
|
!tipc_dest_find(clinks, dnode, 0));
|
||||||
if (unlikely(rc))
|
if (unlikely(rc))
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
|
@ -1012,7 +1012,7 @@ static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
|
||||||
|
|
||||||
rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
|
rc = tipc_node_xmit(net, &pkts, dnode, tsk->portid);
|
||||||
if (unlikely(rc == -ELINKCONG)) {
|
if (unlikely(rc == -ELINKCONG)) {
|
||||||
u32_push(clinks, dnode);
|
tipc_dest_push(clinks, dnode, 0);
|
||||||
tsk->cong_link_cnt++;
|
tsk->cong_link_cnt++;
|
||||||
rc = 0;
|
rc = 0;
|
||||||
}
|
}
|
||||||
|
@ -1549,7 +1549,7 @@ static void tipc_sk_proto_rcv(struct sock *sk,
|
||||||
tipc_sk_conn_proto_rcv(tsk, skb, xmitq);
|
tipc_sk_conn_proto_rcv(tsk, skb, xmitq);
|
||||||
return;
|
return;
|
||||||
case SOCK_WAKEUP:
|
case SOCK_WAKEUP:
|
||||||
u32_del(&tsk->cong_links, msg_orignode(hdr));
|
tipc_dest_del(&tsk->cong_links, msg_orignode(hdr), 0);
|
||||||
tsk->cong_link_cnt--;
|
tsk->cong_link_cnt--;
|
||||||
sk->sk_write_space(sk);
|
sk->sk_write_space(sk);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue