Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 266118
b: refs/heads/master
c: 1c553bb
h: refs/heads/master
v: v3
  • Loading branch information
Paul Gortmaker committed Sep 18, 2011
1 parent b2a4463 commit a1205e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 149ce37c8de72c64fc4f66c1b4cf7a0fb66b7ee9
refs/heads/master: 1c553bb52eb4c58333a843c0a5888d2329909f62
5 changes: 3 additions & 2 deletions trunk/net/tipc/name_distr.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,21 +173,22 @@ void tipc_named_withdraw(struct publication *publ)
* tipc_named_node_up - tell specified node about all publications by this node
*/

void tipc_named_node_up(unsigned long node)
void tipc_named_node_up(unsigned long nodearg)
{
struct tipc_node *n_ptr;
struct link *l_ptr;
struct publication *publ;
struct distr_item *item = NULL;
struct sk_buff *buf = NULL;
u32 node = (u32)nodearg;
u32 left = 0;
u32 rest;
u32 max_item_buf = 0;

/* compute maximum amount of publication data to send per message */

read_lock_bh(&tipc_net_lock);
n_ptr = tipc_node_find((u32)node);
n_ptr = tipc_node_find(node);
if (n_ptr) {
tipc_node_lock(n_ptr);
l_ptr = n_ptr->active_links[0];
Expand Down

0 comments on commit a1205e6

Please sign in to comment.