break;
        }
        list_add_tail_rcu(&n->list, &temp_node->list);
+       trace_tipc_node_create(n, true, " ");
 exit:
        spin_unlock_bh(&tn->node_list_lock);
        return n;
 
 static void tipc_node_delete(struct tipc_node *node)
 {
+       trace_tipc_node_delete(node, true, " ");
        tipc_node_delete_from_list(node);
 
        del_timer_sync(&node->timer);
        int bearer_id;
        int rc = 0;
 
+       trace_tipc_node_timeout(n, false, " ");
        if (!node_is_up(n) && tipc_node_cleanup(n)) {
                /*Removing the reference of Timer*/
                tipc_node_put(n);
 
        pr_debug("Established link <%s> on network plane %c\n",
                 tipc_link_name(nl), tipc_link_plane(nl));
+       trace_tipc_node_link_up(n, true, " ");
 
        /* Ensure that a STATE message goes first */
        tipc_link_build_state_msg(nl, xmitq);
                /* Defuse pending tipc_node_link_up() */
                tipc_link_fsm_evt(l, LINK_RESET_EVT);
        }
+       trace_tipc_node_link_down(n, true, "node link down or deleted!");
        tipc_node_write_unlock(n);
        if (delete)
                tipc_mon_remove_peer(n->net, n->addr, old_bearer_id);
 
        pr_warn("Resetting all links to %x\n", n->addr);
 
+       trace_tipc_node_reset_links(n, true, " ");
        for (i = 0; i < MAX_BEARERS; i++) {
                tipc_node_link_down(n, i, false);
        }
                pr_err("Unknown node fsm state %x\n", state);
                break;
        }
+       trace_tipc_node_fsm(n->peer_id, n->state, state, evt);
        n->state = state;
        return;
 
 illegal_evt:
        pr_err("Illegal node fsm evt %x in state %x\n", evt, state);
+       trace_tipc_node_fsm(n->peer_id, n->state, state, evt);
 }
 
 static void node_lost_contact(struct tipc_node *n,
 
        pr_debug("Lost contact with %x\n", n->addr);
        n->delete_at = jiffies + msecs_to_jiffies(NODE_CLEANUP_AFTER);
+       trace_tipc_node_lost_contact(n, true, " ");
 
        /* Clean up broadcast state */
        tipc_bcast_remove_peer(n->net, n->bc_entry.link);
        struct tipc_media_addr *maddr;
        int pb_id;
 
+       if (trace_tipc_node_check_state_enabled()) {
+               trace_tipc_skb_dump(skb, false, "skb for node state check");
+               trace_tipc_node_check_state(n, true, " ");
+       }
        l = n->links[bearer_id].link;
        if (!l)
                return false;
                syncpt = oseqno + exp_pkts - 1;
                if (pl && tipc_link_is_up(pl)) {
                        __tipc_node_link_down(n, &pb_id, xmitq, &maddr);
+                       trace_tipc_node_link_down(n, true,
+                                                 "node link down <- failover!");
                        tipc_skb_queue_splice_tail_init(tipc_link_inputq(pl),
                                                        tipc_link_inputq(l));
                }
 
        TP_PROTO(struct tipc_node *n, bool more, const char *header), \
        TP_ARGS(n, more, header))
 DEFINE_NODE_EVENT(tipc_node_dump);
+DEFINE_NODE_EVENT(tipc_node_create);
+DEFINE_NODE_EVENT(tipc_node_delete);
+DEFINE_NODE_EVENT(tipc_node_lost_contact);
+DEFINE_NODE_EVENT(tipc_node_timeout);
+DEFINE_NODE_EVENT(tipc_node_link_up);
+DEFINE_NODE_EVENT(tipc_node_link_down);
+DEFINE_NODE_EVENT(tipc_node_reset_links);
+DEFINE_NODE_EVENT(tipc_node_check_state);
 
 DECLARE_EVENT_CLASS(tipc_fsm_class,
 
        TP_PROTO(const char *name, u32 os, u32 ns, int evt), \
        TP_ARGS(name, os, ns, evt))
 DEFINE_FSM_EVENT(tipc_link_fsm);
+DEFINE_FSM_EVENT(tipc_node_fsm);
 
 #endif /* _TIPC_TRACE_H */