TP_STRUCT__entry(
                __field(        int,            root                    )
-               __field(        int,            id                      )
                __field(        int,            level                   )
+               __field(        u64,            id                      )
                __string(       path,           path                    )
        ),
 
                __assign_str(path, path);
        ),
 
-       TP_printk("root=%d id=%d level=%d path=%s",
+       TP_printk("root=%d id=%llu level=%d path=%s",
                  __entry->root, __entry->id, __entry->level, __get_str(path))
 );
 
 
        TP_STRUCT__entry(
                __field(        int,            dst_root                )
-               __field(        int,            dst_id                  )
                __field(        int,            dst_level               )
+               __field(        u64,            dst_id                  )
                __field(        int,            pid                     )
                __string(       dst_path,       path                    )
                __string(       comm,           task->comm              )
                __assign_str(comm, task->comm);
        ),
 
-       TP_printk("dst_root=%d dst_id=%d dst_level=%d dst_path=%s pid=%d comm=%s",
+       TP_printk("dst_root=%d dst_id=%llu dst_level=%d dst_path=%s pid=%d comm=%s",
                  __entry->dst_root, __entry->dst_id, __entry->dst_level,
                  __get_str(dst_path), __entry->pid, __get_str(comm))
 );
 
        TP_STRUCT__entry(
                __field(        int,            root                    )
-               __field(        int,            id                      )
                __field(        int,            level                   )
+               __field(        u64,            id                      )
                __string(       path,           path                    )
                __field(        int,            val                     )
        ),
                __entry->val = val;
        ),
 
-       TP_printk("root=%d id=%d level=%d path=%s val=%d",
+       TP_printk("root=%d id=%llu level=%d path=%s val=%d",
                  __entry->root, __entry->id, __entry->level, __get_str(path),
                  __entry->val)
 );