~ubuntu-branches/ubuntu/trusty/linux-linaro-omap/trusty

« back to all changes in this revision

Viewing changes to fs/ocfs2/ocfs2_trace.h

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-57i0gl3v99b3lkfg
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
688
688
                  __entry->blkno, __entry->bit)
689
689
);
690
690
 
 
691
TRACE_EVENT(ocfs2_trim_extent,
 
692
        TP_PROTO(struct super_block *sb, unsigned long long blk,
 
693
                 unsigned long long count),
 
694
        TP_ARGS(sb, blk, count),
 
695
        TP_STRUCT__entry(
 
696
                __field(int, dev_major)
 
697
                __field(int, dev_minor)
 
698
                __field(unsigned long long, blk)
 
699
                __field(__u64,  count)
 
700
        ),
 
701
        TP_fast_assign(
 
702
                __entry->dev_major = MAJOR(sb->s_dev);
 
703
                __entry->dev_minor = MINOR(sb->s_dev);
 
704
                __entry->blk = blk;
 
705
                __entry->count = count;
 
706
        ),
 
707
        TP_printk("%d %d %llu %llu",
 
708
                  __entry->dev_major, __entry->dev_minor,
 
709
                  __entry->blk, __entry->count)
 
710
);
 
711
 
 
712
DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_trim_group);
 
713
 
 
714
DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_trim_fs);
 
715
 
691
716
/* End of trace events for fs/ocfs2/alloc.c. */
692
717
 
693
718
/* Trace events for fs/ocfs2/localalloc.c. */