Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 279133
b: refs/heads/master
c: 4584310
h: refs/heads/master
i:
  279131: 0af269f
v: v3
  • Loading branch information
Paul Gortmaker committed Dec 30, 2011
1 parent fa9d14a commit 3261f03
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 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: 358a0d1c9edcf6ff041776d65cdc2bc59887ab9c
refs/heads/master: 4584310b4a787c9b70e5507a8b5288ba32b0a909
10 changes: 5 additions & 5 deletions trunk/net/tipc/bcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -893,9 +893,9 @@ static void tipc_nmap_diff(struct tipc_node_map *nm_a,
* tipc_port_list_add - add a port to a port list, ensuring no duplicates
*/

void tipc_port_list_add(struct port_list *pl_ptr, u32 port)
void tipc_port_list_add(struct tipc_port_list *pl_ptr, u32 port)
{
struct port_list *item = pl_ptr;
struct tipc_port_list *item = pl_ptr;
int i;
int item_sz = PLSIZE;
int cnt = pl_ptr->count;
Expand Down Expand Up @@ -927,10 +927,10 @@ void tipc_port_list_add(struct port_list *pl_ptr, u32 port)
*
*/

void tipc_port_list_free(struct port_list *pl_ptr)
void tipc_port_list_free(struct tipc_port_list *pl_ptr)
{
struct port_list *item;
struct port_list *next;
struct tipc_port_list *item;
struct tipc_port_list *next;

for (item = pl_ptr->next; item; item = next) {
next = item->next;
Expand Down
10 changes: 5 additions & 5 deletions trunk/net/tipc/bcast.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ struct tipc_node_map {
#define PLSIZE 32

/**
* struct port_list - set of node local destination ports
* struct tipc_port_list - set of node local destination ports
* @count: # of ports in set (only valid for first entry in list)
* @next: pointer to next entry in list
* @ports: array of port references
*/

struct port_list {
struct tipc_port_list {
int count;
struct port_list *next;
struct tipc_port_list *next;
u32 ports[PLSIZE];
};

Expand All @@ -83,8 +83,8 @@ static inline int tipc_nmap_equal(struct tipc_node_map *nm_a, struct tipc_node_m
return !memcmp(nm_a, nm_b, sizeof(*nm_a));
}

void tipc_port_list_add(struct port_list *pl_ptr, u32 port);
void tipc_port_list_free(struct port_list *pl_ptr);
void tipc_port_list_add(struct tipc_port_list *pl_ptr, u32 port);
void tipc_port_list_free(struct tipc_port_list *pl_ptr);

void tipc_bclink_init(void);
void tipc_bclink_stop(void);
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/tipc/name_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ u32 tipc_nametbl_translate(u32 type, u32 instance, u32 *destnode)
*/

int tipc_nametbl_mc_translate(u32 type, u32 lower, u32 upper, u32 limit,
struct port_list *dports)
struct tipc_port_list *dports)
{
struct name_seq *seq;
struct sub_seq *sseq;
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/tipc/name_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include "node_subscr.h"

struct subscription;
struct port_list;
struct tipc_port_list;

/*
* TIPC name types reserved for internal TIPC use (both current and planned)
Expand Down Expand Up @@ -90,7 +90,7 @@ extern rwlock_t tipc_nametbl_lock;
struct sk_buff *tipc_nametbl_get(const void *req_tlv_area, int req_tlv_space);
u32 tipc_nametbl_translate(u32 type, u32 instance, u32 *node);
int tipc_nametbl_mc_translate(u32 type, u32 lower, u32 upper, u32 limit,
struct port_list *dports);
struct tipc_port_list *dports);
int tipc_nametbl_publish_rsv(u32 ref, unsigned int scope,
struct tipc_name_seq const *seq);
struct publication *tipc_nametbl_publish(u32 type, u32 lower, u32 upper,
Expand Down
8 changes: 4 additions & 4 deletions trunk/net/tipc/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
struct tipc_msg *hdr;
struct sk_buff *buf;
struct sk_buff *ibuf = NULL;
struct port_list dports = {0, NULL, };
struct tipc_port_list dports = {0, NULL, };
struct tipc_port *oport = tipc_port_deref(ref);
int ext_targets;
int res;
Expand Down Expand Up @@ -142,11 +142,11 @@ int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
* If there is no port list, perform a lookup to create one
*/

void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp)
void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp)
{
struct tipc_msg *msg;
struct port_list dports = {0, NULL, };
struct port_list *item = dp;
struct tipc_port_list dports = {0, NULL, };
struct tipc_port_list *item = dp;
int cnt = 0;

msg = buf_msg(buf);
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/tipc/port.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ struct tipc_port {
};

extern spinlock_t tipc_port_list_lock;
struct port_list;
struct tipc_port_list;

/*
* TIPC port manipulation routines
Expand Down Expand Up @@ -228,7 +228,7 @@ int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
unsigned int total_len, int err);
struct sk_buff *tipc_port_get_ports(void);
void tipc_port_recv_proto_msg(struct sk_buff *buf);
void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp);
void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp);
void tipc_port_reinit(void);

/**
Expand Down

0 comments on commit 3261f03

Please sign in to comment.