The patch titled UDF: fix function name from udf_crc16 to udf_crc has been added to the -mm tree. Its filename is udf-fix-function-name-from-udf_crc16-to-udf_crc.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: UDF: fix function name from udf_crc16 to udf_crc From: Cyrill Gorcunov <gorcunov@xxxxxxxxx> We have to change udf_crc16() name to udf_crc() to be able to play with CRC test. Signed-off-by: Cyrill Gorcunov <gorcunov@xxxxxxxxx> Cc: Jan Kara <jack@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/udf/crc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN fs/udf/crc.c~udf-fix-function-name-from-udf_crc16-to-udf_crc fs/udf/crc.c --- a/fs/udf/crc.c~udf-fix-function-name-from-udf_crc16-to-udf_crc +++ a/fs/udf/crc.c @@ -106,8 +106,8 @@ int main(void) { unsigned short x; - x = udf_crc16(bytes, sizeof bytes); - printf("udf_crc16: calculated = %4.4x, correct = %4.4x\n", x, 0x3299U); + x = udf_crc(bytes, sizeof bytes); + printf("udf_crc: calculated = %4.4x, correct = %4.4x\n", x, 0x3299U); return 0; } _ Patches currently in -mm which might be from gorcunov@xxxxxxxxx are udf-check-for-allocated-memory-for-data-of-new-inodes.patch udf-check-for-allocated-memory-for-data-of-new-inodes-fix.patch udf-check-for-allocated-memory-for-inode-data-v2.patch udf-coding-style-conversion-lindent.patch udf-coding-style-conversion-lindent-fixups.patch udf-coding-style-conversion-lindent-fixups-2.patch udf-fix-function-name-from-udf_crc16-to-udf_crc.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