aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/port.h
diff options
context:
space:
mode:
authorAllan Stephens <Allan.Stephens@windriver.com>2011-01-25 13:33:31 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-02-23 18:05:21 -0500
commit741de3e9ff6e07e908e1cad2eb03e29677fde093 (patch)
treead9f1e65f6fe27d0d3662d56e819df995c8c8b63 /net/tipc/port.h
parent214dda4a36329fdd631e3aac0fee6e6fa369db62 (diff)
tipc: Remove support for per-connection message sequence numbering
Eliminates TIPC's prototype support for message sequence numbering on routable connections (i.e. connections requiring more than one hop). This capability isn't currently used, and can be removed since TIPC only supports systems in which all inter-node communication can be achieved in a single hop. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/port.h')
-rw-r--r--net/tipc/port.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/tipc/port.h b/net/tipc/port.h
index 34ccb7c11e71..87b9424ae0ec 100644
--- a/net/tipc/port.h
+++ b/net/tipc/port.h
@@ -119,7 +119,6 @@ struct user_port {
119 * @pub_count: total # of publications port has made during its lifetime 119 * @pub_count: total # of publications port has made during its lifetime
120 * @probing_state: 120 * @probing_state:
121 * @probing_interval: 121 * @probing_interval:
122 * @last_in_seqno:
123 * @timer_ref: 122 * @timer_ref:
124 * @subscription: "node down" subscription used to terminate failed connections 123 * @subscription: "node down" subscription used to terminate failed connections
125 */ 124 */
@@ -147,7 +146,6 @@ struct tipc_port {
147 u32 pub_count; 146 u32 pub_count;
148 u32 probing_state; 147 u32 probing_state;
149 u32 probing_interval; 148 u32 probing_interval;
150 u32 last_in_seqno;
151 struct timer_list timer; 149 struct timer_list timer;
152 struct tipc_node_subscr subscription; 150 struct tipc_node_subscr subscription;
153}; 151};