Message ID | 1498069110-10009-6-git-send-email-zohar@linux.vnet.ibm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, Jun 21, 2017 at 02:18:25PM -0400, Mimi Zohar wrote: > Define an ->integrity_read file operation method to read data for > integrity hash collection. should be folded into patch 2. -- To unsubscribe from this list: send the line "unsubscribe linux-security-module" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, 2017-06-28 at 16:38 +0200, Christoph Hellwig wrote: > On Wed, Jun 21, 2017 at 02:18:25PM -0400, Mimi Zohar wrote: > > Define an ->integrity_read file operation method to read data for > > integrity hash collection. > > should be folded into patch 2. I was hoping to get some Acks/sign-off's from the individual filesystem maintainers before squashing them. The next version will be squashed. Mimi -- To unsubscribe from this list: send the line "unsubscribe linux-security-module" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/mm/shmem.c b/mm/shmem.c index e67d6ba4e98e..16958b20946f 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -3846,6 +3846,7 @@ static const struct file_operations shmem_file_operations = { .splice_read = generic_file_splice_read, .splice_write = iter_file_splice_write, .fallocate = shmem_fallocate, + .integrity_read = shmem_file_read_iter, #endif };
Define an ->integrity_read file operation method to read data for integrity hash collection. Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com> --- mm/shmem.c | 1 + 1 file changed, 1 insertion(+)