diff options
author | Brian Behlendorf <[email protected]> | 2011-02-10 16:16:52 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-02-10 16:29:00 -0800 |
commit | 777d4af89137907adc91377327505f40c296035d (patch) | |
tree | 08dd869e748991b1a82b95c7044acc004d6dc6ad /etc/Makefile.in | |
parent | 1b94c25ceb12649b4b2ffb9a016e4f51cfa91736 (diff) |
Linux 2.6.35 compat, const struct xattr_handler
The const keyword was added to the 'struct xattr_handler' in the
generic Linux super_block structure. To handle this we define an
appropriate xattr_handler_t typedef which can be used. This was
the preferred solution because it keeps the code clean and readable.
Diffstat (limited to 'etc/Makefile.in')
-rw-r--r-- | etc/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/Makefile.in b/etc/Makefile.in index 4d3939461..b9f7f3685 100644 --- a/etc/Makefile.in +++ b/etc/Makefile.in @@ -59,6 +59,7 @@ am__aclocal_m4_deps = \ $(top_srcdir)/config/kernel-open-bdev-exclusive.m4 \ $(top_srcdir)/config/kernel-rq-for-each_segment.m4 \ $(top_srcdir)/config/kernel-rq-is_sync.m4 \ + $(top_srcdir)/config/kernel-xattr-handler.m4 \ $(top_srcdir)/config/kernel.m4 \ $(top_srcdir)/config/user-arch.m4 \ $(top_srcdir)/config/user-frame-larger-than.m4 \ |