aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/msg.h
diff options
context:
space:
mode:
authorAllan Stephens <Allan.Stephens@windriver.com>2011-02-27 14:43:52 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-03-13 16:35:17 -0400
commite7b3acb6a85266dfd3e102b3d15b51b0ecd6bc2e (patch)
treed5ed172cc553ae9c9be9f0033b0f0ebe6e68a63b /net/tipc/msg.h
parenttipc: manually inline net_start/stop, make assoc. vars static (diff)
downloadlinux-dev-e7b3acb6a85266dfd3e102b3d15b51b0ecd6bc2e.tar.xz
linux-dev-e7b3acb6a85266dfd3e102b3d15b51b0ecd6bc2e.zip
tipc: Eliminate timestamp from link protocol messages
Removes support for the timestamp field of TIPC's link protocol messages. This field was previously used to hold an OS-dependent timestamp value that was used to assist in debugging early versions of TIPC. The field has now been deemed unnecessary and has been removed from the latest TIPC specification. This change has no impact on the operation of TIPC since the field was set by TIPC, but never referenced. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to '')
-rw-r--r--net/tipc/msg.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/net/tipc/msg.h b/net/tipc/msg.h
index 9d643a1b7d22..6948d3dbab0b 100644
--- a/net/tipc/msg.h
+++ b/net/tipc/msg.h
@@ -438,16 +438,6 @@ static inline void msg_set_nametype(struct tipc_msg *m, u32 n)
msg_set_word(m, 8, n);
}
-static inline void msg_set_timestamp(struct tipc_msg *m, u32 n)
-{
- msg_set_word(m, 8, n);
-}
-
-static inline u32 msg_timestamp(struct tipc_msg *m)
-{
- return msg_word(m, 8);
-}
-
static inline u32 msg_nameinst(struct tipc_msg *m)
{
return msg_word(m, 9);