aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/port.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 20:33:30 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 21:53:29 -0500
commit4584310b4a787c9b70e5507a8b5288ba32b0a909 (patch)
treed3322226efb9610bfdbaf6304266e0bd46adba63 /net/tipc/port.c
parent358a0d1c9edcf6ff041776d65cdc2bc59887ab9c (diff)
tipc: rename struct port_list to struct tipc_port_list
Make this rename so that it is consistent with the majority of the other tipc structs and to assist in removing any ambiguity with other similar names in other subsystems. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/port.c')
-rw-r--r--net/tipc/port.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tipc/port.c b/net/tipc/port.c
index 54d812a5a4d9..d91efc69e6f9 100644
--- a/net/tipc/port.c
+++ b/net/tipc/port.c
@@ -80,7 +80,7 @@ int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
80 struct tipc_msg *hdr; 80 struct tipc_msg *hdr;
81 struct sk_buff *buf; 81 struct sk_buff *buf;
82 struct sk_buff *ibuf = NULL; 82 struct sk_buff *ibuf = NULL;
83 struct port_list dports = {0, NULL, }; 83 struct tipc_port_list dports = {0, NULL, };
84 struct tipc_port *oport = tipc_port_deref(ref); 84 struct tipc_port *oport = tipc_port_deref(ref);
85 int ext_targets; 85 int ext_targets;
86 int res; 86 int res;
@@ -142,11 +142,11 @@ int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
142 * If there is no port list, perform a lookup to create one 142 * If there is no port list, perform a lookup to create one
143 */ 143 */
144 144
145void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp) 145void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp)
146{ 146{
147 struct tipc_msg *msg; 147 struct tipc_msg *msg;
148 struct port_list dports = {0, NULL, }; 148 struct tipc_port_list dports = {0, NULL, };
149 struct port_list *item = dp; 149 struct tipc_port_list *item = dp;
150 int cnt = 0; 150 int cnt = 0;
151 151
152 msg = buf_msg(buf); 152 msg = buf_msg(buf);