@@ -996,21 +996,25 @@ void tipc_link_reset(struct tipc_link *l)
996
996
int tipc_link_xmit (struct tipc_link * l , struct sk_buff_head * list ,
997
997
struct sk_buff_head * xmitq )
998
998
{
999
- struct tipc_msg * hdr = buf_msg (skb_peek (list ));
1000
999
struct sk_buff_head * backlogq = & l -> backlogq ;
1001
1000
struct sk_buff_head * transmq = & l -> transmq ;
1002
1001
struct sk_buff * skb , * _skb ;
1003
1002
u16 bc_ack = l -> bc_rcvlink -> rcv_nxt - 1 ;
1004
1003
u16 ack = l -> rcv_nxt - 1 ;
1005
1004
u16 seqno = l -> snd_nxt ;
1006
1005
int pkt_cnt = skb_queue_len (list );
1007
- int imp = msg_importance (hdr );
1008
1006
unsigned int mss = tipc_link_mss (l );
1009
1007
unsigned int cwin = l -> window ;
1010
1008
unsigned int mtu = l -> mtu ;
1009
+ struct tipc_msg * hdr ;
1011
1010
bool new_bundle ;
1012
1011
int rc = 0 ;
1012
+ int imp ;
1013
+
1014
+ if (pkt_cnt <= 0 )
1015
+ return 0 ;
1013
1016
1017
+ hdr = buf_msg (skb_peek (list ));
1014
1018
if (unlikely (msg_size (hdr ) > mtu )) {
1015
1019
pr_warn ("Too large msg, purging xmit list %d %d %d %d %d!\n" ,
1016
1020
skb_queue_len (list ), msg_user (hdr ),
@@ -1019,6 +1023,7 @@ int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
1019
1023
return - EMSGSIZE ;
1020
1024
}
1021
1025
1026
+ imp = msg_importance (hdr );
1022
1027
/* Allow oversubscription of one data msg per source at congestion */
1023
1028
if (unlikely (l -> backlog [imp ].len >= l -> backlog [imp ].limit )) {
1024
1029
if (imp == TIPC_SYSTEM_IMPORTANCE ) {
0 commit comments