The patch titled Subject: scripts-tagssh-collect-compiled-source-precisely-v2 has been added to the -mm tree. Its filename is scripts-tagssh-collect-compiled-source-precisely-v2.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-tagssh-collect-compiled-source-precisely-v2.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-tagssh-collect-compiled-source-precisely-v2.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Jialu Xu <xujialu@xxxxxxxxx> Subject: scripts-tagssh-collect-compiled-source-precisely-v2 don't expand symlinks by add option -s for realpath Link: http://lkml.kernel.org/r/5efc5bfb.1c69fb81.41bf5.7131SMTPIN_ADDED_MISSING@xxxxxxxxxxxxx Signed-off-by: Jialu Xu <xujialu@xxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Cc: Masahiro Yamada <masahiroy@xxxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab+huawei@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/tags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/tags.sh~scripts-tagssh-collect-compiled-source-precisely-v2 +++ a/scripts/tags.sh @@ -91,7 +91,7 @@ all_sources() all_compiled_sources() { - realpath -e $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) \ + realpath -es $([ -z "$KBUILD_ABS_SRCTREE" ] && echo --relative-to=.) \ include/generated/autoconf.h $(find -name "*.cmd" -exec \ grep -Poh '(?(?=^source_.* \K).*|(?=^ \K\S).*(?= \\))' {} \+ | awk '!a[$0]++') | sort -u _ Patches currently in -mm which might be from xujialu@xxxxxxxxx are scripts-tagssh-collect-compiled-source-precisely.patch scripts-tagssh-collect-compiled-source-precisely-v2.patch