The patch titled Subject: scripts/tags.sh: include compat_sys_* symbols in the generated tags has been added to the -mm tree. Its filename is scripts-tagssh-include-compat_sys_-symbols-in-the-generated-tags.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-tagssh-include-compat_sys_-symbols-in-the-generated-tags.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-tagssh-include-compat_sys_-symbols-in-the-generated-tags.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: Catalin Marinas <catalin.marinas@xxxxxxx> Subject: scripts/tags.sh: include compat_sys_* symbols in the generated tags Since the kernel now has a COMPAT_SYSCALL infrastructure via commit 468366138850f ("COMPAT_SYSCALL_DEFINE: infrastructure"), add the corresponding regex for generating compat_sys_* symbols in the tags files (similar to sys_*). Signed-off-by: Catalin Marinas <catalin.marinas@xxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/tags.sh | 2 ++ 1 file changed, 2 insertions(+) diff -puN scripts/tags.sh~scripts-tagssh-include-compat_sys_-symbols-in-the-generated-tags scripts/tags.sh --- a/scripts/tags.sh~scripts-tagssh-include-compat_sys_-symbols-in-the-generated-tags +++ a/scripts/tags.sh @@ -168,6 +168,7 @@ exuberant() --extra=+f --c-kinds=+px \ --regex-asm='/^(ENTRY|_GLOBAL)\(([^)]*)\).*/\2/' \ --regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' \ + --regex-c='/^COMPAT_SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/compat_sys_\1/' \ --regex-c++='/^TRACE_EVENT\(([^,)]*).*/trace_\1/' \ --regex-c++='/^DEFINE_EVENT\([^,)]*, *([^,)]*).*/trace_\1/' \ --regex-c++='/PAGEFLAG\(([^,)]*).*/Page\1/' \ @@ -231,6 +232,7 @@ emacs() all_target_sources | xargs $1 -a \ --regex='/^\(ENTRY\|_GLOBAL\)(\([^)]*\)).*/\2/' \ --regex='/^SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/sys_\1/' \ + --regex='/^COMPAT_SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/compat_sys_\1/' \ --regex='/^TRACE_EVENT(\([^,)]*\).*/trace_\1/' \ --regex='/^DEFINE_EVENT([^,)]*, *\([^,)]*\).*/trace_\1/' \ --regex='/PAGEFLAG(\([^,)]*\).*/Page\1/' \ _ Patches currently in -mm which might be from catalin.marinas@xxxxxxx are mm-page_alloc-fix-cma-area-initialisation-when-pageblock-max_order.patch scripts-tagssh-include-compat_sys_-symbols-in-the-generated-tags.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