Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 8a78756

Browse files
committed
kbuild: create object directories simpler and faster
For the out-of-tree build, scripts/Makefile.build creates output directories, but this operation is not efficient. scripts/Makefile.lib calculates obj-dirs as follows: obj-dirs := $(dir $(multi-objs) $(obj-y)) Please notice $(sort ...) is not used here. Usually the result is as many "./" as objects here. For a lot of duplicated paths, the following command is invoked. _dummy := $(foreach d,$(obj-dirs), $(shell [ -d $(d) ] || mkdir -p $(d))) Then, the costly shell command is run over and over again. I see many points for optimization: [1] Use $(sort ...) to cut down duplicated paths before passing them to system call [2] Use single $(shell ...) instead of repeating it with $(foreach ...) This will reduce forking. [3] We can calculate obj-dirs more simply. Most of objects are already accumulated in $(targets). So, $(dir $(targets)) is fine and more comprehensive. I also removed ugly code in arch/x86/entry/vdso/Makefile. This is now really unnecessary. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Ingo Molnar <mingo@kernel.org> Tested-by: Douglas Anderson <dianders@chromium.org>
1 parent 591f668 commit 8a78756

File tree

4 files changed

+6
-30
lines changed

4 files changed

+6
-30
lines changed

arch/x86/entry/vdso/Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ $(obj)/vdsox32.so.dbg: $(src)/vdsox32.lds $(vobjx32s) FORCE
129129
CPPFLAGS_vdso32.lds = $(CPPFLAGS_vdso.lds)
130130
VDSO_LDFLAGS_vdso32.lds = -m32 -Wl,-m,elf_i386 -Wl,-soname=linux-gate.so.1
131131

132-
# This makes sure the $(obj) subdirectory exists even though vdso32/
133-
# is not a kbuild sub-make subdirectory.
134-
override obj-dirs = $(dir $(obj)) $(obj)/vdso32/
135-
136132
targets += vdso32/vdso32.lds
137133
targets += vdso32/note.o vdso32/system_call.o vdso32/sigreturn.o
138134
targets += vdso32/vclock_gettime.o

scripts/Makefile.build

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,6 @@ ifneq ($(hostprogs-y)$(hostprogs-m)$(hostlibs-y)$(hostlibs-m)$(hostcxxlibs-y)$(h
6464
include scripts/Makefile.host
6565
endif
6666

67-
ifneq ($(KBUILD_SRC),)
68-
# Create output directory if not already present
69-
_dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
70-
71-
# Create directories for object files if directory does not exist
72-
# Needed when obj-y := dir/file.o syntax is used
73-
_dummy := $(foreach d,$(obj-dirs), $(shell [ -d $(d) ] || mkdir -p $(d)))
74-
endif
75-
7667
ifndef obj
7768
$(warning kbuild: Makefile.build is included improperly)
7869
endif
@@ -589,6 +580,12 @@ ifneq ($(cmd_files),)
589580
include $(cmd_files)
590581
endif
591582

583+
ifneq ($(KBUILD_SRC),)
584+
# Create directories for object files if they do not exist
585+
obj-dirs := $(sort $(obj) $(patsubst %/,%, $(dir $(targets))))
586+
$(shell mkdir -p $(obj-dirs))
587+
endif
588+
592589
# Declare the contents of the .PHONY variable as phony. We keep that
593590
# information in a variable se we can use it in if_changed and friends.
594591

scripts/Makefile.host

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,6 @@ host-cxxobjs := $(sort $(foreach m,$(host-cxxmulti),$($(m)-cxxobjs)))
4848
host-cshobjs := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs))))
4949
host-cxxshobjs := $(sort $(foreach m,$(host-cxxshlib),$($(m:.so=-objs))))
5050

51-
# output directory for programs/.o files
52-
# hostprogs-y := tools/build may have been specified.
53-
# Retrieve also directory of .o files from prog-objs or prog-cxxobjs notation
54-
host-objdirs := $(dir $(__hostprogs) $(host-cobjs) $(host-cxxobjs))
55-
56-
host-objdirs := $(strip $(sort $(filter-out ./,$(host-objdirs))))
57-
58-
59-
__hostprogs := $(addprefix $(obj)/,$(__hostprogs))
6051
host-csingle := $(addprefix $(obj)/,$(host-csingle))
6152
host-cmulti := $(addprefix $(obj)/,$(host-cmulti))
6253
host-cobjs := $(addprefix $(obj)/,$(host-cobjs))
@@ -66,9 +57,6 @@ host-cshlib := $(addprefix $(obj)/,$(host-cshlib))
6657
host-cxxshlib := $(addprefix $(obj)/,$(host-cxxshlib))
6758
host-cshobjs := $(addprefix $(obj)/,$(host-cshobjs))
6859
host-cxxshobjs := $(addprefix $(obj)/,$(host-cxxshobjs))
69-
host-objdirs := $(addprefix $(obj)/,$(host-objdirs))
70-
71-
obj-dirs += $(host-objdirs)
7260

7361
#####
7462
# Handle options to gcc. Support building with separate output directory

scripts/Makefile.lib

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,11 @@ single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
5050
# objects depend on those (obviously)
5151
multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
5252
multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
53-
multi-objs := $(multi-objs-y) $(multi-objs-m)
5453

5554
# $(subdir-obj-y) is the list of objects in $(obj-y) which uses dir/ to
5655
# tell kbuild to descend
5756
subdir-obj-y := $(filter %/built-in.o, $(obj-y))
5857

59-
# $(obj-dirs) is a list of directories that contain object files
60-
obj-dirs := $(dir $(multi-objs) $(obj-y))
61-
6258
# Replace multi-part objects by their individual parts, look at local dir only
6359
real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m))) $(extra-y)
6460
real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y)) $($(m:.o=-m))),$($(m:.o=-objs)) $($(m:.o=-y)) $($(m:.o=-m)),$(m)))
@@ -81,7 +77,6 @@ multi-used-m := $(addprefix $(obj)/,$(multi-used-m))
8177
multi-objs-y := $(addprefix $(obj)/,$(multi-objs-y))
8278
multi-objs-m := $(addprefix $(obj)/,$(multi-objs-m))
8379
subdir-ym := $(addprefix $(obj)/,$(subdir-ym))
84-
obj-dirs := $(addprefix $(obj)/,$(obj-dirs))
8580

8681
# These flags are needed for modversions and compiling, so we define them here
8782
# $(modname_flags) defines KBUILD_MODNAME as the name of the module it will

0 commit comments

Comments
 (0)