The patch titled Subject: .gitattributes: set git diff driver for C source code files has been removed from the -mm tree. Its filename was set-git-diff-driver-for-c-source-code-files.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Jean Delvare <jdelvare@xxxxxxx> Subject: .gitattributes: set git diff driver for C source code files Git can be told to apply language-specific rules when generating diffs. Enable this for C source code files (*.c and *.h) so that function names are printed right. Specifically, doing so prevents "git diff" from mistakenly considering unindented goto labels as function names. Link: http://lkml.kernel.org/r/20160907143403.1449324f@endymion Signed-off-by: Jean Delvare <jdelvare@xxxxxxx> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) diff -puN /dev/null .gitattributes --- /dev/null +++ a/.gitattributes @@ -0,0 +1,2 @@ +*.c diff=cpp +*.h diff=cpp _ Patches currently in -mm which might be from jdelvare@xxxxxxx are -- 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