BTRFS_QGROUP_OPER_SUB_SUBTREE is missing from the list of operation types that will be displayed in a trace. Fix this.
Signed-off-by: Chandan Rajendra <[email protected]> --- include/trace/events/btrfs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/trace/events/btrfs.h b/include/trace/events/btrfs.h index 1faecea..7a51ec3 100644 --- a/include/trace/events/btrfs.h +++ b/include/trace/events/btrfs.h @@ -1122,7 +1122,8 @@ DEFINE_EVENT(btrfs__workqueue_done, btrfs_workqueue_destroy, { BTRFS_QGROUP_OPER_ADD_EXCL, "OPER_ADD_EXCL" }, \ { BTRFS_QGROUP_OPER_ADD_SHARED, "OPER_ADD_SHARED" }, \ { BTRFS_QGROUP_OPER_SUB_EXCL, "OPER_SUB_EXCL" }, \ - { BTRFS_QGROUP_OPER_SUB_SHARED, "OPER_SUB_SHARED" }) + { BTRFS_QGROUP_OPER_SUB_SHARED, "OPER_SUB_SHARED" }, \ + { BTRFS_QGROUP_OPER_SUB_SUBTREE,"OPER_SUB_SUBTREE" }) DECLARE_EVENT_CLASS(btrfs_qgroup_oper, -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
