author | Marc Dionne
<marc.c.dionne@gmail.com> 2009-12-01 14:09:24 UTC |
committer | Linus Torvalds
<torvalds@linux-foundation.org> 2009-12-01 15:35:11 UTC |
parent | fa1dae4906982b5d896c07613b1fe42456133b1c |
fs/cachefiles/rdwr.c | +2 | -0 |
diff --git a/fs/cachefiles/rdwr.c b/fs/cachefiles/rdwr.c index 1d833256386..a6c8c6fe8df 100644 --- a/fs/cachefiles/rdwr.c +++ b/fs/cachefiles/rdwr.c @@ -11,6 +11,7 @@ #include <linux/mount.h> #include <linux/file.h> +#include <linux/ima.h> #include "internal.h" /* @@ -922,6 +923,7 @@ int cachefiles_write_page(struct fscache_storage *op, struct page *page) if (IS_ERR(file)) { ret = PTR_ERR(file); } else { + ima_counts_get(file); ret = -EIO; if (file->f_op->write) { pos = (loff_t) page->index << PAGE_SHIFT;