aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/basic/fixdep.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-01-11 22:05:45 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-01-18 09:37:39 +0900
commit87b95a81357dd6ec679a786cebfe34d0e797f752 (patch)
tree4ff8959f557331f671428f59bc7a19e544be8708 /scripts/basic/fixdep.c
parentfixdep: move global variables to local variables of main() (diff)
downloadlinux-dev-87b95a81357dd6ec679a786cebfe34d0e797f752.tar.xz
linux-dev-87b95a81357dd6ec679a786cebfe34d0e797f752.zip
fixdep: refactor parse_dep_file()
parse_dep_file() has too much indentation, and puts the code far to the right. This commit refactors the code and reduces the one level of indentation. strrcmp() computes 'slen' by itself, but the caller already knows the length of the token, so 'slen' can be passed via function argument. With this, we can swap the order of strrcmp() and "*p = \0;" Also, strrcmp() is an ambiguous function name. Flip the logic and rename it to str_ends_with(). I added a new helper is_ignored_file() - this returns 1 if the token represents a file that should be ignored. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to '')
-rw-r--r--scripts/basic/fixdep.c80
1 files changed, 40 insertions, 40 deletions
diff --git a/scripts/basic/fixdep.c b/scripts/basic/fixdep.c
index d33b5a4c9ecb..0abc15778f56 100644
--- a/scripts/basic/fixdep.c
+++ b/scripts/basic/fixdep.c
@@ -239,15 +239,14 @@ static void parse_config_file(const char *p)
}
/* test if s ends in sub */
-static int strrcmp(const char *s, const char *sub)
+static int str_ends_with(const char *s, int slen, const char *sub)
{
- int slen = strlen(s);
int sublen = strlen(sub);
if (sublen > slen)
- return 1;
+ return 0;
- return memcmp(s + slen - sublen, sub, sublen);
+ return !memcmp(s + slen - sublen, sub, sublen);
}
static void *read_file(const char *filename)
@@ -282,6 +281,16 @@ static void *read_file(const char *filename)
return buf;
}
+/* Ignore certain dependencies */
+static int is_ignored_file(const char *s, int len)
+{
+ return str_ends_with(s, len, "include/generated/autoconf.h") ||
+ str_ends_with(s, len, "include/generated/autoksyms.h") ||
+ str_ends_with(s, len, "arch/um/include/uml-config.h") ||
+ str_ends_with(s, len, "include/linux/kconfig.h") ||
+ str_ends_with(s, len, ".ver");
+}
+
/*
* Important: The below generated source_foo.o and deps_foo.o variable
* assignments are parsed not only by make, but also by the rather simple
@@ -314,47 +323,38 @@ static void parse_dep_file(char *m, const char *target, int insert_extra_deps)
if (is_target) {
/* The /next/ file is the first dependency */
is_first_dep = 1;
- } else {
+ } else if (!is_ignored_file(m, p - m)) {
*p = '\0';
- /* Ignore certain dependencies */
- if (strrcmp(m, "include/generated/autoconf.h") &&
- strrcmp(m, "include/generated/autoksyms.h") &&
- strrcmp(m, "arch/um/include/uml-config.h") &&
- strrcmp(m, "include/linux/kconfig.h") &&
- strrcmp(m, ".ver")) {
+ /*
+ * Do not list the source file as dependency, so that
+ * kbuild is not confused if a .c file is rewritten
+ * into .S or vice versa. Storing it in source_* is
+ * needed for modpost to compute srcversions.
+ */
+ if (is_first_dep) {
/*
- * Do not list the source file as dependency,
- * so that kbuild is not confused if a .c file
- * is rewritten into .S or vice versa. Storing
- * it in source_* is needed for modpost to
- * compute srcversions.
+ * If processing the concatenation of multiple
+ * dependency files, only process the first
+ * target name, which will be the original
+ * source name, and ignore any other target
+ * names, which will be intermediate temporary
+ * files.
*/
- if (is_first_dep) {
- /*
- * If processing the concatenation of
- * multiple dependency files, only
- * process the first target name, which
- * will be the original source name,
- * and ignore any other target names,
- * which will be intermediate temporary
- * files.
- */
- if (!saw_any_target) {
- saw_any_target = 1;
- printf("source_%s := %s\n\n",
- target, m);
- printf("deps_%s := \\\n",
- target);
- }
- is_first_dep = 0;
- } else
- printf(" %s \\\n", m);
-
- buf = read_file(m);
- parse_config_file(buf);
- free(buf);
+ if (!saw_any_target) {
+ saw_any_target = 1;
+ printf("source_%s := %s\n\n",
+ target, m);
+ printf("deps_%s := \\\n", target);
+ }
+ is_first_dep = 0;
+ } else {
+ printf(" %s \\\n", m);
}
+
+ buf = read_file(m);
+ parse_config_file(buf);
+ free(buf);
}
if (is_last)