summaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2012-03-13 15:41:04 -0400
committerTheodore Ts'o <tytso@mit.edu>2012-03-13 15:41:04 -0400
commit24bcc89c7e7c64982e6192b4952a0a92379fc341 (patch)
tree0661b6c83fa9bb681f3aa32264323ce96c264958 /include/trace
parent31d4f3a2f3c73f279ff96a7135d7202ef6833f12 (diff)
downloadlinux-3.10-24bcc89c7e7c64982e6192b4952a0a92379fc341.tar.gz
linux-3.10-24bcc89c7e7c64982e6192b4952a0a92379fc341.tar.bz2
linux-3.10-24bcc89c7e7c64982e6192b4952a0a92379fc341.zip
jbd2: split updating of journal superblock and marking journal empty
There are three case of updating journal superblock. In the first case, we want to mark journal as empty (setting s_sequence to 0), in the second case we want to update log tail, in the third case we want to update s_errno. Split these cases into separate functions. It makes the code slightly more straightforward and later patches will make the distinction even more important. Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/jbd2.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/trace/events/jbd2.h b/include/trace/events/jbd2.h
index ae59bc207d7..e05a362bf3f 100644
--- a/include/trace/events/jbd2.h
+++ b/include/trace/events/jbd2.h
@@ -236,25 +236,21 @@ TRACE_EVENT(jbd2_cleanup_journal_tail,
__entry->block_nr, __entry->freed)
);
-TRACE_EVENT(jbd2_update_superblock_end,
+TRACE_EVENT(jbd2_write_superblock,
- TP_PROTO(journal_t *journal, int wait),
+ TP_PROTO(journal_t *journal),
- TP_ARGS(journal, wait),
+ TP_ARGS(journal),
TP_STRUCT__entry(
__field( dev_t, dev )
- __field( int, wait )
),
TP_fast_assign(
__entry->dev = journal->j_fs_dev->bd_dev;
- __entry->wait = wait;
),
- TP_printk("dev %d,%d wait %d",
- MAJOR(__entry->dev), MINOR(__entry->dev),
- __entry->wait)
+ TP_printk("dev %d,%d", MAJOR(__entry->dev), MINOR(__entry->dev))
);
#endif /* _TRACE_JBD2_H */