aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/bcast.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc/bcast.h')
-rw-r--r--net/tipc/bcast.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/tipc/bcast.h b/net/tipc/bcast.h
index 3c37fdb8a0a6..b009666c60b0 100644
--- a/net/tipc/bcast.h
+++ b/net/tipc/bcast.h
@@ -54,15 +54,15 @@ struct tipc_node_map {
54#define PLSIZE 32 54#define PLSIZE 32
55 55
56/** 56/**
57 * struct port_list - set of node local destination ports 57 * struct tipc_port_list - set of node local destination ports
58 * @count: # of ports in set (only valid for first entry in list) 58 * @count: # of ports in set (only valid for first entry in list)
59 * @next: pointer to next entry in list 59 * @next: pointer to next entry in list
60 * @ports: array of port references 60 * @ports: array of port references
61 */ 61 */
62 62
63struct port_list { 63struct tipc_port_list {
64 int count; 64 int count;
65 struct port_list *next; 65 struct tipc_port_list *next;
66 u32 ports[PLSIZE]; 66 u32 ports[PLSIZE];
67}; 67};
68 68
@@ -83,8 +83,8 @@ static inline int tipc_nmap_equal(struct tipc_node_map *nm_a, struct tipc_node_m
83 return !memcmp(nm_a, nm_b, sizeof(*nm_a)); 83 return !memcmp(nm_a, nm_b, sizeof(*nm_a));
84} 84}
85 85
86void tipc_port_list_add(struct port_list *pl_ptr, u32 port); 86void tipc_port_list_add(struct tipc_port_list *pl_ptr, u32 port);
87void tipc_port_list_free(struct port_list *pl_ptr); 87void tipc_port_list_free(struct tipc_port_list *pl_ptr);
88 88
89void tipc_bclink_init(void); 89void tipc_bclink_init(void);
90void tipc_bclink_stop(void); 90void tipc_bclink_stop(void);