The patch titled Subject: ima-platform-independent-hash-value-v3 has been added to the -mm tree. Its filename is ima-platform-independent-hash-value-v3.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/ima-platform-independent-hash-value-v3.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/ima-platform-independent-hash-value-v3.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andreas Steffen <andreas.steffen@xxxxxxxxxxxxxx> Subject: ima-platform-independent-hash-value-v3 Changelog: - Define canonical format as little endian (Mimi) Link: http://lkml.kernel.org/r/1473170584-15094-10-git-send-email-zohar@xxxxxxxxxxxxxxxxxx Signed-off-by: Andreas Steffen <andreas.steffen@xxxxxxxxxxxxxx> Signed-off-by: Mimi Zohar <zohar@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- security/integrity/ima/ima_crypto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN security/integrity/ima/ima_crypto.c~ima-platform-independent-hash-value-v3 security/integrity/ima/ima_crypto.c --- a/security/integrity/ima/ima_crypto.c~ima-platform-independent-hash-value-v3 +++ a/security/integrity/ima/ima_crypto.c @@ -477,8 +477,8 @@ static int ima_calc_field_array_hash_tfm u8 buffer[IMA_EVENT_NAME_LEN_MAX + 1] = { 0 }; u8 *data_to_hash = field_data[i].data; u32 datalen = field_data[i].len; - u32 datalen_to_hash = !ima_canonical_fmt ? datalen : - cpu_to_le32(datalen); + u32 datalen_to_hash = + !ima_canonical_fmt ? datalen : cpu_to_le32(datalen); if (strcmp(td->name, IMA_TEMPLATE_IMA_NAME) != 0) { rc = crypto_shash_update(shash, _ Patches currently in -mm which might be from andreas.steffen@xxxxxxxxxxxxxx are ima-platform-independent-hash-value.patch ima-platform-independent-hash-value-v3.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html