tipc: eliminate two pseudo message types of BUNDLE_OPEN and BUNDLE_CLOSED
authorYing Xue <ying.xue@windriver.com>
Wed, 26 Nov 2014 03:41:49 +0000 (11:41 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 26 Nov 2014 17:30:17 +0000 (12:30 -0500)
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>
net/tipc/core.h
net/tipc/link.c
net/tipc/msg.c
net/tipc/msg.h

index b578b10feefa8f0d1a3374cc94aaed0e3629b58c..84602137ce20f1fe051d7c3ebd2a8fafa10c2b43 100644 (file)
@@ -192,6 +192,7 @@ struct tipc_skb_cb {
        struct sk_buff *tail;
        bool deferred;
        bool wakeup_pending;
+       bool bundling;
        u16 chain_sz;
        u16 chain_imp;
 };
index 470f05383d432a48b3438b2854fad6828aad7b26..8eb885eb14336dbc55e10b91c5f38d1e1986003a 100644 (file)
@@ -875,7 +875,7 @@ void tipc_link_push_packets(struct tipc_link *l_ptr)
                        msg_set_ack(msg, mod(l_ptr->next_in_no - 1));
                        msg_set_bcast_ack(msg, l_ptr->owner->bclink.last_in);
                        if (msg_user(msg) == MSG_BUNDLER)
-                               msg_set_type(msg, BUNDLE_CLOSED);
+                               TIPC_SKB_CB(skb)->bundling = false;
                        tipc_bearer_send(l_ptr->bearer_id, skb,
                                         &l_ptr->media_addr);
                        l_ptr->next_out = skb->next;
index 9155496b8a8a29e9fe0e2ab5225fb55f8f254b0e..94db39217248acfa60e558aecdbeff8e780bb9df 100644 (file)
@@ -289,7 +289,7 @@ bool tipc_msg_bundle(struct sk_buff *bbuf, struct sk_buff *buf, u32 mtu)
                return false;
        if (likely(msg_user(bmsg) != MSG_BUNDLER))
                return false;
-       if (likely(msg_type(bmsg) != BUNDLE_OPEN))
+       if (likely(!TIPC_SKB_CB(bbuf)->bundling))
                return false;
        if (unlikely(skb_tailroom(bbuf) < (pad + msz)))
                return false;
@@ -336,11 +336,12 @@ bool tipc_msg_make_bundle(struct sk_buff **buf, u32 mtu, u32 dnode)
 
        skb_trim(bbuf, INT_H_SIZE);
        bmsg = buf_msg(bbuf);
-       tipc_msg_init(bmsg, MSG_BUNDLER, BUNDLE_OPEN, INT_H_SIZE, dnode);
+       tipc_msg_init(bmsg, MSG_BUNDLER, 0, INT_H_SIZE, dnode);
        msg_set_seqno(bmsg, msg_seqno(msg));
        msg_set_ack(bmsg, msg_ack(msg));
        msg_set_bcast_ack(bmsg, msg_bcast_ack(msg));
        bbuf->next = (*buf)->next;
+       TIPC_SKB_CB(bbuf)->bundling = true;
        tipc_msg_bundle(bbuf, *buf, mtu);
        *buf = bbuf;
        return true;
index d7d2ba2afe6c246050c33e71ae2dd05b50ef137b..8ca874d6b4dc9127670d91cd7d6d0f4b51ea89dc 100644 (file)
@@ -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
  */