tipc: let broadcast packet reception use new link receive function
[deliverable/linux.git] / net / tipc / msg.h
index fbf51fa1075d0f451d1b16ff0909320ad41edba0..55778a0aebf3706f2c559528f6a482c4077197bb 100644 (file)
@@ -601,6 +601,11 @@ static inline u32 msg_last_bcast(struct tipc_msg *m)
        return msg_bits(m, 4, 16, 0xffff);
 }
 
+static inline u32 msg_bc_snd_nxt(struct tipc_msg *m)
+{
+       return msg_last_bcast(m) + 1;
+}
+
 static inline void msg_set_last_bcast(struct tipc_msg *m, u32 n)
 {
        msg_set_bits(m, 4, 16, 0xffff, n);
This page took 0.028536 seconds and 5 git commands to generate.