diff options
author | Ying Xue <ying.xue@windriver.com> | 2014-11-26 11:41:49 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-26 12:30:17 -0500 |
commit | 58311d169083f1940c7ce64cb6bf736e2a023cd0 (patch) | |
tree | 4a6381e83b0c30aba89b39d8b7a522d0ffa6028b /net/tipc/msg.h | |
parent | 47b4c9a82f2ed0c00aa1c20899b41f54d6f8a07a (diff) | |
download | linux-stable-58311d169083f1940c7ce64cb6bf736e2a023cd0.tar.gz linux-stable-58311d169083f1940c7ce64cb6bf736e2a023cd0.tar.bz2 linux-stable-58311d169083f1940c7ce64cb6bf736e2a023cd0.zip |
tipc: eliminate two pseudo message types of BUNDLE_OPEN and BUNDLE_CLOSED
The pseudo message types of BUNDLE_CLOSED as well as BUNDLE_OPEN are
used to flag whether or not more messages can be bundled into a data
packet in the outgoing transmission queue. Obviously, no more messages
can be appended after the packet has been sent and is waiting to be
acknowledged and deleted. These message types do in reality represent
a send-side local implementation flag, and are not defined as part of
the protocol. It is therefore safe to move it to to where it belongs,
that is, the control area (TIPC_SKB_CB) of the buffer.
Signed-off-by: Ying Xue <ying.xue@windriver.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/msg.h')
-rw-r--r-- | net/tipc/msg.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/tipc/msg.h b/net/tipc/msg.h index d7d2ba2afe6c..8ca874d6b4dc 100644 --- a/net/tipc/msg.h +++ b/net/tipc/msg.h @@ -464,11 +464,6 @@ static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m) #define FRAGMENT 1 #define LAST_FRAGMENT 2 -/* Bundling protocol message types - */ -#define BUNDLE_OPEN 0 -#define BUNDLE_CLOSED 1 - /* * Link management protocol message types */ |