From: Liu Bo Date: Wed, 6 Nov 2013 04:04:14 +0000 (+0800) Subject: Btrfs/tracepoint: update new flags for ordered extent TP X-Git-Tag: v3.14-rc2~3^2~128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=792ddef04014d83cc5a8c4d1387c0417789b36fa;p=profile%2Fcommon%2Fkernel-common.git Btrfs/tracepoint: update new flags for ordered extent TP Flag BTRFS_ORDERED_TRUNCATED is a new one, update the tracepoint to support it. Signed-off-by: Liu Bo Signed-off-by: Josef Bacik Signed-off-by: Chris Mason --- diff --git a/include/trace/events/btrfs.h b/include/trace/events/btrfs.h index e98a108..3176cdc 100644 --- a/include/trace/events/btrfs.h +++ b/include/trace/events/btrfs.h @@ -218,7 +218,8 @@ TRACE_EVENT_CONDITION(btrfs_get_extent, { (1 << BTRFS_ORDERED_DIRECT), "DIRECT" }, \ { (1 << BTRFS_ORDERED_IOERR), "IOERR" }, \ { (1 << BTRFS_ORDERED_UPDATED_ISIZE), "UPDATED_ISIZE" }, \ - { (1 << BTRFS_ORDERED_LOGGED_CSUM), "LOGGED_CSUM" }) + { (1 << BTRFS_ORDERED_LOGGED_CSUM), "LOGGED_CSUM" }, \ + { (1 << BTRFS_ORDERED_TRUNCATED), "TRUNCATED" }) DECLARE_EVENT_CLASS(btrfs__ordered_extent,