diff options
author | Christoph Hellwig <hch@lst.de> | 2017-05-10 09:06:33 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-06-05 10:59:12 -0400 |
commit | 85787090a21eb749d8b347eaf9ff1a455637473c (patch) | |
tree | 25f85517eb05e430352aff20e571fb604ec6abd1 /include/linux/cleancache.h | |
parent | 787d8c530af73257240fc0c0f60e296a83d5e5f4 (diff) |
fs: switch ->s_uuid to uuid_t
For some file systems we still memcpy into it, but in various places this
already allows us to use the proper uuid helpers. More to come..
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Acked-by: Mimi Zohar <zohar@linux.vnet.ibm.com> (Changes to IMA/EVM)
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'include/linux/cleancache.h')
-rw-r--r-- | include/linux/cleancache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cleancache.h b/include/linux/cleancache.h index fccf7f44139d..bbb3712dd892 100644 --- a/include/linux/cleancache.h +++ b/include/linux/cleancache.h | |||
@@ -27,7 +27,7 @@ struct cleancache_filekey { | |||
27 | 27 | ||
28 | struct cleancache_ops { | 28 | struct cleancache_ops { |
29 | int (*init_fs)(size_t); | 29 | int (*init_fs)(size_t); |
30 | int (*init_shared_fs)(char *uuid, size_t); | 30 | int (*init_shared_fs)(uuid_t *uuid, size_t); |
31 | int (*get_page)(int, struct cleancache_filekey, | 31 | int (*get_page)(int, struct cleancache_filekey, |
32 | pgoff_t, struct page *); | 32 | pgoff_t, struct page *); |
33 | void (*put_page)(int, struct cleancache_filekey, | 33 | void (*put_page)(int, struct cleancache_filekey, |