diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2014-02-06 19:47:47 +0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2014-02-06 19:47:47 +0400 |
commit | 774016b2d455017935b3e318b6cc4e055e9dd47f (patch) | |
tree | 5f2881c744990f7581f8aea9985079d532475812 /include | |
parent | b2c8b3ea871e478ac144f617d015d3aa55fc3aa8 (diff) | |
download | linux-774016b2d455017935b3e318b6cc4e055e9dd47f.tar.xz |
GFS2: journal data writepages update
GFS2 has carried what is more or less a copy of the
write_cache_pages() for some time. It seems that this
copy has slipped behind the core code over time. This
patch brings it back uptodate, and in addition adds the
tracepoint which would otherwise be missing.
We could go further, and eliminate some or all of the
code duplication here. The issue is that if we do that,
then the function we need to split out from the existing
write_cache_pages(), which will look a lot like
gfs2_jdata_write_pagevec(), would land up putting quite a
lot of extra variables on the stack. I know that has been
a problem in the past in the writeback code path, which
is why I've hesitated to do it here.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/trace/events/writeback.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/trace/events/writeback.h b/include/trace/events/writeback.h index c7bbbe794e65..309a086e2a0b 100644 --- a/include/trace/events/writeback.h +++ b/include/trace/events/writeback.h @@ -4,6 +4,7 @@ #if !defined(_TRACE_WRITEBACK_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_WRITEBACK_H +#include <linux/tracepoint.h> #include <linux/backing-dev.h> #include <linux/writeback.h> |