diff options
author | Kirill Tkhai <[email protected]> | 2018-10-26 15:02:38 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2018-10-26 16:25:18 -0700 |
commit | 1f6904f72937d1867a5d62b124231069d7e71ca9 (patch) | |
tree | a30a41fb1743c27fbb5dcbac844b870195090df0 | |
parent | 0c96350a2d2f64fe777b444c995f6bb633c5d069 (diff) |
scripts/tags.sh: add DECLARE_HASHTABLE()
In addition to DEFINE_HASHTABLE() add DECLARE_ variant.
Link: http://lkml.kernel.org/r/153683203215.13678.11468076350083405643.stgit@localhost.localdomain
Signed-off-by: Kirill Tkhai <[email protected]>
Reviewed-by: Andrew Morton <[email protected]>
Cc: Masahiro Yamada <[email protected]>
Cc: Constantine Shulyupin <[email protected]>
Cc: Arend van Spriel <[email protected]>
Cc: Daniel Borkmann <[email protected]>
Cc: Joey Pabalinas <[email protected]>
Cc: Matthew Wilcox <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rwxr-xr-x | scripts/tags.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tags.sh b/scripts/tags.sh index 26de7d5aa5c8..4fa070f9231a 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh @@ -203,7 +203,7 @@ regex_c=( '/\<DECLARE_\(TASKLET\|WORK\|DELAYED_WORK\)(\([[:alnum:]_]*\)/\2/v/' '/\(^\s\)OFFSET(\([[:alnum:]_]*\)/\2/v/' '/\(^\s\)DEFINE(\([[:alnum:]_]*\)/\2/v/' - '/\<DEFINE_HASHTABLE(\([[:alnum:]_]*\)/\1/v/' + '/\<\(DEFINE\|DECLARE\)_HASHTABLE(\([[:alnum:]_]*\)/\2/v/' ) regex_kconfig=( '/^[[:blank:]]*\(menu\|\)config[[:blank:]]\+\([[:alnum:]_]\+\)/\2/' |